File tree Expand file tree Collapse file tree 6 files changed +25
-4
lines changed Expand file tree Collapse file tree 6 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1+ 2025-10-29 Version: 6.0.2
2+ - Update API GetSwitchRegionDetail: add response parameters Body.Data.NeedNotice.
3+ - Update API GrantSwitchAgreement: add request parameters IsConfirmed.
4+
5+
162025-10-28 Version: 6.0.1
27- Update API DescribeCheckWarningDetail: add request parameters ContainerName.
38
Original file line number Diff line number Diff line change @@ -84058,6 +84058,10 @@ public GrantSwitchAgreementResponse GrantSwitchAgreementWithOptions(GrantSwitchA
8405884058 {
8405984059 query["IsAgree"] = request.IsAgree;
8406084060 }
84061+ if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.IsConfirmed))
84062+ {
84063+ query["IsConfirmed"] = request.IsConfirmed;
84064+ }
8406184065 if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.IsImmediate))
8406284066 {
8406384067 query["IsImmediate"] = request.IsImmediate;
@@ -84112,6 +84116,10 @@ public async Task<GrantSwitchAgreementResponse> GrantSwitchAgreementWithOptionsA
8411284116 {
8411384117 query["IsAgree"] = request.IsAgree;
8411484118 }
84119+ if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.IsConfirmed))
84120+ {
84121+ query["IsConfirmed"] = request.IsConfirmed;
84122+ }
8411584123 if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.IsImmediate))
8411684124 {
8411784125 query["IsImmediate"] = request.IsImmediate;
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ public class GetSwitchRegionDetailResponseBodyData : TeaModel {
5656 [ Validation ( Required = false ) ]
5757 public string IsNoticed { get ; set ; }
5858
59+ [ NameInMap ( "NeedNotice" ) ]
60+ [ Validation ( Required = false ) ]
61+ public bool ? NeedNotice { get ; set ; }
62+
5963 [ NameInMap ( "NeedSwitch" ) ]
6064 [ Validation ( Required = false ) ]
6165 public bool ? NeedSwitch { get ; set ; }
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ public class GrantSwitchAgreementRequest : TeaModel {
1919 [ Validation ( Required = false ) ]
2020 public bool ? IsAgree { get ; set ; }
2121
22+ [ NameInMap ( "IsConfirmed" ) ]
23+ [ Validation ( Required = false ) ]
24+ public bool ? IsConfirmed { get ; set ; }
25+
2226 [ NameInMap ( "IsImmediate" ) ]
2327 [ Validation ( Required = false ) ]
2428 public bool ? IsImmediate { get ; set ; }
Original file line number Diff line number Diff line change 2020[ assembly: ComVisible ( false ) ]
2121
2222// The following GUID is for the ID of the typelib if this project is exposed to COM
23- [ assembly: Guid ( "d757bd10-b420 -11f0-ac6b-a54d37f7bb4e " ) ]
23+ [ assembly: Guid ( "285e6ff0-b4ea -11f0-be6d-a9131e06b71a " ) ]
2424
2525// Version information for an assembly consists of the following four values:
2626//
2929// Build Number
3030// Revision
3131//
32- [ assembly: AssemblyVersion ( "6.0.0 .0" ) ]
33- [ assembly: AssemblyFileVersion ( "6.0.1 .0" ) ]
32+ [ assembly: AssemblyVersion ( "6.0.1 .0" ) ]
33+ [ assembly: AssemblyFileVersion ( "6.0.2 .0" ) ]
Original file line number Diff line number Diff line change 77 <GeneratePackageOnBuild >false</GeneratePackageOnBuild >
88 <GenerateAssemblyInfo >false</GenerateAssemblyInfo >
99 <AssemblyName >AlibabaCloud.SDK.Sas20181203</AssemblyName >
10- <Version >6.0.1 </Version >
10+ <Version >6.0.2 </Version >
1111 <LangVersion >5</LangVersion >
1212 <Authors >Alibaba Cloud</Authors >
1313 <Description >Alibaba Cloud Threat Detection (20181203) SDK Library for .NET</Description >
You can’t perform that action at this time.
0 commit comments