@alicloud/alidns20150109 3.4.8 → 3.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/client.ts CHANGED
@@ -711,7 +711,7 @@ export class DescribeBatchResultDetailResponseBodyBatchResultDetailsBatchResultD
711
711
  type?: string;
712
712
  /**
713
713
  * @remarks
714
- * The record value.
714
+ * The value of the DNS record.
715
715
  *
716
716
  * @example
717
717
  * 192.0.2.0
@@ -2989,6 +2989,32 @@ export class DescribeCustomLineResponseBodyIpSegmentList extends $dara.Model {
2989
2989
  }
2990
2990
  }
2991
2991
 
2992
+ export class DescribeCustomLinesResponseBodyCustomLinesIpSegmentList extends $dara.Model {
2993
+ endIp?: string;
2994
+ startIp?: string;
2995
+ static names(): { [key: string]: string } {
2996
+ return {
2997
+ endIp: 'EndIp',
2998
+ startIp: 'StartIp',
2999
+ };
3000
+ }
3001
+
3002
+ static types(): { [key: string]: any } {
3003
+ return {
3004
+ endIp: 'string',
3005
+ startIp: 'string',
3006
+ };
3007
+ }
3008
+
3009
+ validate() {
3010
+ super.validate();
3011
+ }
3012
+
3013
+ constructor(map?: { [key: string]: any }) {
3014
+ super(map);
3015
+ }
3016
+ }
3017
+
2992
3018
  export class DescribeCustomLinesResponseBodyCustomLines extends $dara.Model {
2993
3019
  /**
2994
3020
  * @remarks
@@ -3006,6 +3032,7 @@ export class DescribeCustomLinesResponseBodyCustomLines extends $dara.Model {
3006
3032
  * 597
3007
3033
  */
3008
3034
  id?: number;
3035
+ ipSegmentList?: DescribeCustomLinesResponseBodyCustomLinesIpSegmentList[];
3009
3036
  /**
3010
3037
  * @remarks
3011
3038
  * The name of the custom line.
@@ -3018,6 +3045,7 @@ export class DescribeCustomLinesResponseBodyCustomLines extends $dara.Model {
3018
3045
  return {
3019
3046
  code: 'Code',
3020
3047
  id: 'Id',
3048
+ ipSegmentList: 'IpSegmentList',
3021
3049
  name: 'Name',
3022
3050
  };
3023
3051
  }
@@ -3026,11 +3054,15 @@ export class DescribeCustomLinesResponseBodyCustomLines extends $dara.Model {
3026
3054
  return {
3027
3055
  code: 'string',
3028
3056
  id: 'number',
3057
+ ipSegmentList: { 'type': 'array', 'itemType': DescribeCustomLinesResponseBodyCustomLinesIpSegmentList },
3029
3058
  name: 'string',
3030
3059
  };
3031
3060
  }
3032
3061
 
3033
3062
  validate() {
3063
+ if(Array.isArray(this.ipSegmentList)) {
3064
+ $dara.Model.validateArray(this.ipSegmentList);
3065
+ }
3034
3066
  super.validate();
3035
3067
  }
3036
3068
 
@@ -3132,7 +3164,7 @@ export class DescribeDNSSLBSubDomainsResponseBodySlbSubDomainsSlbSubDomain exten
3132
3164
  recordCount?: number;
3133
3165
  /**
3134
3166
  * @remarks
3135
- * The subdomain name.
3167
+ * The name of the subdomain.
3136
3168
  *
3137
3169
  * @example
3138
3170
  * www.example.com
@@ -10518,15 +10550,33 @@ export class DescribeInternetDnsLogsResponseBodyLogsLogValue extends $dara.Model
10518
10550
 
10519
10551
  export class DescribeInternetDnsLogsResponseBodyLogsLog extends $dara.Model {
10520
10552
  /**
10553
+ * @remarks
10554
+ * Parse log ID (can be duplicated).
10555
+ *
10521
10556
  * @example
10522
10557
  * 3583
10523
10558
  */
10524
10559
  dnsMsgId?: string;
10525
10560
  /**
10561
+ * @remarks
10562
+ * Parse timestamp.
10563
+ *
10526
10564
  * @example
10527
10565
  * 1709196249000
10528
10566
  */
10529
10567
  logTime?: number;
10568
+ /**
10569
+ * @remarks
10570
+ * The protocol type of the domain name resolution query request:
10571
+ * - UDP
10572
+ * - TCP
10573
+ * - HTTP
10574
+ * - HTTPS
10575
+ * - DOH
10576
+ *
10577
+ * @example
10578
+ * UDP
10579
+ */
10530
10580
  protocol?: string;
10531
10581
  /**
10532
10582
  * @remarks
@@ -10537,35 +10587,57 @@ export class DescribeInternetDnsLogsResponseBodyLogsLog extends $dara.Model {
10537
10587
  */
10538
10588
  queryName?: string;
10539
10589
  /**
10590
+ * @remarks
10591
+ * Record type.
10592
+ *
10540
10593
  * @example
10541
10594
  * A
10542
10595
  */
10543
10596
  queryType?: string;
10544
10597
  /**
10598
+ * @remarks
10599
+ * Parse response time.
10600
+ *
10545
10601
  * @example
10546
10602
  * 0
10547
10603
  */
10548
10604
  rt?: number;
10549
10605
  /**
10606
+ * @remarks
10607
+ * Parse server IP.
10608
+ *
10550
10609
  * @example
10551
10610
  * 140.205.XX.XX
10552
10611
  */
10553
10612
  serverIp?: string;
10554
10613
  /**
10614
+ * @remarks
10615
+ * Source IP address.
10616
+ *
10555
10617
  * @example
10556
10618
  * 59.82.XX.XX
10557
10619
  */
10558
10620
  sourceIp?: string;
10559
10621
  /**
10622
+ * @remarks
10623
+ * Response status.
10624
+ *
10560
10625
  * @example
10561
10626
  * NOERROR
10562
10627
  */
10563
10628
  status?: string;
10564
10629
  /**
10630
+ * @remarks
10631
+ * The value set for the edns-client-subnet option.
10632
+ *
10565
10633
  * @example
10566
10634
  * 170.33.XX.XX
10567
10635
  */
10568
10636
  subnetIp?: string;
10637
+ /**
10638
+ * @remarks
10639
+ * Array of parsing results.
10640
+ */
10569
10641
  value?: DescribeInternetDnsLogsResponseBodyLogsLogValue;
10570
10642
  /**
10571
10643
  * @remarks
@@ -11560,12 +11632,40 @@ export class DescribePdnsUdpIpSegmentsResponseBodyIpSegments extends $dara.Model
11560
11632
  }
11561
11633
 
11562
11634
  export class DescribePdnsUserInfoResponseBodyUserInfo extends $dara.Model {
11635
+ /**
11636
+ * @example
11637
+ * SECURE
11638
+ */
11563
11639
  availableAccessSecurityType?: string;
11640
+ /**
11641
+ * @example
11642
+ * HTTP,HTTPS
11643
+ */
11564
11644
  availableService?: string;
11645
+ /**
11646
+ * @example
11647
+ * 10001
11648
+ */
11565
11649
  pdnsId?: number;
11650
+ /**
11651
+ * @example
11652
+ * 1c092d715b7a48de
11653
+ */
11566
11654
  secretKey?: string;
11655
+ /**
11656
+ * @example
11657
+ * normal
11658
+ */
11567
11659
  serviceType?: string;
11660
+ /**
11661
+ * @example
11662
+ * AVAILABLE
11663
+ */
11568
11664
  state?: string;
11665
+ /**
11666
+ * @example
11667
+ * CLOSED
11668
+ */
11569
11669
  statisticSwitchStatus?: string;
11570
11670
  stoppedService?: string;
11571
11671
  static names(): { [key: string]: string } {
@@ -14884,7 +14984,7 @@ export class ListCloudGtmMonitorTemplatesResponseBodyTemplates extends $dara.Mod
14884
14984
  export class ListTagResourcesRequestTag extends $dara.Model {
14885
14985
  /**
14886
14986
  * @remarks
14887
- * The key of the tag.
14987
+ * The tag key.
14888
14988
  *
14889
14989
  * @example
14890
14990
  * abcd
@@ -14892,7 +14992,7 @@ export class ListTagResourcesRequestTag extends $dara.Model {
14892
14992
  key?: string;
14893
14993
  /**
14894
14994
  * @remarks
14895
- * The value of the tag.
14995
+ * The key value.
14896
14996
  *
14897
14997
  * @example
14898
14998
  * abcd
@@ -14940,7 +15040,7 @@ export class ListTagResourcesResponseBodyTagResources extends $dara.Model {
14940
15040
  resourceType?: string;
14941
15041
  /**
14942
15042
  * @remarks
14943
- * The key of the tag.
15043
+ * The tag key.
14944
15044
  *
14945
15045
  * @example
14946
15046
  * abcd
@@ -15055,16 +15155,25 @@ export class OperateBatchDomainRequestDomainRecordInfo extends $dara.Model {
15055
15155
  */
15056
15156
  line?: string;
15057
15157
  /**
15158
+ * @remarks
15159
+ * The new hostname (used only for modification operations, not for external users).
15160
+ *
15058
15161
  * @example
15059
15162
  * mail
15060
15163
  */
15061
15164
  newRr?: string;
15062
15165
  /**
15166
+ * @remarks
15167
+ * The new type of the DNS record (used only for modification operations, not for external users).
15168
+ *
15063
15169
  * @example
15064
15170
  * AAAA
15065
15171
  */
15066
15172
  newType?: string;
15067
15173
  /**
15174
+ * @remarks
15175
+ * The new value of the DNS record (used only for modification operations, not for external users).
15176
+ *
15068
15177
  * @example
15069
15178
  * 114.92.XX.XX
15070
15179
  */
@@ -15109,7 +15218,7 @@ export class OperateBatchDomainRequestDomainRecordInfo extends $dara.Model {
15109
15218
  type?: string;
15110
15219
  /**
15111
15220
  * @remarks
15112
- * The record value.
15221
+ * The value of the DNS record.
15113
15222
  *
15114
15223
  * > This parameter is required if you set Type to **RR_ADD** or **RR_DEL**.
15115
15224
  *
@@ -17378,7 +17487,7 @@ export class SearchCloudGtmMonitorTemplatesResponseBodyTemplates extends $dara.M
17378
17487
  export class TagResourcesRequestTag extends $dara.Model {
17379
17488
  /**
17380
17489
  * @remarks
17381
- * The key of tag N to add to the resource. The tag key can be up to 20 characters in length and cannot start with acs: or aliyun.
17490
+ * The tag key. The tag key can be up to 20 characters in length and cannot start with `acs:` or`aliyun`.
17382
17491
  *
17383
17492
  * @example
17384
17493
  * abcd
@@ -17386,7 +17495,7 @@ export class TagResourcesRequestTag extends $dara.Model {
17386
17495
  key?: string;
17387
17496
  /**
17388
17497
  * @remarks
17389
- * The value of tag N to add to the resource. The tag value can be up to 20 characters in length.
17498
+ * The tag value. The tag value can be up to 20 bytes in length.
17390
17499
  *
17391
17500
  * @example
17392
17501
  * abcd
@@ -18088,7 +18197,7 @@ export class UpdateGtmMonitorRequestIspCityNode extends $dara.Model {
18088
18197
  export class AddCustomLineRequest extends $dara.Model {
18089
18198
  /**
18090
18199
  * @remarks
18091
- * The domain name.
18200
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
18092
18201
  *
18093
18202
  * This parameter is required.
18094
18203
  *
@@ -18105,7 +18214,10 @@ export class AddCustomLineRequest extends $dara.Model {
18105
18214
  ipSegment?: AddCustomLineRequestIpSegment[];
18106
18215
  /**
18107
18216
  * @remarks
18108
- * The language.
18217
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
18218
+ *
18219
+ * * **zh**: Chinese
18220
+ * * **en**: English
18109
18221
  *
18110
18222
  * @example
18111
18223
  * en
@@ -18256,7 +18368,7 @@ export class AddDnsCacheDomainRequest extends $dara.Model {
18256
18368
  cacheTtlMin?: number;
18257
18369
  /**
18258
18370
  * @remarks
18259
- * The domain name.
18371
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
18260
18372
  *
18261
18373
  * This parameter is required.
18262
18374
  *
@@ -18266,7 +18378,7 @@ export class AddDnsCacheDomainRequest extends $dara.Model {
18266
18378
  domainName?: string;
18267
18379
  /**
18268
18380
  * @remarks
18269
- * The instance ID of the cache-accelerated domain name.
18381
+ * The instance ID of the cache-accelerated domain name. You can call the [ListCloudGtmInstances](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-listcloudgtminstances?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the instance ID.
18270
18382
  *
18271
18383
  * This parameter is required.
18272
18384
  *
@@ -18276,7 +18388,10 @@ export class AddDnsCacheDomainRequest extends $dara.Model {
18276
18388
  instanceId?: string;
18277
18389
  /**
18278
18390
  * @remarks
18279
- * The language.
18391
+ * The language of the content within the request and response. Valid values:
18392
+ *
18393
+ * * **zh**: Chinese
18394
+ * * **en**: English Default: **zh**
18280
18395
  *
18281
18396
  * @example
18282
18397
  * en
@@ -19742,7 +19857,7 @@ export class AddDomainGroupResponse extends $dara.Model {
19742
19857
  export class AddDomainRecordRequest extends $dara.Model {
19743
19858
  /**
19744
19859
  * @remarks
19745
- * The domain name.
19860
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
19746
19861
  *
19747
19862
  * This parameter is required.
19748
19863
  *
@@ -19752,7 +19867,10 @@ export class AddDomainRecordRequest extends $dara.Model {
19752
19867
  domainName?: string;
19753
19868
  /**
19754
19869
  * @remarks
19755
- * The language.
19870
+ * The language of the content within the request and response. Valid values:
19871
+ *
19872
+ * * **zh**: Chinese
19873
+ * * **en**: English Default: **zh**
19756
19874
  *
19757
19875
  * @example
19758
19876
  * en
@@ -19782,7 +19900,7 @@ export class AddDomainRecordRequest extends $dara.Model {
19782
19900
  * @remarks
19783
19901
  * The hostname.
19784
19902
  *
19785
- * For example, if you want to resolve @.example.com, you must set RR to an at sign (@) instead of leaving it empty.
19903
+ * For example, to resolve @.example.com, you must set this parameter to an at sign (@). You cannot leave this parameter empty.
19786
19904
  *
19787
19905
  * This parameter is required.
19788
19906
  *
@@ -19822,7 +19940,7 @@ export class AddDomainRecordRequest extends $dara.Model {
19822
19940
  userClientIp?: string;
19823
19941
  /**
19824
19942
  * @remarks
19825
- * The record value.
19943
+ * The value of the DNS record.
19826
19944
  *
19827
19945
  * This parameter is required.
19828
19946
  *
@@ -20877,7 +20995,7 @@ export class BindInstanceDomainsResponse extends $dara.Model {
20877
20995
  export class ChangeDomainGroupRequest extends $dara.Model {
20878
20996
  /**
20879
20997
  * @remarks
20880
- * The domain name.
20998
+ * The domain name. You can call the [DescribeDomains ](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0)operation to obtain the domain name.
20881
20999
  *
20882
21000
  * This parameter is required.
20883
21001
  *
@@ -21024,7 +21142,12 @@ export class ChangeDomainGroupResponse extends $dara.Model {
21024
21142
  export class ChangeDomainOfDnsProductRequest extends $dara.Model {
21025
21143
  /**
21026
21144
  * @remarks
21027
- * Specifies whether to force bind a domain name to the instance.
21145
+ * Specifies whether to forcibly bind a domain name to the instance. Valid values:
21146
+ *
21147
+ * * **false****: no**
21148
+ * * **true**: **yes**
21149
+ *
21150
+ * Default value: **false**.
21028
21151
  *
21029
21152
  * @example
21030
21153
  * false
@@ -21032,7 +21155,9 @@ export class ChangeDomainOfDnsProductRequest extends $dara.Model {
21032
21155
  force?: boolean;
21033
21156
  /**
21034
21157
  * @remarks
21035
- * The ID of the Alibaba Cloud DNS instance.
21158
+ * The ID of the Alibaba Cloud Domain Name System (DNS) instance.
21159
+ *
21160
+ * You can call the [ListCloudGtmInstances ](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-listcloudgtminstances?spm=a2c63.p38356.help-menu-search-29697.d_0)operation to obtain the ID.
21036
21161
  *
21037
21162
  * This parameter is required.
21038
21163
  *
@@ -21042,7 +21167,12 @@ export class ChangeDomainOfDnsProductRequest extends $dara.Model {
21042
21167
  instanceId?: string;
21043
21168
  /**
21044
21169
  * @remarks
21045
- * The language in which you want the values of some response parameters to be returned. These response parameters support multiple languages.
21170
+ * The language of the content within the request and response. Valid values:
21171
+ *
21172
+ * * **zh**: Chinese
21173
+ * * **en**: English
21174
+ *
21175
+ * Default value: **zh**.
21046
21176
  *
21047
21177
  * @example
21048
21178
  * en
@@ -23270,7 +23400,10 @@ export class DeleteCloudGtmMonitorTemplateResponse extends $dara.Model {
23270
23400
  export class DeleteCustomLinesRequest extends $dara.Model {
23271
23401
  /**
23272
23402
  * @remarks
23273
- * The language.
23403
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
23404
+ *
23405
+ * * **zh**: Chinese
23406
+ * * **en**: English
23274
23407
  *
23275
23408
  * @example
23276
23409
  * en
@@ -23278,7 +23411,7 @@ export class DeleteCustomLinesRequest extends $dara.Model {
23278
23411
  lang?: string;
23279
23412
  /**
23280
23413
  * @remarks
23281
- * The unique IDs of the custom lines that you want to delete. Separate the unique IDs with commas (,).
23414
+ * The unique IDs of the custom lines that you want to delete. Separate the unique IDs with commas (,). You can call the [DescribeCustomLines](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describecustomlines?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
23282
23415
  *
23283
23416
  * This parameter is required.
23284
23417
  *
@@ -23377,7 +23510,7 @@ export class DeleteCustomLinesResponse extends $dara.Model {
23377
23510
  export class DeleteDnsCacheDomainRequest extends $dara.Model {
23378
23511
  /**
23379
23512
  * @remarks
23380
- * The domain name.
23513
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the name.
23381
23514
  *
23382
23515
  * This parameter is required.
23383
23516
  *
@@ -23387,7 +23520,10 @@ export class DeleteDnsCacheDomainRequest extends $dara.Model {
23387
23520
  domainName?: string;
23388
23521
  /**
23389
23522
  * @remarks
23390
- * The language.
23523
+ * The language of the content within the request and response. Valid values:
23524
+ *
23525
+ * * **zh**: Chinese
23526
+ * * **en**: English Default: **zh**
23391
23527
  *
23392
23528
  * @example
23393
23529
  * en
@@ -23698,7 +23834,7 @@ export class DeleteDnsGtmAddressPoolResponse extends $dara.Model {
23698
23834
  export class DeleteDomainRequest extends $dara.Model {
23699
23835
  /**
23700
23836
  * @remarks
23701
- * The domain name.
23837
+ * The domain name that already exists in Alibaba Cloud DNS. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
23702
23838
  *
23703
23839
  * This parameter is required.
23704
23840
  *
@@ -23820,7 +23956,7 @@ export class DeleteDomainResponse extends $dara.Model {
23820
23956
  export class DeleteDomainGroupRequest extends $dara.Model {
23821
23957
  /**
23822
23958
  * @remarks
23823
- * The ID of the domain name group.
23959
+ * The ID of the domain name group. You can call the [DescribeDomainGroups](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomaingroups?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
23824
23960
  *
23825
23961
  * This parameter is required.
23826
23962
  *
@@ -23942,7 +24078,10 @@ export class DeleteDomainGroupResponse extends $dara.Model {
23942
24078
  export class DeleteDomainRecordRequest extends $dara.Model {
23943
24079
  /**
23944
24080
  * @remarks
23945
- * The language.
24081
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
24082
+ *
24083
+ * * **zh**: Chinese
24084
+ * * **en**: English
23946
24085
  *
23947
24086
  * @example
23948
24087
  * en
@@ -23950,9 +24089,7 @@ export class DeleteDomainRecordRequest extends $dara.Model {
23950
24089
  lang?: string;
23951
24090
  /**
23952
24091
  * @remarks
23953
- * The ID of the DNS record.
23954
- *
23955
- * This parameter is returned when you add a DNS record or when you query a list of DNS records.
24092
+ * The ID of the DNS record. You can call the [DescribeDomainRecords](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomainrecords?spm=a2c63.p38356.help-menu-search-29697.d_0) to obtain the ID.
23956
24093
  *
23957
24094
  * This parameter is required.
23958
24095
  *
@@ -24390,7 +24527,7 @@ export class DeleteGtmRecoveryPlanResponse extends $dara.Model {
24390
24527
  export class DeleteSubDomainRecordsRequest extends $dara.Model {
24391
24528
  /**
24392
24529
  * @remarks
24393
- * The domain name.
24530
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
24394
24531
  *
24395
24532
  * This parameter is required.
24396
24533
  *
@@ -24400,7 +24537,10 @@ export class DeleteSubDomainRecordsRequest extends $dara.Model {
24400
24537
  domainName?: string;
24401
24538
  /**
24402
24539
  * @remarks
24403
- * The language type.
24540
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
24541
+ *
24542
+ * * **zh**: Chinese
24543
+ * * **en**: English
24404
24544
  *
24405
24545
  * @example
24406
24546
  * en
@@ -24408,9 +24548,9 @@ export class DeleteSubDomainRecordsRequest extends $dara.Model {
24408
24548
  lang?: string;
24409
24549
  /**
24410
24550
  * @remarks
24411
- * The host record.
24551
+ * The hostname field in the DNS record.
24412
24552
  *
24413
- * For example, to resolve @.example.com, you must set RR to an at sign (@) instead of leaving it blank.
24553
+ * For example, if you want to resolve @.example.com, you must set this parameter to an at sign (@) instead of leaving it empty.
24414
24554
  *
24415
24555
  * This parameter is required.
24416
24556
  *
@@ -24420,9 +24560,9 @@ export class DeleteSubDomainRecordsRequest extends $dara.Model {
24420
24560
  RR?: string;
24421
24561
  /**
24422
24562
  * @remarks
24423
- * The type of the DNS record. If you do not specify this parameter, all DNS record types corresponding to the subdomain name are returned.
24563
+ * The type of DNS records. If you do not specify this parameter, all types of DNS records corresponding to the subdomain are returned.
24424
24564
  *
24425
- * DNS record types include **A, MX, CNAME, TXT, REDIRECT_URL, FORWORD_URL, NS, AAAA, and SRV**. The value is not case-sensitive.
24565
+ * Valid values: **A, MX, CNAME, TXT, REDIRECT_URL, FORWORD_URL, NS, AAAA, and SRV**. The value is not case-sensitive.
24426
24566
  *
24427
24567
  * @example
24428
24568
  * A
@@ -24468,7 +24608,7 @@ export class DeleteSubDomainRecordsRequest extends $dara.Model {
24468
24608
  export class DeleteSubDomainRecordsResponseBody extends $dara.Model {
24469
24609
  /**
24470
24610
  * @remarks
24471
- * The host record.
24611
+ * The hostname.
24472
24612
  *
24473
24613
  * @example
24474
24614
  * www
@@ -24476,7 +24616,7 @@ export class DeleteSubDomainRecordsResponseBody extends $dara.Model {
24476
24616
  RR?: string;
24477
24617
  /**
24478
24618
  * @remarks
24479
- * The ID of the request.
24619
+ * The request ID.
24480
24620
  *
24481
24621
  * @example
24482
24622
  * 536E9CAD-DB30-4647-AC87-AA5CC38C5382
@@ -24484,7 +24624,7 @@ export class DeleteSubDomainRecordsResponseBody extends $dara.Model {
24484
24624
  requestId?: string;
24485
24625
  /**
24486
24626
  * @remarks
24487
- * The total number of deleted DNS records.
24627
+ * The total number of the DNS records to be deleted.
24488
24628
  *
24489
24629
  * @example
24490
24630
  * 1
@@ -24560,13 +24700,18 @@ export class DescribeBatchResultCountRequest extends $dara.Model {
24560
24700
  * * **RR_ADD**: adds Domain Name System (DNS) records in batches.
24561
24701
  * * **RR_DEL**: deletes DNS records in batches.
24562
24702
  *
24703
+ * > If you do not specify this parameter, filtering is not required.
24704
+ *
24563
24705
  * @example
24564
24706
  * DOMAIN_ADD
24565
24707
  */
24566
24708
  batchType?: string;
24567
24709
  /**
24568
24710
  * @remarks
24569
- * The language.
24711
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
24712
+ *
24713
+ * * **zh**: Chinese
24714
+ * * **en**: English
24570
24715
  *
24571
24716
  * @example
24572
24717
  * en
@@ -24576,7 +24721,7 @@ export class DescribeBatchResultCountRequest extends $dara.Model {
24576
24721
  * @remarks
24577
24722
  * The task ID.
24578
24723
  *
24579
- * If you specify TaskId, the execution result of the specified task is returned. If you do not specify TaskId, the execution result of the last task is returned.
24724
+ * > If you specify TaskId, the execution result of the specified task is returned. If you do not specify TaskId, the execution result of the last task is returned.
24580
24725
  *
24581
24726
  * @example
24582
24727
  * 123456
@@ -24757,13 +24902,18 @@ export class DescribeBatchResultDetailRequest extends $dara.Model {
24757
24902
  * * **RR_ADD**: adds Domain Name System (DNS) records in batches.
24758
24903
  * * **RR_DEL**: deletes DNS records in batches.
24759
24904
  *
24905
+ * > Do not perform filtering when this field is empty.
24906
+ *
24760
24907
  * @example
24761
24908
  * DOMAIN_ADD
24762
24909
  */
24763
24910
  batchType?: string;
24764
24911
  /**
24765
24912
  * @remarks
24766
- * The language.
24913
+ * The language of the content within the request and response. Default: **zh**. Valid values:
24914
+ *
24915
+ * * **zh**: Chinese
24916
+ * * **en**: English
24767
24917
  *
24768
24918
  * @example
24769
24919
  * en
@@ -24795,7 +24945,7 @@ export class DescribeBatchResultDetailRequest extends $dara.Model {
24795
24945
  status?: string;
24796
24946
  /**
24797
24947
  * @remarks
24798
- * The ID of the batch operation task.
24948
+ * The task ID.
24799
24949
  *
24800
24950
  * @example
24801
24951
  * 83618818
@@ -27077,7 +27227,10 @@ export class DescribeCloudGtmSystemLinesResponse extends $dara.Model {
27077
27227
  export class DescribeCustomLineRequest extends $dara.Model {
27078
27228
  /**
27079
27229
  * @remarks
27080
- * The language.
27230
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
27231
+ *
27232
+ * * **zh**: Chinese
27233
+ * * **en**: English
27081
27234
  *
27082
27235
  * @example
27083
27236
  * en
@@ -27085,7 +27238,7 @@ export class DescribeCustomLineRequest extends $dara.Model {
27085
27238
  lang?: string;
27086
27239
  /**
27087
27240
  * @remarks
27088
- * The unique ID of the custom line.
27241
+ * The unique ID of the custom line. You can call [DescribeCustomLines](https://www.alibabacloud.com/help/en/dns/api-alidns-2015-01-09-describecustomlines?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID
27089
27242
  *
27090
27243
  * @example
27091
27244
  * 597
@@ -27133,7 +27286,7 @@ export class DescribeCustomLineResponseBody extends $dara.Model {
27133
27286
  domainName?: string;
27134
27287
  /**
27135
27288
  * @remarks
27136
- * The ID of the custom line.
27289
+ * The ID/Name of the custom line.
27137
27290
  *
27138
27291
  * @example
27139
27292
  * 597
@@ -27229,7 +27382,7 @@ export class DescribeCustomLineResponse extends $dara.Model {
27229
27382
  export class DescribeCustomLinesRequest extends $dara.Model {
27230
27383
  /**
27231
27384
  * @remarks
27232
- * The domain name.
27385
+ * The domain name that already exists in Alibaba Cloud Domain Name System (DNS). You can call the [DescribeDomains ](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0)operation to obtain the domain name.
27233
27386
  *
27234
27387
  * This parameter is required.
27235
27388
  *
@@ -27239,7 +27392,12 @@ export class DescribeCustomLinesRequest extends $dara.Model {
27239
27392
  domainName?: string;
27240
27393
  /**
27241
27394
  * @remarks
27242
- * The language.
27395
+ * The language of the response. Valid values:
27396
+ *
27397
+ * * zh: Chinese
27398
+ * * en: English
27399
+ *
27400
+ * Default value: en
27243
27401
  *
27244
27402
  * @example
27245
27403
  * en
@@ -27328,7 +27486,7 @@ export class DescribeCustomLinesResponseBody extends $dara.Model {
27328
27486
  totalItems?: number;
27329
27487
  /**
27330
27488
  * @remarks
27331
- * The total number of returned pages.
27489
+ * The total number of pages returned.
27332
27490
  *
27333
27491
  * @example
27334
27492
  * 1
@@ -27406,7 +27564,7 @@ export class DescribeCustomLinesResponse extends $dara.Model {
27406
27564
  export class DescribeDNSSLBSubDomainsRequest extends $dara.Model {
27407
27565
  /**
27408
27566
  * @remarks
27409
- * The domain name.
27567
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
27410
27568
  *
27411
27569
  * This parameter is required.
27412
27570
  *
@@ -27416,7 +27574,10 @@ export class DescribeDNSSLBSubDomainsRequest extends $dara.Model {
27416
27574
  domainName?: string;
27417
27575
  /**
27418
27576
  * @remarks
27419
- * The language.
27577
+ * The language of the response. Valid values:
27578
+ *
27579
+ * * **zh** (default): Chinese
27580
+ * * **en**: English
27420
27581
  *
27421
27582
  * @example
27422
27583
  * en
@@ -27448,7 +27609,7 @@ export class DescribeDNSSLBSubDomainsRequest extends $dara.Model {
27448
27609
  rr?: string;
27449
27610
  /**
27450
27611
  * @remarks
27451
- * The IP address of the client.
27612
+ * The IP address of the user account.
27452
27613
  *
27453
27614
  * @example
27454
27615
  * 1.1.1.1
@@ -30598,7 +30759,7 @@ export class DescribeDnsGtmMonitorConfigResponse extends $dara.Model {
30598
30759
  export class DescribeDnsProductInstanceRequest extends $dara.Model {
30599
30760
  /**
30600
30761
  * @remarks
30601
- * The instance ID. You can call the **DescribeDomainInfo** operation to obtain the instance ID.
30762
+ * The ID of the DNS instance. . You can call the [DescribeDomainInfo](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomaininfo?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
30602
30763
  *
30603
30764
  * This parameter is required.
30604
30765
  *
@@ -32296,7 +32457,7 @@ export class DescribeDohUserInfoResponse extends $dara.Model {
32296
32457
  export class DescribeDomainDnssecInfoRequest extends $dara.Model {
32297
32458
  /**
32298
32459
  * @remarks
32299
- * The domain name.
32460
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
32300
32461
  *
32301
32462
  * This parameter is required.
32302
32463
  *
@@ -32306,7 +32467,12 @@ export class DescribeDomainDnssecInfoRequest extends $dara.Model {
32306
32467
  domainName?: string;
32307
32468
  /**
32308
32469
  * @remarks
32309
- * The language.
32470
+ * The language of the content within the request and response. Valid values:
32471
+ *
32472
+ * * **zh**: Chinese
32473
+ * * **en**: English
32474
+ *
32475
+ * Default value: **zh**
32310
32476
  *
32311
32477
  * @example
32312
32478
  * en
@@ -33225,7 +33391,7 @@ export class DescribeDomainLogsResponse extends $dara.Model {
33225
33391
  export class DescribeDomainNsRequest extends $dara.Model {
33226
33392
  /**
33227
33393
  * @remarks
33228
- * The domain name.
33394
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
33229
33395
  *
33230
33396
  * This parameter is required.
33231
33397
  *
@@ -33235,7 +33401,14 @@ export class DescribeDomainNsRequest extends $dara.Model {
33235
33401
  domainName?: string;
33236
33402
  /**
33237
33403
  * @remarks
33238
- * The language.
33404
+ * The language of the content in the request and response.
33405
+ *
33406
+ * Valid values:
33407
+ *
33408
+ * zh: Chinese\\
33409
+ * en: English
33410
+ *
33411
+ * Default value: **zh**
33239
33412
  *
33240
33413
  * @example
33241
33414
  * en
@@ -33382,7 +33555,10 @@ export class DescribeDomainNsResponse extends $dara.Model {
33382
33555
  export class DescribeDomainRecordInfoRequest extends $dara.Model {
33383
33556
  /**
33384
33557
  * @remarks
33385
- * The language.
33558
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
33559
+ *
33560
+ * * **zh**: Chinese
33561
+ * * **en**: English
33386
33562
  *
33387
33563
  * @example
33388
33564
  * en
@@ -33390,9 +33566,7 @@ export class DescribeDomainRecordInfoRequest extends $dara.Model {
33390
33566
  lang?: string;
33391
33567
  /**
33392
33568
  * @remarks
33393
- * The ID of the DNS record.
33394
- *
33395
- * This parameter is returned when you add a DNS record or when you query a list of DNS records.
33569
+ * The ID of the DNS record. You can call the [DescribeDomainRecords](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomainrecords?spm=a2c63.p38356.help-menu-search-29697.d_0) to obtain the ID.
33396
33570
  *
33397
33571
  * This parameter is required.
33398
33572
  *
@@ -33532,7 +33706,11 @@ export class DescribeDomainRecordInfoResponseBody extends $dara.Model {
33532
33706
  requestId?: string;
33533
33707
  /**
33534
33708
  * @remarks
33535
- * The state of the DNS records. Valid values: **Enable and Disable**.
33709
+ * The status of the DNS record. Valid values:
33710
+ *
33711
+ * Enable: enabled
33712
+ *
33713
+ * Disable: disabled
33536
33714
  *
33537
33715
  * @example
33538
33716
  * Enable
@@ -33540,7 +33718,7 @@ export class DescribeDomainRecordInfoResponseBody extends $dara.Model {
33540
33718
  status?: string;
33541
33719
  /**
33542
33720
  * @remarks
33543
- * The time-to-live (TTL) of the DNS record.
33721
+ * The time for which the DNS record is cached in a local DNS system.
33544
33722
  *
33545
33723
  * @example
33546
33724
  * 600
@@ -33659,7 +33837,7 @@ export class DescribeDomainRecordsRequest extends $dara.Model {
33659
33837
  direction?: string;
33660
33838
  /**
33661
33839
  * @remarks
33662
- * The domain name.
33840
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
33663
33841
  *
33664
33842
  * This parameter is required.
33665
33843
  *
@@ -33677,6 +33855,8 @@ export class DescribeDomainRecordsRequest extends $dara.Model {
33677
33855
  * * If you set GroupId to -2, all domain names are queried.
33678
33856
  * * You can also specify GroupId based on the actual group ID.
33679
33857
  *
33858
+ * You can call the [DescribeDomainGroups ](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomaingroups?spm=a2c63.p38356.help-menu-search-29697.d_0)operation to obtain the ID of the domain name group.
33859
+ *
33680
33860
  * @example
33681
33861
  * 2223
33682
33862
  */
@@ -34190,7 +34370,7 @@ export class DescribeDomainResolveStatisticsSummaryResponse extends $dara.Model
34190
34370
  export class DescribeDomainStatisticsRequest extends $dara.Model {
34191
34371
  /**
34192
34372
  * @remarks
34193
- * The domain name.
34373
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
34194
34374
  *
34195
34375
  * @example
34196
34376
  * example.com
@@ -34219,7 +34399,10 @@ export class DescribeDomainStatisticsRequest extends $dara.Model {
34219
34399
  endDate?: string;
34220
34400
  /**
34221
34401
  * @remarks
34222
- * The language.
34402
+ * The language of the content within the request and response.
34403
+ *
34404
+ * * **zh**: Chinese (default)
34405
+ * * **en**: English
34223
34406
  *
34224
34407
  * @example
34225
34408
  * en
@@ -37710,7 +37893,7 @@ export class DescribeGtmRecoveryPlansResponse extends $dara.Model {
37710
37893
  export class DescribeInstanceDomainsRequest extends $dara.Model {
37711
37894
  /**
37712
37895
  * @remarks
37713
- * The instance ID.
37896
+ * The ID of the Alibaba Cloud Domain Name System (DNS) instance. You can call the [DescribeDomainInfo](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomaininfo?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
37714
37897
  *
37715
37898
  * This parameter is required.
37716
37899
  *
@@ -37720,7 +37903,12 @@ export class DescribeInstanceDomainsRequest extends $dara.Model {
37720
37903
  instanceId?: string;
37721
37904
  /**
37722
37905
  * @remarks
37723
- * The language.
37906
+ * The language of the response. Valid values:
37907
+ *
37908
+ * * zh: Chinese
37909
+ * * en: English
37910
+ *
37911
+ * Default value: English.
37724
37912
  *
37725
37913
  * @example
37726
37914
  * en
@@ -37772,7 +37960,7 @@ export class DescribeInstanceDomainsRequest extends $dara.Model {
37772
37960
  export class DescribeInstanceDomainsResponseBody extends $dara.Model {
37773
37961
  /**
37774
37962
  * @remarks
37775
- * The domain names that are bound to the Alibaba Cloud DNS instance.
37963
+ * The domain names that are bound to the DNS instance.
37776
37964
  */
37777
37965
  instanceDomains?: DescribeInstanceDomainsResponseBodyInstanceDomains[];
37778
37966
  /**
@@ -37902,36 +38090,69 @@ export class DescribeInternetDnsLogsRequest extends $dara.Model {
37902
38090
  */
37903
38091
  domainName?: string;
37904
38092
  /**
38093
+ * @remarks
38094
+ * The end time of the query (timestamp, unit: milliseconds). >Warning: If the query time span is too large and the amount of resolution logs for the queried domain is excessive, it may lead to a query timeout or inaccurate query results.
38095
+ *
37905
38096
  * @example
37906
38097
  * 1709196299999
37907
38098
  */
37908
38099
  endTimestamp?: number;
37909
38100
  /**
38101
+ * @remarks
38102
+ * Return value language, options:
38103
+ * - zh: Chinese
38104
+ * - en: English
38105
+ *
38106
+ * Default: en
38107
+ *
37910
38108
  * @example
37911
38109
  * en
37912
38110
  */
37913
38111
  lang?: string;
37914
38112
  /**
38113
+ * @remarks
38114
+ * Module type
38115
+ * - AUTHORITY (default): Public Authoritative DNS
38116
+ * - RECURSION: Public Recursive DNS
38117
+ *
37915
38118
  * @example
37916
38119
  * AUTHORITY
37917
38120
  */
37918
38121
  module?: string;
37919
38122
  /**
38123
+ * @remarks
38124
+ * Page number, default value is 1.
38125
+ *
37920
38126
  * @example
37921
38127
  * 1
37922
38128
  */
37923
38129
  pageNumber?: number;
37924
38130
  /**
38131
+ * @remarks
38132
+ * Page size for query.
38133
+ *
37925
38134
  * @example
37926
38135
  * 10
37927
38136
  */
37928
38137
  pageSize?: number;
37929
38138
  /**
38139
+ * @remarks
38140
+ * Query parameters
38141
+ * - sourceIp: Source IP address
38142
+ * - queryNameFuzzy: Domain name (fuzzy value)
38143
+ * - queryType: Record type
38144
+ * - value: Resolution result
38145
+ * - status: Status
38146
+ * - serverIp: Resolution server IP
38147
+ *
37930
38148
  * @example
37931
38149
  * {"sourceIp":"59.82.XX.XX","queryType":"A"}
37932
38150
  */
37933
38151
  queryCondition?: string;
37934
38152
  /**
38153
+ * @remarks
38154
+ * The start time of the query (timestamp, unit: milliseconds).
38155
+ *
37935
38156
  * @example
37936
38157
  * 1709192640000
37937
38158
  */
@@ -37975,36 +38196,54 @@ export class DescribeInternetDnsLogsRequest extends $dara.Model {
37975
38196
 
37976
38197
  export class DescribeInternetDnsLogsResponseBody extends $dara.Model {
37977
38198
  /**
38199
+ * @remarks
38200
+ * Indicates whether the log query is precise.
38201
+ *
37978
38202
  * @example
37979
38203
  * true
37980
38204
  */
37981
38205
  complete?: boolean;
37982
38206
  /**
38207
+ * @remarks
38208
+ * Current page number.
38209
+ *
37983
38210
  * @example
37984
38211
  * 1
37985
38212
  */
37986
38213
  curPage?: number;
37987
38214
  /**
37988
38215
  * @remarks
37989
- * The logs.
38216
+ * The queried logs.
37990
38217
  */
37991
38218
  logs?: DescribeInternetDnsLogsResponseBodyLogs;
37992
38219
  /**
38220
+ * @remarks
38221
+ * Page size for query.
38222
+ *
37993
38223
  * @example
37994
38224
  * 10
37995
38225
  */
37996
38226
  pageSize?: number;
37997
38227
  /**
38228
+ * @remarks
38229
+ * Unique request identifier.
38230
+ *
37998
38231
  * @example
37999
38232
  * 536E9CAD-DB30-4647-AC87-AA5CC38C5382
38000
38233
  */
38001
38234
  requestId?: string;
38002
38235
  /**
38236
+ * @remarks
38237
+ * Total number of pages.
38238
+ *
38003
38239
  * @example
38004
38240
  * 5
38005
38241
  */
38006
38242
  totalPage?: number;
38007
38243
  /**
38244
+ * @remarks
38245
+ * Total quantity.
38246
+ *
38008
38247
  * @example
38009
38248
  * 48
38010
38249
  */
@@ -39744,6 +39983,10 @@ export class DescribePdnsUdpIpSegmentsResponse extends $dara.Model {
39744
39983
  }
39745
39984
 
39746
39985
  export class DescribePdnsUserInfoRequest extends $dara.Model {
39986
+ /**
39987
+ * @example
39988
+ * en
39989
+ */
39747
39990
  lang?: string;
39748
39991
  static names(): { [key: string]: string } {
39749
39992
  return {
@@ -39767,6 +40010,10 @@ export class DescribePdnsUserInfoRequest extends $dara.Model {
39767
40010
  }
39768
40011
 
39769
40012
  export class DescribePdnsUserInfoResponseBody extends $dara.Model {
40013
+ /**
40014
+ * @example
40015
+ * FD552816-FCC8-4832-B4A2-2DA0C2BA1688
40016
+ */
39770
40017
  requestId?: string;
39771
40018
  userInfo?: DescribePdnsUserInfoResponseBodyUserInfo;
39772
40019
  static names(): { [key: string]: string } {
@@ -39833,7 +40080,7 @@ export class DescribePdnsUserInfoResponse extends $dara.Model {
39833
40080
  export class DescribeRecordLogsRequest extends $dara.Model {
39834
40081
  /**
39835
40082
  * @remarks
39836
- * The domain name.
40083
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
39837
40084
  *
39838
40085
  * This parameter is required.
39839
40086
  *
@@ -40735,7 +40982,10 @@ export class DescribeSubDomainRecordsRequest extends $dara.Model {
40735
40982
  domainName?: string;
40736
40983
  /**
40737
40984
  * @remarks
40738
- * The language.
40985
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
40986
+ *
40987
+ * * **zh**: Chinese
40988
+ * * **en**: English
40739
40989
  *
40740
40990
  * @example
40741
40991
  * en
@@ -40833,7 +41083,7 @@ export class DescribeSubDomainRecordsRequest extends $dara.Model {
40833
41083
  export class DescribeSubDomainRecordsResponseBody extends $dara.Model {
40834
41084
  /**
40835
41085
  * @remarks
40836
- * The returned DNS records.
41086
+ * The returned Domain Name System (DNS) records.
40837
41087
  */
40838
41088
  domainRecords?: DescribeSubDomainRecordsResponseBodyDomainRecords;
40839
41089
  /**
@@ -40942,6 +41192,12 @@ export class DescribeSupportLinesRequest extends $dara.Model {
40942
41192
  */
40943
41193
  domainName?: string;
40944
41194
  /**
41195
+ * @remarks
41196
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
41197
+ *
41198
+ * * **zh**: Chinese
41199
+ * * **en**: English
41200
+ *
40945
41201
  * @example
40946
41202
  * en
40947
41203
  */
@@ -41075,7 +41331,9 @@ export class DescribeTagsRequest extends $dara.Model {
41075
41331
  pageSize?: number;
41076
41332
  /**
41077
41333
  * @remarks
41078
- * The type of the resources from which you want to query tags. Set the value to DOMAIN.
41334
+ * The type of the resource. Valid values:
41335
+ *
41336
+ * * **DOMAIN**: domain name
41079
41337
  *
41080
41338
  * This parameter is required.
41081
41339
  *
@@ -43414,7 +43672,10 @@ export class ListCloudGtmMonitorTemplatesResponse extends $dara.Model {
43414
43672
  export class ListTagResourcesRequest extends $dara.Model {
43415
43673
  /**
43416
43674
  * @remarks
43417
- * The language in which you want some response parameters to be returned.
43675
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
43676
+ *
43677
+ * * **zh**: Chinese
43678
+ * * **en**: English
43418
43679
  *
43419
43680
  * @example
43420
43681
  * en
@@ -43422,7 +43683,7 @@ export class ListTagResourcesRequest extends $dara.Model {
43422
43683
  lang?: string;
43423
43684
  /**
43424
43685
  * @remarks
43425
- * The token that determines the start point of the query.
43686
+ * The pagination token. It can be used in the next request to retrieve a new page of results.
43426
43687
  *
43427
43688
  * @example
43428
43689
  * 4698691
@@ -43435,7 +43696,9 @@ export class ListTagResourcesRequest extends $dara.Model {
43435
43696
  resourceId?: string[];
43436
43697
  /**
43437
43698
  * @remarks
43438
- * The resource type.
43699
+ * The type of the resource. Valid values:
43700
+ *
43701
+ * * **DOMAIN**: domain name
43439
43702
  *
43440
43703
  * This parameter is required.
43441
43704
  *
@@ -43445,7 +43708,7 @@ export class ListTagResourcesRequest extends $dara.Model {
43445
43708
  resourceType?: string;
43446
43709
  /**
43447
43710
  * @remarks
43448
- * An array of tag key-value pairs.
43711
+ * The tags.
43449
43712
  */
43450
43713
  tag?: ListTagResourcesRequestTag[];
43451
43714
  static names(): { [key: string]: string } {
@@ -43486,7 +43749,7 @@ export class ListTagResourcesRequest extends $dara.Model {
43486
43749
  export class ListTagResourcesResponseBody extends $dara.Model {
43487
43750
  /**
43488
43751
  * @remarks
43489
- * The token used to start the next query. If no value is returned for NextToken, no next queries are sent.
43752
+ * A pagination token. It can be used in the next request to retrieve a new page of results. If NextToken is empty, no next page exists.
43490
43753
  *
43491
43754
  * @example
43492
43755
  * 4698691
@@ -43494,7 +43757,7 @@ export class ListTagResourcesResponseBody extends $dara.Model {
43494
43757
  nextToken?: string;
43495
43758
  /**
43496
43759
  * @remarks
43497
- * The ID of the request.
43760
+ * The request ID.
43498
43761
  *
43499
43762
  * @example
43500
43763
  * 61092C8D-6AEB-4310-B74D-C632F89BF4FB
@@ -43502,7 +43765,7 @@ export class ListTagResourcesResponseBody extends $dara.Model {
43502
43765
  requestId?: string;
43503
43766
  /**
43504
43767
  * @remarks
43505
- * Details of the resource and tags, including the resource ID, the resource type, tag keys, and tag values.
43768
+ * An array that consists of the resource and the tags that are added to the resource, including information such as the resource ID, resource type, tag keys, and tag values.
43506
43769
  */
43507
43770
  tagResources?: ListTagResourcesResponseBodyTagResources[];
43508
43771
  static names(): { [key: string]: string } {
@@ -43723,7 +43986,7 @@ export class MoveDomainResourceGroupRequest extends $dara.Model {
43723
43986
  * @remarks
43724
43987
  * The ID of the new resource group.
43725
43988
  *
43726
- * You can view the ID of the resource group in the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups?) or call the ListResourceGroups operation.
43989
+ * You can view the resource group ID in the [Resource Management console](https://resourcemanager.console.aliyun.com/resource-groups?).
43727
43990
  *
43728
43991
  * This parameter is required.
43729
43992
  *
@@ -43733,7 +43996,7 @@ export class MoveDomainResourceGroupRequest extends $dara.Model {
43733
43996
  newResourceGroupId?: string;
43734
43997
  /**
43735
43998
  * @remarks
43736
- * The resource ID. If Tag is left empty, ResourceId is required.
43999
+ * The domain name.
43737
44000
  *
43738
44001
  * This parameter is required.
43739
44002
  *
@@ -43943,14 +44206,19 @@ export class MoveGtmResourceGroupResponse extends $dara.Model {
43943
44206
  export class OperateBatchDomainRequest extends $dara.Model {
43944
44207
  /**
43945
44208
  * @remarks
43946
- * The Domain Name System (DNS) records. You can submit up to 1,000 DNS records.
44209
+ * The DNS records. You can submit up to 1,000 DNS records.
43947
44210
  *
43948
44211
  * This parameter is required.
43949
44212
  */
43950
44213
  domainRecordInfo?: OperateBatchDomainRequestDomainRecordInfo[];
43951
44214
  /**
43952
44215
  * @remarks
43953
- * The language.
44216
+ * The language of the response. Valid values:
44217
+ *
44218
+ * * zh: Chinese
44219
+ * * en: English
44220
+ *
44221
+ * Default value: zh
43954
44222
  *
43955
44223
  * @example
43956
44224
  * en
@@ -46437,7 +46705,10 @@ export class SetDNSSLBStatusRequest extends $dara.Model {
46437
46705
  domainName?: string;
46438
46706
  /**
46439
46707
  * @remarks
46440
- * The language.
46708
+ * The language of the content within the request and response. Default: **zh**. Valid values:
46709
+ *
46710
+ * * **zh**: Chinese
46711
+ * * **en**: English
46441
46712
  *
46442
46713
  * @example
46443
46714
  * en
@@ -46981,7 +47252,10 @@ export class SetDomainDnssecStatusResponse extends $dara.Model {
46981
47252
  export class SetDomainRecordStatusRequest extends $dara.Model {
46982
47253
  /**
46983
47254
  * @remarks
46984
- * The language.
47255
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
47256
+ *
47257
+ * * **zh**: Chinese
47258
+ * * **en**: English
46985
47259
  *
46986
47260
  * @example
46987
47261
  * en
@@ -46989,7 +47263,7 @@ export class SetDomainRecordStatusRequest extends $dara.Model {
46989
47263
  lang?: string;
46990
47264
  /**
46991
47265
  * @remarks
46992
- * The ID of the DNS record.
47266
+ * The ID of the DNS record. You can call the [DescribeDomainRecords](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomainrecords?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
46993
47267
  *
46994
47268
  * This parameter is required.
46995
47269
  *
@@ -47605,7 +47879,10 @@ export class SwitchDnsGtmInstanceStrategyModeResponse extends $dara.Model {
47605
47879
  export class TagResourcesRequest extends $dara.Model {
47606
47880
  /**
47607
47881
  * @remarks
47608
- * The language.
47882
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
47883
+ *
47884
+ * * **zh**: Chinese
47885
+ * * **en**: English
47609
47886
  *
47610
47887
  * @example
47611
47888
  * en
@@ -47613,7 +47890,7 @@ export class TagResourcesRequest extends $dara.Model {
47613
47890
  lang?: string;
47614
47891
  /**
47615
47892
  * @remarks
47616
- * The resource ID.
47893
+ * The ID of the resource.
47617
47894
  *
47618
47895
  * This parameter is required.
47619
47896
  *
@@ -47623,7 +47900,9 @@ export class TagResourcesRequest extends $dara.Model {
47623
47900
  resourceId?: string[];
47624
47901
  /**
47625
47902
  * @remarks
47626
- * The resource type.
47903
+ * The type of the resource. Valid values:
47904
+ *
47905
+ * * **DOMAIN**: domain name
47627
47906
  *
47628
47907
  * This parameter is required.
47629
47908
  *
@@ -47633,7 +47912,7 @@ export class TagResourcesRequest extends $dara.Model {
47633
47912
  resourceType?: string;
47634
47913
  /**
47635
47914
  * @remarks
47636
- * The tag to add to the resource.
47915
+ * The tags.
47637
47916
  *
47638
47917
  * This parameter is required.
47639
47918
  */
@@ -48030,7 +48309,10 @@ export class UntagResourcesRequest extends $dara.Model {
48030
48309
  all?: boolean;
48031
48310
  /**
48032
48311
  * @remarks
48033
- * The language.
48312
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
48313
+ *
48314
+ * * **zh**: Chinese
48315
+ * * **en**: English
48034
48316
  *
48035
48317
  * @example
48036
48318
  * en
@@ -48038,7 +48320,7 @@ export class UntagResourcesRequest extends $dara.Model {
48038
48320
  lang?: string;
48039
48321
  /**
48040
48322
  * @remarks
48041
- * The resource ID.
48323
+ * The ID of the resource.
48042
48324
  *
48043
48325
  * This parameter is required.
48044
48326
  *
@@ -48048,7 +48330,9 @@ export class UntagResourcesRequest extends $dara.Model {
48048
48330
  resourceId?: string[];
48049
48331
  /**
48050
48332
  * @remarks
48051
- * The resource type.
48333
+ * The type of the resource. Valid value: Valid values:
48334
+ *
48335
+ * * **DOMAIN**: domain name
48052
48336
  *
48053
48337
  * This parameter is required.
48054
48338
  *
@@ -50119,7 +50403,7 @@ export class UpdateCloudGtmInstanceConfigBasicRequest extends $dara.Model {
50119
50403
  * @remarks
50120
50404
  * The configuration ID of the access domain name. Two configuration IDs exist when the access domain name is bound to the same GTM instance but an A record and an AAAA record are configured for the access domain name. The configuration ID uniquely identifies a configuration.
50121
50405
  *
50122
- * You can call the [ListCloudGtmInstanceConfigs](~~ListCloudGtmInstanceConfigs~~) operation to query the value of ConfigId for the access domain name.
50406
+ * You can call the [ListCloudGtmInstanceConfigs](https://help.aliyun.com/document_detail/2797349.html) operation to query the value of ConfigId for the access domain name.
50123
50407
  *
50124
50408
  * @example
50125
50409
  * Config-000**11
@@ -50954,7 +51238,7 @@ export class UpdateCloudGtmMonitorTemplateRequest extends $dara.Model {
50954
51238
  interval?: number;
50955
51239
  /**
50956
51240
  * @remarks
50957
- * The health check nodes. You can call the [ListCloudGtmMonitorNodes](~~ListCloudGtmMonitorNodes~~) operation to obtain the health check nodes.
51241
+ * The health check nodes. You can call the [ListCloudGtmMonitorNodes](https://help.aliyun.com/document_detail/2797327.html) operation to obtain the health check nodes.
50958
51242
  */
50959
51243
  ispCityNodes?: UpdateCloudGtmMonitorTemplateRequestIspCityNodes[];
50960
51244
  /**
@@ -51117,7 +51401,7 @@ export class UpdateCloudGtmMonitorTemplateShrinkRequest extends $dara.Model {
51117
51401
  interval?: number;
51118
51402
  /**
51119
51403
  * @remarks
51120
- * The health check nodes. You can call the [ListCloudGtmMonitorNodes](~~ListCloudGtmMonitorNodes~~) operation to obtain the health check nodes.
51404
+ * The health check nodes. You can call the [ListCloudGtmMonitorNodes](https://help.aliyun.com/document_detail/2797327.html) operation to obtain the health check nodes.
51121
51405
  */
51122
51406
  ispCityNodesShrink?: string;
51123
51407
  /**
@@ -51416,7 +51700,10 @@ export class UpdateCustomLineRequest extends $dara.Model {
51416
51700
  ipSegment?: UpdateCustomLineRequestIpSegment[];
51417
51701
  /**
51418
51702
  * @remarks
51419
- * The language.
51703
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
51704
+ *
51705
+ * * **zh**: Chinese
51706
+ * * **en**: English
51420
51707
  *
51421
51708
  * @example
51422
51709
  * en
@@ -51424,7 +51711,7 @@ export class UpdateCustomLineRequest extends $dara.Model {
51424
51711
  lang?: string;
51425
51712
  /**
51426
51713
  * @remarks
51427
- * The unique ID of the custom line.
51714
+ * The unique ID of the custom line. You can call the [DescribeCustomLines](https://www.alibabacloud.com/help/en/dns/api-alidns-2015-01-09-describecustomlines?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the unique ID.
51428
51715
  *
51429
51716
  * This parameter is required.
51430
51717
  *
@@ -51535,7 +51822,10 @@ export class UpdateCustomLineResponse extends $dara.Model {
51535
51822
  export class UpdateDNSSLBWeightRequest extends $dara.Model {
51536
51823
  /**
51537
51824
  * @remarks
51538
- * The language.
51825
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
51826
+ *
51827
+ * * **zh**: Chinese
51828
+ * * **en**: English
51539
51829
  *
51540
51830
  * @example
51541
51831
  * en
@@ -51543,7 +51833,7 @@ export class UpdateDNSSLBWeightRequest extends $dara.Model {
51543
51833
  lang?: string;
51544
51834
  /**
51545
51835
  * @remarks
51546
- * The ID of the DNS record.
51836
+ * The ID of the DNS record. You can call the [DescribeDomainRecords](https://www.alibabacloud.com/help/en/dns/api-alidns-2015-01-09-describedomainrecords?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
51547
51837
  *
51548
51838
  * This parameter is required.
51549
51839
  *
@@ -51700,7 +51990,7 @@ export class UpdateDnsCacheDomainRequest extends $dara.Model {
51700
51990
  cacheTtlMin?: number;
51701
51991
  /**
51702
51992
  * @remarks
51703
- * The domain name.
51993
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtian the domain name.
51704
51994
  *
51705
51995
  * This parameter is required.
51706
51996
  *
@@ -51710,7 +52000,7 @@ export class UpdateDnsCacheDomainRequest extends $dara.Model {
51710
52000
  domainName?: string;
51711
52001
  /**
51712
52002
  * @remarks
51713
- * The instance ID of the cache-accelerated domain name.
52003
+ * The instance ID of the cache-accelerated domain name. You can call the [ListCloudGtmInstances](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-listcloudgtminstances?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
51714
52004
  *
51715
52005
  * @example
51716
52006
  * dns-sg-l9u2ux1fw01
@@ -51718,7 +52008,10 @@ export class UpdateDnsCacheDomainRequest extends $dara.Model {
51718
52008
  instanceId?: string;
51719
52009
  /**
51720
52010
  * @remarks
51721
- * The language.
52011
+ * The language of the content within the request and response. Valid values:
52012
+ *
52013
+ * * **zh**: Chinese
52014
+ * * **en**: English Default: **zh**
51722
52015
  *
51723
52016
  * @example
51724
52017
  * en
@@ -51851,7 +52144,7 @@ export class UpdateDnsCacheDomainResponse extends $dara.Model {
51851
52144
  export class UpdateDnsCacheDomainRemarkRequest extends $dara.Model {
51852
52145
  /**
51853
52146
  * @remarks
51854
- * The domain name.
52147
+ * The domain name. You can call the [DescribeDomains](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the domain name.
51855
52148
  *
51856
52149
  * This parameter is required.
51857
52150
  *
@@ -51861,7 +52154,12 @@ export class UpdateDnsCacheDomainRemarkRequest extends $dara.Model {
51861
52154
  domainName?: string;
51862
52155
  /**
51863
52156
  * @remarks
51864
- * The language.
52157
+ * The language of the content within the request and response. Valid values:
52158
+ *
52159
+ * * **zh**: Chinese
52160
+ * * **en**: English
52161
+ *
52162
+ * Default: **zh**
51865
52163
  *
51866
52164
  * @example
51867
52165
  * en
@@ -51871,6 +52169,8 @@ export class UpdateDnsCacheDomainRemarkRequest extends $dara.Model {
51871
52169
  * @remarks
51872
52170
  * The remarks. The remarks can be up to 50 characters in length and can contain only letters, digits, periods (.), underscores (_), and hyphens (-).
51873
52171
  *
52172
+ * Delete the original remarks when it is empty.
52173
+ *
51874
52174
  * @example
51875
52175
  * test
51876
52176
  */
@@ -52848,7 +53148,7 @@ export class UpdateDnsGtmMonitorResponse extends $dara.Model {
52848
53148
  export class UpdateDomainGroupRequest extends $dara.Model {
52849
53149
  /**
52850
53150
  * @remarks
52851
- * The ID of the domain name group whose name you want to modify.
53151
+ * The ID of the domain name group whose name you want to modify. You can call the [DescribeDomainGroups ](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomaingroups?spm=a2c63.p38356.help-menu-search-29697.d_0)operation to obtain the ID.
52852
53152
  *
52853
53153
  * This parameter is required.
52854
53154
  *
@@ -52992,7 +53292,10 @@ export class UpdateDomainGroupResponse extends $dara.Model {
52992
53292
  export class UpdateDomainRecordRequest extends $dara.Model {
52993
53293
  /**
52994
53294
  * @remarks
52995
- * The language.
53295
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
53296
+ *
53297
+ * * **zh**: Chinese
53298
+ * * **en**: English
52996
53299
  *
52997
53300
  * @example
52998
53301
  * en
@@ -53034,7 +53337,9 @@ export class UpdateDomainRecordRequest extends $dara.Model {
53034
53337
  RR?: string;
53035
53338
  /**
53036
53339
  * @remarks
53037
- * The ID of the DNS record.
53340
+ * The ID of the Domain Name System (DNS) record.
53341
+ *
53342
+ * You can call the [DescribeDomainRecords](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomainrecords?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
53038
53343
  *
53039
53344
  * This parameter is required.
53040
53345
  *
@@ -53076,7 +53381,7 @@ export class UpdateDomainRecordRequest extends $dara.Model {
53076
53381
  userClientIp?: string;
53077
53382
  /**
53078
53383
  * @remarks
53079
- * The record value.
53384
+ * The value of the DNS record.
53080
53385
  *
53081
53386
  * This parameter is required.
53082
53387
  *
@@ -53199,7 +53504,10 @@ export class UpdateDomainRecordResponse extends $dara.Model {
53199
53504
  export class UpdateDomainRecordRemarkRequest extends $dara.Model {
53200
53505
  /**
53201
53506
  * @remarks
53202
- * The language.
53507
+ * The language of the content within the request and response. Default value: **zh**. Valid values:
53508
+ *
53509
+ * * **zh**: Chinese
53510
+ * * **en**: English
53203
53511
  *
53204
53512
  * @example
53205
53513
  * cn
@@ -53207,7 +53515,7 @@ export class UpdateDomainRecordRemarkRequest extends $dara.Model {
53207
53515
  lang?: string;
53208
53516
  /**
53209
53517
  * @remarks
53210
- * The ID of the DNS record.
53518
+ * The ID of the DNS record. You can call the [DescribeDomainRecords](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomainrecords?spm=a2c63.p38356.help-menu-search-29697.d_0) operation to obtain the ID.
53211
53519
  *
53212
53520
  * This parameter is required.
53213
53521
  *
@@ -53217,7 +53525,7 @@ export class UpdateDomainRecordRemarkRequest extends $dara.Model {
53217
53525
  recordId?: string;
53218
53526
  /**
53219
53527
  * @remarks
53220
- * The description of the DNS record.
53528
+ * The description of the DNS record. This parameter is empty by default. If this parameter is empty, the original remarks are deleted.
53221
53529
  */
53222
53530
  remark?: string;
53223
53531
  /**
@@ -53323,7 +53631,7 @@ export class UpdateDomainRecordRemarkResponse extends $dara.Model {
53323
53631
  export class UpdateDomainRemarkRequest extends $dara.Model {
53324
53632
  /**
53325
53633
  * @remarks
53326
- * The domain name that already exists in Alibaba Cloud DNS.
53634
+ * The domain name that already exists in Alibaba Cloud Domain Name System (DNS). You can call the [DescribeDomains ](https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0)operation to obtain the domain name.
53327
53635
  *
53328
53636
  * This parameter is required.
53329
53637
  *
@@ -53346,7 +53654,7 @@ export class UpdateDomainRemarkRequest extends $dara.Model {
53346
53654
  lang?: string;
53347
53655
  /**
53348
53656
  * @remarks
53349
- * The description of your domain name.
53657
+ * The description of the domain name.
53350
53658
  *
53351
53659
  * It can be up to 50 characters in length and can contain digits, letters, and the following special characters: _ - , .
53352
53660
  */
@@ -54567,7 +54875,7 @@ export default class Client extends OpenApi {
54567
54875
  }
54568
54876
 
54569
54877
  /**
54570
- * Adds a custom line.
54878
+ * Adds a custom line to the domain name.
54571
54879
  *
54572
54880
  * @remarks
54573
54881
  * In each CIDR block, the end IP address must be greater than or equal to the start IP address.\\
@@ -54610,16 +54918,11 @@ export default class Client extends OpenApi {
54610
54918
  reqBodyType: "formData",
54611
54919
  bodyType: "json",
54612
54920
  });
54613
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
54614
- return $dara.cast<AddCustomLineResponse>(await this.callApi(params, req, runtime), new AddCustomLineResponse({}));
54615
- } else {
54616
- return $dara.cast<AddCustomLineResponse>(await this.execute(params, req, runtime), new AddCustomLineResponse({}));
54617
- }
54618
-
54921
+ return $dara.cast<AddCustomLineResponse>(await this.callApi(params, req, runtime), new AddCustomLineResponse({}));
54619
54922
  }
54620
54923
 
54621
54924
  /**
54622
- * Adds a custom line.
54925
+ * Adds a custom line to the domain name.
54623
54926
  *
54624
54927
  * @remarks
54625
54928
  * In each CIDR block, the end IP address must be greater than or equal to the start IP address.\\
@@ -54634,6 +54937,8 @@ export default class Client extends OpenApi {
54634
54937
  }
54635
54938
 
54636
54939
  /**
54940
+ * Adds a cache-accelerated domain name based on the specified parameters.
54941
+ *
54637
54942
  * @param request - AddDnsCacheDomainRequest
54638
54943
  * @param runtime - runtime options for this request RuntimeOptions
54639
54944
  * @returns AddDnsCacheDomainResponse
@@ -54691,15 +54996,12 @@ export default class Client extends OpenApi {
54691
54996
  reqBodyType: "formData",
54692
54997
  bodyType: "json",
54693
54998
  });
54694
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
54695
- return $dara.cast<AddDnsCacheDomainResponse>(await this.callApi(params, req, runtime), new AddDnsCacheDomainResponse({}));
54696
- } else {
54697
- return $dara.cast<AddDnsCacheDomainResponse>(await this.execute(params, req, runtime), new AddDnsCacheDomainResponse({}));
54698
- }
54699
-
54999
+ return $dara.cast<AddDnsCacheDomainResponse>(await this.callApi(params, req, runtime), new AddDnsCacheDomainResponse({}));
54700
55000
  }
54701
55001
 
54702
55002
  /**
55003
+ * Adds a cache-accelerated domain name based on the specified parameters.
55004
+ *
54703
55005
  * @param request - AddDnsCacheDomainRequest
54704
55006
  * @returns AddDnsCacheDomainResponse
54705
55007
  */
@@ -54800,12 +55102,7 @@ export default class Client extends OpenApi {
54800
55102
  reqBodyType: "formData",
54801
55103
  bodyType: "json",
54802
55104
  });
54803
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
54804
- return $dara.cast<AddDnsGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new AddDnsGtmAccessStrategyResponse({}));
54805
- } else {
54806
- return $dara.cast<AddDnsGtmAccessStrategyResponse>(await this.execute(params, req, runtime), new AddDnsGtmAccessStrategyResponse({}));
54807
- }
54808
-
55105
+ return $dara.cast<AddDnsGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new AddDnsGtmAccessStrategyResponse({}));
54809
55106
  }
54810
55107
 
54811
55108
  /**
@@ -54895,12 +55192,7 @@ export default class Client extends OpenApi {
54895
55192
  reqBodyType: "formData",
54896
55193
  bodyType: "json",
54897
55194
  });
54898
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
54899
- return $dara.cast<AddDnsGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new AddDnsGtmAddressPoolResponse({}));
54900
- } else {
54901
- return $dara.cast<AddDnsGtmAddressPoolResponse>(await this.execute(params, req, runtime), new AddDnsGtmAddressPoolResponse({}));
54902
- }
54903
-
55195
+ return $dara.cast<AddDnsGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new AddDnsGtmAddressPoolResponse({}));
54904
55196
  }
54905
55197
 
54906
55198
  /**
@@ -54973,12 +55265,7 @@ export default class Client extends OpenApi {
54973
55265
  reqBodyType: "formData",
54974
55266
  bodyType: "json",
54975
55267
  });
54976
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
54977
- return $dara.cast<AddDnsGtmMonitorResponse>(await this.callApi(params, req, runtime), new AddDnsGtmMonitorResponse({}));
54978
- } else {
54979
- return $dara.cast<AddDnsGtmMonitorResponse>(await this.execute(params, req, runtime), new AddDnsGtmMonitorResponse({}));
54980
- }
54981
-
55268
+ return $dara.cast<AddDnsGtmMonitorResponse>(await this.callApi(params, req, runtime), new AddDnsGtmMonitorResponse({}));
54982
55269
  }
54983
55270
 
54984
55271
  /**
@@ -55039,12 +55326,7 @@ export default class Client extends OpenApi {
55039
55326
  reqBodyType: "formData",
55040
55327
  bodyType: "json",
55041
55328
  });
55042
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55043
- return $dara.cast<AddDomainResponse>(await this.callApi(params, req, runtime), new AddDomainResponse({}));
55044
- } else {
55045
- return $dara.cast<AddDomainResponse>(await this.execute(params, req, runtime), new AddDomainResponse({}));
55046
- }
55047
-
55329
+ return $dara.cast<AddDomainResponse>(await this.callApi(params, req, runtime), new AddDomainResponse({}));
55048
55330
  }
55049
55331
 
55050
55332
  /**
@@ -55098,12 +55380,7 @@ export default class Client extends OpenApi {
55098
55380
  reqBodyType: "formData",
55099
55381
  bodyType: "json",
55100
55382
  });
55101
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55102
- return $dara.cast<AddDomainBackupResponse>(await this.callApi(params, req, runtime), new AddDomainBackupResponse({}));
55103
- } else {
55104
- return $dara.cast<AddDomainBackupResponse>(await this.execute(params, req, runtime), new AddDomainBackupResponse({}));
55105
- }
55106
-
55383
+ return $dara.cast<AddDomainBackupResponse>(await this.callApi(params, req, runtime), new AddDomainBackupResponse({}));
55107
55384
  }
55108
55385
 
55109
55386
  /**
@@ -55149,12 +55426,7 @@ export default class Client extends OpenApi {
55149
55426
  reqBodyType: "formData",
55150
55427
  bodyType: "json",
55151
55428
  });
55152
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55153
- return $dara.cast<AddDomainGroupResponse>(await this.callApi(params, req, runtime), new AddDomainGroupResponse({}));
55154
- } else {
55155
- return $dara.cast<AddDomainGroupResponse>(await this.execute(params, req, runtime), new AddDomainGroupResponse({}));
55156
- }
55157
-
55429
+ return $dara.cast<AddDomainGroupResponse>(await this.callApi(params, req, runtime), new AddDomainGroupResponse({}));
55158
55430
  }
55159
55431
 
55160
55432
  /**
@@ -55228,12 +55500,7 @@ export default class Client extends OpenApi {
55228
55500
  reqBodyType: "formData",
55229
55501
  bodyType: "json",
55230
55502
  });
55231
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55232
- return $dara.cast<AddDomainRecordResponse>(await this.callApi(params, req, runtime), new AddDomainRecordResponse({}));
55233
- } else {
55234
- return $dara.cast<AddDomainRecordResponse>(await this.execute(params, req, runtime), new AddDomainRecordResponse({}));
55235
- }
55236
-
55503
+ return $dara.cast<AddDomainRecordResponse>(await this.callApi(params, req, runtime), new AddDomainRecordResponse({}));
55237
55504
  }
55238
55505
 
55239
55506
  /**
@@ -55293,12 +55560,7 @@ export default class Client extends OpenApi {
55293
55560
  reqBodyType: "formData",
55294
55561
  bodyType: "json",
55295
55562
  });
55296
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55297
- return $dara.cast<AddGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new AddGtmAccessStrategyResponse({}));
55298
- } else {
55299
- return $dara.cast<AddGtmAccessStrategyResponse>(await this.execute(params, req, runtime), new AddGtmAccessStrategyResponse({}));
55300
- }
55301
-
55563
+ return $dara.cast<AddGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new AddGtmAccessStrategyResponse({}));
55302
55564
  }
55303
55565
 
55304
55566
  /**
@@ -55386,12 +55648,7 @@ export default class Client extends OpenApi {
55386
55648
  reqBodyType: "formData",
55387
55649
  bodyType: "json",
55388
55650
  });
55389
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55390
- return $dara.cast<AddGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new AddGtmAddressPoolResponse({}));
55391
- } else {
55392
- return $dara.cast<AddGtmAddressPoolResponse>(await this.execute(params, req, runtime), new AddGtmAddressPoolResponse({}));
55393
- }
55394
-
55651
+ return $dara.cast<AddGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new AddGtmAddressPoolResponse({}));
55395
55652
  }
55396
55653
 
55397
55654
  /**
@@ -55461,12 +55718,7 @@ export default class Client extends OpenApi {
55461
55718
  reqBodyType: "formData",
55462
55719
  bodyType: "json",
55463
55720
  });
55464
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55465
- return $dara.cast<AddGtmMonitorResponse>(await this.callApi(params, req, runtime), new AddGtmMonitorResponse({}));
55466
- } else {
55467
- return $dara.cast<AddGtmMonitorResponse>(await this.execute(params, req, runtime), new AddGtmMonitorResponse({}));
55468
- }
55469
-
55721
+ return $dara.cast<AddGtmMonitorResponse>(await this.callApi(params, req, runtime), new AddGtmMonitorResponse({}));
55470
55722
  }
55471
55723
 
55472
55724
  /**
@@ -55520,12 +55772,7 @@ export default class Client extends OpenApi {
55520
55772
  reqBodyType: "formData",
55521
55773
  bodyType: "json",
55522
55774
  });
55523
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55524
- return $dara.cast<AddGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new AddGtmRecoveryPlanResponse({}));
55525
- } else {
55526
- return $dara.cast<AddGtmRecoveryPlanResponse>(await this.execute(params, req, runtime), new AddGtmRecoveryPlanResponse({}));
55527
- }
55528
-
55775
+ return $dara.cast<AddGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new AddGtmRecoveryPlanResponse({}));
55529
55776
  }
55530
55777
 
55531
55778
  /**
@@ -55579,12 +55826,7 @@ export default class Client extends OpenApi {
55579
55826
  reqBodyType: "formData",
55580
55827
  bodyType: "json",
55581
55828
  });
55582
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55583
- return $dara.cast<BindInstanceDomainsResponse>(await this.callApi(params, req, runtime), new BindInstanceDomainsResponse({}));
55584
- } else {
55585
- return $dara.cast<BindInstanceDomainsResponse>(await this.execute(params, req, runtime), new BindInstanceDomainsResponse({}));
55586
- }
55587
-
55829
+ return $dara.cast<BindInstanceDomainsResponse>(await this.callApi(params, req, runtime), new BindInstanceDomainsResponse({}));
55588
55830
  }
55589
55831
 
55590
55832
  /**
@@ -55641,12 +55883,7 @@ export default class Client extends OpenApi {
55641
55883
  reqBodyType: "formData",
55642
55884
  bodyType: "json",
55643
55885
  });
55644
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55645
- return $dara.cast<ChangeDomainGroupResponse>(await this.callApi(params, req, runtime), new ChangeDomainGroupResponse({}));
55646
- } else {
55647
- return $dara.cast<ChangeDomainGroupResponse>(await this.execute(params, req, runtime), new ChangeDomainGroupResponse({}));
55648
- }
55649
-
55886
+ return $dara.cast<ChangeDomainGroupResponse>(await this.callApi(params, req, runtime), new ChangeDomainGroupResponse({}));
55650
55887
  }
55651
55888
 
55652
55889
  /**
@@ -55711,12 +55948,7 @@ export default class Client extends OpenApi {
55711
55948
  reqBodyType: "formData",
55712
55949
  bodyType: "json",
55713
55950
  });
55714
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55715
- return $dara.cast<ChangeDomainOfDnsProductResponse>(await this.callApi(params, req, runtime), new ChangeDomainOfDnsProductResponse({}));
55716
- } else {
55717
- return $dara.cast<ChangeDomainOfDnsProductResponse>(await this.execute(params, req, runtime), new ChangeDomainOfDnsProductResponse({}));
55718
- }
55719
-
55951
+ return $dara.cast<ChangeDomainOfDnsProductResponse>(await this.callApi(params, req, runtime), new ChangeDomainOfDnsProductResponse({}));
55720
55952
  }
55721
55953
 
55722
55954
  /**
@@ -55774,12 +56006,7 @@ export default class Client extends OpenApi {
55774
56006
  reqBodyType: "formData",
55775
56007
  bodyType: "json",
55776
56008
  });
55777
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55778
- return $dara.cast<CopyGtmConfigResponse>(await this.callApi(params, req, runtime), new CopyGtmConfigResponse({}));
55779
- } else {
55780
- return $dara.cast<CopyGtmConfigResponse>(await this.execute(params, req, runtime), new CopyGtmConfigResponse({}));
55781
- }
55782
-
56009
+ return $dara.cast<CopyGtmConfigResponse>(await this.callApi(params, req, runtime), new CopyGtmConfigResponse({}));
55783
56010
  }
55784
56011
 
55785
56012
  /**
@@ -55871,12 +56098,7 @@ export default class Client extends OpenApi {
55871
56098
  reqBodyType: "formData",
55872
56099
  bodyType: "json",
55873
56100
  });
55874
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55875
- return $dara.cast<CreateCloudGtmAddressResponse>(await this.callApi(params, req, runtime), new CreateCloudGtmAddressResponse({}));
55876
- } else {
55877
- return $dara.cast<CreateCloudGtmAddressResponse>(await this.execute(params, req, runtime), new CreateCloudGtmAddressResponse({}));
55878
- }
55879
-
56101
+ return $dara.cast<CreateCloudGtmAddressResponse>(await this.callApi(params, req, runtime), new CreateCloudGtmAddressResponse({}));
55880
56102
  }
55881
56103
 
55882
56104
  /**
@@ -55942,12 +56164,7 @@ export default class Client extends OpenApi {
55942
56164
  reqBodyType: "formData",
55943
56165
  bodyType: "json",
55944
56166
  });
55945
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
55946
- return $dara.cast<CreateCloudGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new CreateCloudGtmAddressPoolResponse({}));
55947
- } else {
55948
- return $dara.cast<CreateCloudGtmAddressPoolResponse>(await this.execute(params, req, runtime), new CreateCloudGtmAddressPoolResponse({}));
55949
- }
55950
-
56167
+ return $dara.cast<CreateCloudGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new CreateCloudGtmAddressPoolResponse({}));
55951
56168
  }
55952
56169
 
55953
56170
  /**
@@ -56023,12 +56240,7 @@ export default class Client extends OpenApi {
56023
56240
  reqBodyType: "formData",
56024
56241
  bodyType: "json",
56025
56242
  });
56026
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56027
- return $dara.cast<CreateCloudGtmInstanceConfigResponse>(await this.callApi(params, req, runtime), new CreateCloudGtmInstanceConfigResponse({}));
56028
- } else {
56029
- return $dara.cast<CreateCloudGtmInstanceConfigResponse>(await this.execute(params, req, runtime), new CreateCloudGtmInstanceConfigResponse({}));
56030
- }
56031
-
56243
+ return $dara.cast<CreateCloudGtmInstanceConfigResponse>(await this.callApi(params, req, runtime), new CreateCloudGtmInstanceConfigResponse({}));
56032
56244
  }
56033
56245
 
56034
56246
  /**
@@ -56114,12 +56326,7 @@ export default class Client extends OpenApi {
56114
56326
  reqBodyType: "formData",
56115
56327
  bodyType: "json",
56116
56328
  });
56117
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56118
- return $dara.cast<CreateCloudGtmMonitorTemplateResponse>(await this.callApi(params, req, runtime), new CreateCloudGtmMonitorTemplateResponse({}));
56119
- } else {
56120
- return $dara.cast<CreateCloudGtmMonitorTemplateResponse>(await this.execute(params, req, runtime), new CreateCloudGtmMonitorTemplateResponse({}));
56121
- }
56122
-
56329
+ return $dara.cast<CreateCloudGtmMonitorTemplateResponse>(await this.callApi(params, req, runtime), new CreateCloudGtmMonitorTemplateResponse({}));
56123
56330
  }
56124
56331
 
56125
56332
  /**
@@ -56165,12 +56372,7 @@ export default class Client extends OpenApi {
56165
56372
  reqBodyType: "formData",
56166
56373
  bodyType: "json",
56167
56374
  });
56168
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56169
- return $dara.cast<CreatePdnsAppKeyResponse>(await this.callApi(params, req, runtime), new CreatePdnsAppKeyResponse({}));
56170
- } else {
56171
- return $dara.cast<CreatePdnsAppKeyResponse>(await this.execute(params, req, runtime), new CreatePdnsAppKeyResponse({}));
56172
- }
56173
-
56375
+ return $dara.cast<CreatePdnsAppKeyResponse>(await this.callApi(params, req, runtime), new CreatePdnsAppKeyResponse({}));
56174
56376
  }
56175
56377
 
56176
56378
  /**
@@ -56224,12 +56426,7 @@ export default class Client extends OpenApi {
56224
56426
  reqBodyType: "formData",
56225
56427
  bodyType: "json",
56226
56428
  });
56227
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56228
- return $dara.cast<CreatePdnsUdpIpSegmentResponse>(await this.callApi(params, req, runtime), new CreatePdnsUdpIpSegmentResponse({}));
56229
- } else {
56230
- return $dara.cast<CreatePdnsUdpIpSegmentResponse>(await this.execute(params, req, runtime), new CreatePdnsUdpIpSegmentResponse({}));
56231
- }
56232
-
56429
+ return $dara.cast<CreatePdnsUdpIpSegmentResponse>(await this.callApi(params, req, runtime), new CreatePdnsUdpIpSegmentResponse({}));
56233
56430
  }
56234
56431
 
56235
56432
  /**
@@ -56279,12 +56476,7 @@ export default class Client extends OpenApi {
56279
56476
  reqBodyType: "formData",
56280
56477
  bodyType: "json",
56281
56478
  });
56282
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56283
- return $dara.cast<DeleteCloudGtmAddressResponse>(await this.callApi(params, req, runtime), new DeleteCloudGtmAddressResponse({}));
56284
- } else {
56285
- return $dara.cast<DeleteCloudGtmAddressResponse>(await this.execute(params, req, runtime), new DeleteCloudGtmAddressResponse({}));
56286
- }
56287
-
56479
+ return $dara.cast<DeleteCloudGtmAddressResponse>(await this.callApi(params, req, runtime), new DeleteCloudGtmAddressResponse({}));
56288
56480
  }
56289
56481
 
56290
56482
  /**
@@ -56334,12 +56526,7 @@ export default class Client extends OpenApi {
56334
56526
  reqBodyType: "formData",
56335
56527
  bodyType: "json",
56336
56528
  });
56337
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56338
- return $dara.cast<DeleteCloudGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new DeleteCloudGtmAddressPoolResponse({}));
56339
- } else {
56340
- return $dara.cast<DeleteCloudGtmAddressPoolResponse>(await this.execute(params, req, runtime), new DeleteCloudGtmAddressPoolResponse({}));
56341
- }
56342
-
56529
+ return $dara.cast<DeleteCloudGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new DeleteCloudGtmAddressPoolResponse({}));
56343
56530
  }
56344
56531
 
56345
56532
  /**
@@ -56393,12 +56580,7 @@ export default class Client extends OpenApi {
56393
56580
  reqBodyType: "formData",
56394
56581
  bodyType: "json",
56395
56582
  });
56396
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56397
- return $dara.cast<DeleteCloudGtmInstanceConfigResponse>(await this.callApi(params, req, runtime), new DeleteCloudGtmInstanceConfigResponse({}));
56398
- } else {
56399
- return $dara.cast<DeleteCloudGtmInstanceConfigResponse>(await this.execute(params, req, runtime), new DeleteCloudGtmInstanceConfigResponse({}));
56400
- }
56401
-
56583
+ return $dara.cast<DeleteCloudGtmInstanceConfigResponse>(await this.callApi(params, req, runtime), new DeleteCloudGtmInstanceConfigResponse({}));
56402
56584
  }
56403
56585
 
56404
56586
  /**
@@ -56448,12 +56630,7 @@ export default class Client extends OpenApi {
56448
56630
  reqBodyType: "formData",
56449
56631
  bodyType: "json",
56450
56632
  });
56451
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56452
- return $dara.cast<DeleteCloudGtmMonitorTemplateResponse>(await this.callApi(params, req, runtime), new DeleteCloudGtmMonitorTemplateResponse({}));
56453
- } else {
56454
- return $dara.cast<DeleteCloudGtmMonitorTemplateResponse>(await this.execute(params, req, runtime), new DeleteCloudGtmMonitorTemplateResponse({}));
56455
- }
56456
-
56633
+ return $dara.cast<DeleteCloudGtmMonitorTemplateResponse>(await this.callApi(params, req, runtime), new DeleteCloudGtmMonitorTemplateResponse({}));
56457
56634
  }
56458
56635
 
56459
56636
  /**
@@ -56468,7 +56645,7 @@ export default class Client extends OpenApi {
56468
56645
  }
56469
56646
 
56470
56647
  /**
56471
- * Deletes multiple custom lines at a time.
56648
+ * Deletes custom lines at a time by using the unique IDs.
56472
56649
  *
56473
56650
  * @param request - DeleteCustomLinesRequest
56474
56651
  * @param runtime - runtime options for this request RuntimeOptions
@@ -56499,16 +56676,11 @@ export default class Client extends OpenApi {
56499
56676
  reqBodyType: "formData",
56500
56677
  bodyType: "json",
56501
56678
  });
56502
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56503
- return $dara.cast<DeleteCustomLinesResponse>(await this.callApi(params, req, runtime), new DeleteCustomLinesResponse({}));
56504
- } else {
56505
- return $dara.cast<DeleteCustomLinesResponse>(await this.execute(params, req, runtime), new DeleteCustomLinesResponse({}));
56506
- }
56507
-
56679
+ return $dara.cast<DeleteCustomLinesResponse>(await this.callApi(params, req, runtime), new DeleteCustomLinesResponse({}));
56508
56680
  }
56509
56681
 
56510
56682
  /**
56511
- * Deletes multiple custom lines at a time.
56683
+ * Deletes custom lines at a time by using the unique IDs.
56512
56684
  *
56513
56685
  * @param request - DeleteCustomLinesRequest
56514
56686
  * @returns DeleteCustomLinesResponse
@@ -56519,6 +56691,8 @@ export default class Client extends OpenApi {
56519
56691
  }
56520
56692
 
56521
56693
  /**
56694
+ * Deletes a specified cache-accelerated domain name.
56695
+ *
56522
56696
  * @param request - DeleteDnsCacheDomainRequest
56523
56697
  * @param runtime - runtime options for this request RuntimeOptions
56524
56698
  * @returns DeleteDnsCacheDomainResponse
@@ -56548,15 +56722,12 @@ export default class Client extends OpenApi {
56548
56722
  reqBodyType: "formData",
56549
56723
  bodyType: "json",
56550
56724
  });
56551
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56552
- return $dara.cast<DeleteDnsCacheDomainResponse>(await this.callApi(params, req, runtime), new DeleteDnsCacheDomainResponse({}));
56553
- } else {
56554
- return $dara.cast<DeleteDnsCacheDomainResponse>(await this.execute(params, req, runtime), new DeleteDnsCacheDomainResponse({}));
56555
- }
56556
-
56725
+ return $dara.cast<DeleteDnsCacheDomainResponse>(await this.callApi(params, req, runtime), new DeleteDnsCacheDomainResponse({}));
56557
56726
  }
56558
56727
 
56559
56728
  /**
56729
+ * Deletes a specified cache-accelerated domain name.
56730
+ *
56560
56731
  * @param request - DeleteDnsCacheDomainRequest
56561
56732
  * @returns DeleteDnsCacheDomainResponse
56562
56733
  */
@@ -56595,12 +56766,7 @@ export default class Client extends OpenApi {
56595
56766
  reqBodyType: "formData",
56596
56767
  bodyType: "json",
56597
56768
  });
56598
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56599
- return $dara.cast<DeleteDnsGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new DeleteDnsGtmAccessStrategyResponse({}));
56600
- } else {
56601
- return $dara.cast<DeleteDnsGtmAccessStrategyResponse>(await this.execute(params, req, runtime), new DeleteDnsGtmAccessStrategyResponse({}));
56602
- }
56603
-
56769
+ return $dara.cast<DeleteDnsGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new DeleteDnsGtmAccessStrategyResponse({}));
56604
56770
  }
56605
56771
 
56606
56772
  /**
@@ -56642,12 +56808,7 @@ export default class Client extends OpenApi {
56642
56808
  reqBodyType: "formData",
56643
56809
  bodyType: "json",
56644
56810
  });
56645
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56646
- return $dara.cast<DeleteDnsGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new DeleteDnsGtmAddressPoolResponse({}));
56647
- } else {
56648
- return $dara.cast<DeleteDnsGtmAddressPoolResponse>(await this.execute(params, req, runtime), new DeleteDnsGtmAddressPoolResponse({}));
56649
- }
56650
-
56811
+ return $dara.cast<DeleteDnsGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new DeleteDnsGtmAddressPoolResponse({}));
56651
56812
  }
56652
56813
 
56653
56814
  /**
@@ -56691,12 +56852,7 @@ export default class Client extends OpenApi {
56691
56852
  reqBodyType: "formData",
56692
56853
  bodyType: "json",
56693
56854
  });
56694
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56695
- return $dara.cast<DeleteDomainResponse>(await this.callApi(params, req, runtime), new DeleteDomainResponse({}));
56696
- } else {
56697
- return $dara.cast<DeleteDomainResponse>(await this.execute(params, req, runtime), new DeleteDomainResponse({}));
56698
- }
56699
-
56855
+ return $dara.cast<DeleteDomainResponse>(await this.callApi(params, req, runtime), new DeleteDomainResponse({}));
56700
56856
  }
56701
56857
 
56702
56858
  /**
@@ -56745,12 +56901,7 @@ export default class Client extends OpenApi {
56745
56901
  reqBodyType: "formData",
56746
56902
  bodyType: "json",
56747
56903
  });
56748
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56749
- return $dara.cast<DeleteDomainGroupResponse>(await this.callApi(params, req, runtime), new DeleteDomainGroupResponse({}));
56750
- } else {
56751
- return $dara.cast<DeleteDomainGroupResponse>(await this.execute(params, req, runtime), new DeleteDomainGroupResponse({}));
56752
- }
56753
-
56904
+ return $dara.cast<DeleteDomainGroupResponse>(await this.callApi(params, req, runtime), new DeleteDomainGroupResponse({}));
56754
56905
  }
56755
56906
 
56756
56907
  /**
@@ -56803,12 +56954,7 @@ export default class Client extends OpenApi {
56803
56954
  reqBodyType: "formData",
56804
56955
  bodyType: "json",
56805
56956
  });
56806
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56807
- return $dara.cast<DeleteDomainRecordResponse>(await this.callApi(params, req, runtime), new DeleteDomainRecordResponse({}));
56808
- } else {
56809
- return $dara.cast<DeleteDomainRecordResponse>(await this.execute(params, req, runtime), new DeleteDomainRecordResponse({}));
56810
- }
56811
-
56957
+ return $dara.cast<DeleteDomainRecordResponse>(await this.callApi(params, req, runtime), new DeleteDomainRecordResponse({}));
56812
56958
  }
56813
56959
 
56814
56960
  /**
@@ -56852,12 +56998,7 @@ export default class Client extends OpenApi {
56852
56998
  reqBodyType: "formData",
56853
56999
  bodyType: "json",
56854
57000
  });
56855
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56856
- return $dara.cast<DeleteGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new DeleteGtmAccessStrategyResponse({}));
56857
- } else {
56858
- return $dara.cast<DeleteGtmAccessStrategyResponse>(await this.execute(params, req, runtime), new DeleteGtmAccessStrategyResponse({}));
56859
- }
56860
-
57001
+ return $dara.cast<DeleteGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new DeleteGtmAccessStrategyResponse({}));
56861
57002
  }
56862
57003
 
56863
57004
  /**
@@ -56899,12 +57040,7 @@ export default class Client extends OpenApi {
56899
57040
  reqBodyType: "formData",
56900
57041
  bodyType: "json",
56901
57042
  });
56902
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56903
- return $dara.cast<DeleteGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new DeleteGtmAddressPoolResponse({}));
56904
- } else {
56905
- return $dara.cast<DeleteGtmAddressPoolResponse>(await this.execute(params, req, runtime), new DeleteGtmAddressPoolResponse({}));
56906
- }
56907
-
57043
+ return $dara.cast<DeleteGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new DeleteGtmAddressPoolResponse({}));
56908
57044
  }
56909
57045
 
56910
57046
  /**
@@ -56946,12 +57082,7 @@ export default class Client extends OpenApi {
56946
57082
  reqBodyType: "formData",
56947
57083
  bodyType: "json",
56948
57084
  });
56949
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
56950
- return $dara.cast<DeleteGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new DeleteGtmRecoveryPlanResponse({}));
56951
- } else {
56952
- return $dara.cast<DeleteGtmRecoveryPlanResponse>(await this.execute(params, req, runtime), new DeleteGtmRecoveryPlanResponse({}));
56953
- }
56954
-
57085
+ return $dara.cast<DeleteGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new DeleteGtmRecoveryPlanResponse({}));
56955
57086
  }
56956
57087
 
56957
57088
  /**
@@ -56964,8 +57095,10 @@ export default class Client extends OpenApi {
56964
57095
  }
56965
57096
 
56966
57097
  /**
57098
+ * Deletes the DNS records that are corresponding to a hostname based on the specified parameters.
57099
+ *
56967
57100
  * @remarks
56968
- * If the DNS records to be deleted contain locked DNS records, locked DNS records will not be deleted.
57101
+ * If the DNS records to be deleted contain locked DNS records, the locked DNS records will not be deleted.
56969
57102
  *
56970
57103
  * @param request - DeleteSubDomainRecordsRequest
56971
57104
  * @param runtime - runtime options for this request RuntimeOptions
@@ -57008,17 +57141,14 @@ export default class Client extends OpenApi {
57008
57141
  reqBodyType: "formData",
57009
57142
  bodyType: "json",
57010
57143
  });
57011
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57012
- return $dara.cast<DeleteSubDomainRecordsResponse>(await this.callApi(params, req, runtime), new DeleteSubDomainRecordsResponse({}));
57013
- } else {
57014
- return $dara.cast<DeleteSubDomainRecordsResponse>(await this.execute(params, req, runtime), new DeleteSubDomainRecordsResponse({}));
57015
- }
57016
-
57144
+ return $dara.cast<DeleteSubDomainRecordsResponse>(await this.callApi(params, req, runtime), new DeleteSubDomainRecordsResponse({}));
57017
57145
  }
57018
57146
 
57019
57147
  /**
57148
+ * Deletes the DNS records that are corresponding to a hostname based on the specified parameters.
57149
+ *
57020
57150
  * @remarks
57021
- * If the DNS records to be deleted contain locked DNS records, locked DNS records will not be deleted.
57151
+ * If the DNS records to be deleted contain locked DNS records, the locked DNS records will not be deleted.
57022
57152
  *
57023
57153
  * @param request - DeleteSubDomainRecordsRequest
57024
57154
  * @returns DeleteSubDomainRecordsResponse
@@ -57029,7 +57159,7 @@ export default class Client extends OpenApi {
57029
57159
  }
57030
57160
 
57031
57161
  /**
57032
- * Queries the result of a batch operation task.
57162
+ * Queries the execution result of a batch operation task based on the task ID. If you do not specify task ID, the execution result of the last batch operation task is returned.
57033
57163
  *
57034
57164
  * @param request - DescribeBatchResultCountRequest
57035
57165
  * @param runtime - runtime options for this request RuntimeOptions
@@ -57064,16 +57194,11 @@ export default class Client extends OpenApi {
57064
57194
  reqBodyType: "formData",
57065
57195
  bodyType: "json",
57066
57196
  });
57067
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57068
- return $dara.cast<DescribeBatchResultCountResponse>(await this.callApi(params, req, runtime), new DescribeBatchResultCountResponse({}));
57069
- } else {
57070
- return $dara.cast<DescribeBatchResultCountResponse>(await this.execute(params, req, runtime), new DescribeBatchResultCountResponse({}));
57071
- }
57072
-
57197
+ return $dara.cast<DescribeBatchResultCountResponse>(await this.callApi(params, req, runtime), new DescribeBatchResultCountResponse({}));
57073
57198
  }
57074
57199
 
57075
57200
  /**
57076
- * Queries the result of a batch operation task.
57201
+ * Queries the execution result of a batch operation task based on the task ID. If you do not specify task ID, the execution result of the last batch operation task is returned.
57077
57202
  *
57078
57203
  * @param request - DescribeBatchResultCountRequest
57079
57204
  * @returns DescribeBatchResultCountResponse
@@ -57134,12 +57259,7 @@ export default class Client extends OpenApi {
57134
57259
  reqBodyType: "formData",
57135
57260
  bodyType: "json",
57136
57261
  });
57137
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57138
- return $dara.cast<DescribeBatchResultDetailResponse>(await this.callApi(params, req, runtime), new DescribeBatchResultDetailResponse({}));
57139
- } else {
57140
- return $dara.cast<DescribeBatchResultDetailResponse>(await this.execute(params, req, runtime), new DescribeBatchResultDetailResponse({}));
57141
- }
57142
-
57262
+ return $dara.cast<DescribeBatchResultDetailResponse>(await this.callApi(params, req, runtime), new DescribeBatchResultDetailResponse({}));
57143
57263
  }
57144
57264
 
57145
57265
  /**
@@ -57192,12 +57312,7 @@ export default class Client extends OpenApi {
57192
57312
  reqBodyType: "formData",
57193
57313
  bodyType: "json",
57194
57314
  });
57195
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57196
- return $dara.cast<DescribeCloudGtmAddressResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmAddressResponse({}));
57197
- } else {
57198
- return $dara.cast<DescribeCloudGtmAddressResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmAddressResponse({}));
57199
- }
57200
-
57315
+ return $dara.cast<DescribeCloudGtmAddressResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmAddressResponse({}));
57201
57316
  }
57202
57317
 
57203
57318
  /**
@@ -57247,12 +57362,7 @@ export default class Client extends OpenApi {
57247
57362
  reqBodyType: "formData",
57248
57363
  bodyType: "json",
57249
57364
  });
57250
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57251
- return $dara.cast<DescribeCloudGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmAddressPoolResponse({}));
57252
- } else {
57253
- return $dara.cast<DescribeCloudGtmAddressPoolResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmAddressPoolResponse({}));
57254
- }
57255
-
57365
+ return $dara.cast<DescribeCloudGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmAddressPoolResponse({}));
57256
57366
  }
57257
57367
 
57258
57368
  /**
@@ -57302,12 +57412,7 @@ export default class Client extends OpenApi {
57302
57412
  reqBodyType: "formData",
57303
57413
  bodyType: "json",
57304
57414
  });
57305
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57306
- return $dara.cast<DescribeCloudGtmAddressPoolReferenceResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmAddressPoolReferenceResponse({}));
57307
- } else {
57308
- return $dara.cast<DescribeCloudGtmAddressPoolReferenceResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmAddressPoolReferenceResponse({}));
57309
- }
57310
-
57415
+ return $dara.cast<DescribeCloudGtmAddressPoolReferenceResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmAddressPoolReferenceResponse({}));
57311
57416
  }
57312
57417
 
57313
57418
  /**
@@ -57357,12 +57462,7 @@ export default class Client extends OpenApi {
57357
57462
  reqBodyType: "formData",
57358
57463
  bodyType: "json",
57359
57464
  });
57360
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57361
- return $dara.cast<DescribeCloudGtmAddressReferenceResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmAddressReferenceResponse({}));
57362
- } else {
57363
- return $dara.cast<DescribeCloudGtmAddressReferenceResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmAddressReferenceResponse({}));
57364
- }
57365
-
57465
+ return $dara.cast<DescribeCloudGtmAddressReferenceResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmAddressReferenceResponse({}));
57366
57466
  }
57367
57467
 
57368
57468
  /**
@@ -57406,12 +57506,7 @@ export default class Client extends OpenApi {
57406
57506
  reqBodyType: "formData",
57407
57507
  bodyType: "json",
57408
57508
  });
57409
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57410
- return $dara.cast<DescribeCloudGtmGlobalAlertResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmGlobalAlertResponse({}));
57411
- } else {
57412
- return $dara.cast<DescribeCloudGtmGlobalAlertResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmGlobalAlertResponse({}));
57413
- }
57414
-
57509
+ return $dara.cast<DescribeCloudGtmGlobalAlertResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmGlobalAlertResponse({}));
57415
57510
  }
57416
57511
 
57417
57512
  /**
@@ -57461,12 +57556,7 @@ export default class Client extends OpenApi {
57461
57556
  reqBodyType: "formData",
57462
57557
  bodyType: "json",
57463
57558
  });
57464
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57465
- return $dara.cast<DescribeCloudGtmInstanceConfigAlertResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmInstanceConfigAlertResponse({}));
57466
- } else {
57467
- return $dara.cast<DescribeCloudGtmInstanceConfigAlertResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmInstanceConfigAlertResponse({}));
57468
- }
57469
-
57559
+ return $dara.cast<DescribeCloudGtmInstanceConfigAlertResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmInstanceConfigAlertResponse({}));
57470
57560
  }
57471
57561
 
57472
57562
  /**
@@ -57518,12 +57608,7 @@ export default class Client extends OpenApi {
57518
57608
  reqBodyType: "formData",
57519
57609
  bodyType: "json",
57520
57610
  });
57521
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57522
- return $dara.cast<DescribeCloudGtmInstanceConfigFullInfoResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmInstanceConfigFullInfoResponse({}));
57523
- } else {
57524
- return $dara.cast<DescribeCloudGtmInstanceConfigFullInfoResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmInstanceConfigFullInfoResponse({}));
57525
- }
57526
-
57611
+ return $dara.cast<DescribeCloudGtmInstanceConfigFullInfoResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmInstanceConfigFullInfoResponse({}));
57527
57612
  }
57528
57613
 
57529
57614
  /**
@@ -57569,12 +57654,7 @@ export default class Client extends OpenApi {
57569
57654
  reqBodyType: "formData",
57570
57655
  bodyType: "json",
57571
57656
  });
57572
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57573
- return $dara.cast<DescribeCloudGtmMonitorTemplateResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmMonitorTemplateResponse({}));
57574
- } else {
57575
- return $dara.cast<DescribeCloudGtmMonitorTemplateResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmMonitorTemplateResponse({}));
57576
- }
57577
-
57657
+ return $dara.cast<DescribeCloudGtmMonitorTemplateResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmMonitorTemplateResponse({}));
57578
57658
  }
57579
57659
 
57580
57660
  /**
@@ -57614,12 +57694,7 @@ export default class Client extends OpenApi {
57614
57694
  reqBodyType: "formData",
57615
57695
  bodyType: "json",
57616
57696
  });
57617
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57618
- return $dara.cast<DescribeCloudGtmSummaryResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmSummaryResponse({}));
57619
- } else {
57620
- return $dara.cast<DescribeCloudGtmSummaryResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmSummaryResponse({}));
57621
- }
57622
-
57697
+ return $dara.cast<DescribeCloudGtmSummaryResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmSummaryResponse({}));
57623
57698
  }
57624
57699
 
57625
57700
  /**
@@ -57649,12 +57724,7 @@ export default class Client extends OpenApi {
57649
57724
  reqBodyType: "formData",
57650
57725
  bodyType: "json",
57651
57726
  });
57652
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57653
- return $dara.cast<DescribeCloudGtmSystemLinesResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmSystemLinesResponse({}));
57654
- } else {
57655
- return $dara.cast<DescribeCloudGtmSystemLinesResponse>(await this.execute(params, req, runtime), new DescribeCloudGtmSystemLinesResponse({}));
57656
- }
57657
-
57727
+ return $dara.cast<DescribeCloudGtmSystemLinesResponse>(await this.callApi(params, req, runtime), new DescribeCloudGtmSystemLinesResponse({}));
57658
57728
  }
57659
57729
 
57660
57730
  /**
@@ -57666,7 +57736,7 @@ export default class Client extends OpenApi {
57666
57736
  }
57667
57737
 
57668
57738
  /**
57669
- * Queries a custom line.
57739
+ * Queries the details of a custom line by its unique ID.
57670
57740
  *
57671
57741
  * @param request - DescribeCustomLineRequest
57672
57742
  * @param runtime - runtime options for this request RuntimeOptions
@@ -57697,16 +57767,11 @@ export default class Client extends OpenApi {
57697
57767
  reqBodyType: "formData",
57698
57768
  bodyType: "json",
57699
57769
  });
57700
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57701
- return $dara.cast<DescribeCustomLineResponse>(await this.callApi(params, req, runtime), new DescribeCustomLineResponse({}));
57702
- } else {
57703
- return $dara.cast<DescribeCustomLineResponse>(await this.execute(params, req, runtime), new DescribeCustomLineResponse({}));
57704
- }
57705
-
57770
+ return $dara.cast<DescribeCustomLineResponse>(await this.callApi(params, req, runtime), new DescribeCustomLineResponse({}));
57706
57771
  }
57707
57772
 
57708
57773
  /**
57709
- * Queries a custom line.
57774
+ * Queries the details of a custom line by its unique ID.
57710
57775
  *
57711
57776
  * @param request - DescribeCustomLineRequest
57712
57777
  * @returns DescribeCustomLineResponse
@@ -57717,7 +57782,7 @@ export default class Client extends OpenApi {
57717
57782
  }
57718
57783
 
57719
57784
  /**
57720
- * Queries a list of custom lines.
57785
+ * Queries custom lines by domain name.
57721
57786
  *
57722
57787
  * @param request - DescribeCustomLinesRequest
57723
57788
  * @param runtime - runtime options for this request RuntimeOptions
@@ -57756,16 +57821,11 @@ export default class Client extends OpenApi {
57756
57821
  reqBodyType: "formData",
57757
57822
  bodyType: "json",
57758
57823
  });
57759
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57760
- return $dara.cast<DescribeCustomLinesResponse>(await this.callApi(params, req, runtime), new DescribeCustomLinesResponse({}));
57761
- } else {
57762
- return $dara.cast<DescribeCustomLinesResponse>(await this.execute(params, req, runtime), new DescribeCustomLinesResponse({}));
57763
- }
57764
-
57824
+ return $dara.cast<DescribeCustomLinesResponse>(await this.callApi(params, req, runtime), new DescribeCustomLinesResponse({}));
57765
57825
  }
57766
57826
 
57767
57827
  /**
57768
- * Queries a list of custom lines.
57828
+ * Queries custom lines by domain name.
57769
57829
  *
57770
57830
  * @param request - DescribeCustomLinesRequest
57771
57831
  * @returns DescribeCustomLinesResponse
@@ -57823,12 +57883,7 @@ export default class Client extends OpenApi {
57823
57883
  reqBodyType: "formData",
57824
57884
  bodyType: "json",
57825
57885
  });
57826
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57827
- return $dara.cast<DescribeDNSSLBSubDomainsResponse>(await this.callApi(params, req, runtime), new DescribeDNSSLBSubDomainsResponse({}));
57828
- } else {
57829
- return $dara.cast<DescribeDNSSLBSubDomainsResponse>(await this.execute(params, req, runtime), new DescribeDNSSLBSubDomainsResponse({}));
57830
- }
57831
-
57886
+ return $dara.cast<DescribeDNSSLBSubDomainsResponse>(await this.callApi(params, req, runtime), new DescribeDNSSLBSubDomainsResponse({}));
57832
57887
  }
57833
57888
 
57834
57889
  /**
@@ -57880,12 +57935,7 @@ export default class Client extends OpenApi {
57880
57935
  reqBodyType: "formData",
57881
57936
  bodyType: "json",
57882
57937
  });
57883
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57884
- return $dara.cast<DescribeDnsCacheDomainsResponse>(await this.callApi(params, req, runtime), new DescribeDnsCacheDomainsResponse({}));
57885
- } else {
57886
- return $dara.cast<DescribeDnsCacheDomainsResponse>(await this.execute(params, req, runtime), new DescribeDnsCacheDomainsResponse({}));
57887
- }
57888
-
57938
+ return $dara.cast<DescribeDnsCacheDomainsResponse>(await this.callApi(params, req, runtime), new DescribeDnsCacheDomainsResponse({}));
57889
57939
  }
57890
57940
 
57891
57941
  /**
@@ -57941,12 +57991,7 @@ export default class Client extends OpenApi {
57941
57991
  reqBodyType: "formData",
57942
57992
  bodyType: "json",
57943
57993
  });
57944
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57945
- return $dara.cast<DescribeDnsGtmAccessStrategiesResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAccessStrategiesResponse({}));
57946
- } else {
57947
- return $dara.cast<DescribeDnsGtmAccessStrategiesResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmAccessStrategiesResponse({}));
57948
- }
57949
-
57994
+ return $dara.cast<DescribeDnsGtmAccessStrategiesResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAccessStrategiesResponse({}));
57950
57995
  }
57951
57996
 
57952
57997
  /**
@@ -57992,12 +58037,7 @@ export default class Client extends OpenApi {
57992
58037
  reqBodyType: "formData",
57993
58038
  bodyType: "json",
57994
58039
  });
57995
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
57996
- return $dara.cast<DescribeDnsGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAccessStrategyResponse({}));
57997
- } else {
57998
- return $dara.cast<DescribeDnsGtmAccessStrategyResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmAccessStrategyResponse({}));
57999
- }
58000
-
58040
+ return $dara.cast<DescribeDnsGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAccessStrategyResponse({}));
58001
58041
  }
58002
58042
 
58003
58043
  /**
@@ -58047,12 +58087,7 @@ export default class Client extends OpenApi {
58047
58087
  reqBodyType: "formData",
58048
58088
  bodyType: "json",
58049
58089
  });
58050
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58051
- return $dara.cast<DescribeDnsGtmAccessStrategyAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAccessStrategyAvailableConfigResponse({}));
58052
- } else {
58053
- return $dara.cast<DescribeDnsGtmAccessStrategyAvailableConfigResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmAccessStrategyAvailableConfigResponse({}));
58054
- }
58055
-
58090
+ return $dara.cast<DescribeDnsGtmAccessStrategyAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAccessStrategyAvailableConfigResponse({}));
58056
58091
  }
58057
58092
 
58058
58093
  /**
@@ -58102,12 +58137,7 @@ export default class Client extends OpenApi {
58102
58137
  reqBodyType: "formData",
58103
58138
  bodyType: "json",
58104
58139
  });
58105
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58106
- return $dara.cast<DescribeDnsGtmAddrAttributeInfoResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAddrAttributeInfoResponse({}));
58107
- } else {
58108
- return $dara.cast<DescribeDnsGtmAddrAttributeInfoResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmAddrAttributeInfoResponse({}));
58109
- }
58110
-
58140
+ return $dara.cast<DescribeDnsGtmAddrAttributeInfoResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAddrAttributeInfoResponse({}));
58111
58141
  }
58112
58142
 
58113
58143
  /**
@@ -58153,12 +58183,7 @@ export default class Client extends OpenApi {
58153
58183
  reqBodyType: "formData",
58154
58184
  bodyType: "json",
58155
58185
  });
58156
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58157
- return $dara.cast<DescribeDnsGtmAddressPoolAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAddressPoolAvailableConfigResponse({}));
58158
- } else {
58159
- return $dara.cast<DescribeDnsGtmAddressPoolAvailableConfigResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmAddressPoolAvailableConfigResponse({}));
58160
- }
58161
-
58186
+ return $dara.cast<DescribeDnsGtmAddressPoolAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAddressPoolAvailableConfigResponse({}));
58162
58187
  }
58163
58188
 
58164
58189
  /**
@@ -58198,12 +58223,7 @@ export default class Client extends OpenApi {
58198
58223
  reqBodyType: "formData",
58199
58224
  bodyType: "json",
58200
58225
  });
58201
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58202
- return $dara.cast<DescribeDnsGtmAvailableAlertGroupResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAvailableAlertGroupResponse({}));
58203
- } else {
58204
- return $dara.cast<DescribeDnsGtmAvailableAlertGroupResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmAvailableAlertGroupResponse({}));
58205
- }
58206
-
58226
+ return $dara.cast<DescribeDnsGtmAvailableAlertGroupResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmAvailableAlertGroupResponse({}));
58207
58227
  }
58208
58228
 
58209
58229
  /**
@@ -58247,12 +58267,7 @@ export default class Client extends OpenApi {
58247
58267
  reqBodyType: "formData",
58248
58268
  bodyType: "json",
58249
58269
  });
58250
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58251
- return $dara.cast<DescribeDnsGtmInstanceResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceResponse({}));
58252
- } else {
58253
- return $dara.cast<DescribeDnsGtmInstanceResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmInstanceResponse({}));
58254
- }
58255
-
58270
+ return $dara.cast<DescribeDnsGtmInstanceResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceResponse({}));
58256
58271
  }
58257
58272
 
58258
58273
  /**
@@ -58298,12 +58313,7 @@ export default class Client extends OpenApi {
58298
58313
  reqBodyType: "formData",
58299
58314
  bodyType: "json",
58300
58315
  });
58301
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58302
- return $dara.cast<DescribeDnsGtmInstanceAddressPoolResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceAddressPoolResponse({}));
58303
- } else {
58304
- return $dara.cast<DescribeDnsGtmInstanceAddressPoolResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmInstanceAddressPoolResponse({}));
58305
- }
58306
-
58316
+ return $dara.cast<DescribeDnsGtmInstanceAddressPoolResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceAddressPoolResponse({}));
58307
58317
  }
58308
58318
 
58309
58319
  /**
@@ -58357,12 +58367,7 @@ export default class Client extends OpenApi {
58357
58367
  reqBodyType: "formData",
58358
58368
  bodyType: "json",
58359
58369
  });
58360
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58361
- return $dara.cast<DescribeDnsGtmInstanceAddressPoolsResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceAddressPoolsResponse({}));
58362
- } else {
58363
- return $dara.cast<DescribeDnsGtmInstanceAddressPoolsResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmInstanceAddressPoolsResponse({}));
58364
- }
58365
-
58370
+ return $dara.cast<DescribeDnsGtmInstanceAddressPoolsResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceAddressPoolsResponse({}));
58366
58371
  }
58367
58372
 
58368
58373
  /**
@@ -58408,12 +58413,7 @@ export default class Client extends OpenApi {
58408
58413
  reqBodyType: "formData",
58409
58414
  bodyType: "json",
58410
58415
  });
58411
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58412
- return $dara.cast<DescribeDnsGtmInstanceStatusResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceStatusResponse({}));
58413
- } else {
58414
- return $dara.cast<DescribeDnsGtmInstanceStatusResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmInstanceStatusResponse({}));
58415
- }
58416
-
58416
+ return $dara.cast<DescribeDnsGtmInstanceStatusResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceStatusResponse({}));
58417
58417
  }
58418
58418
 
58419
58419
  /**
@@ -58459,12 +58459,7 @@ export default class Client extends OpenApi {
58459
58459
  reqBodyType: "formData",
58460
58460
  bodyType: "json",
58461
58461
  });
58462
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58463
- return $dara.cast<DescribeDnsGtmInstanceSystemCnameResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceSystemCnameResponse({}));
58464
- } else {
58465
- return $dara.cast<DescribeDnsGtmInstanceSystemCnameResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmInstanceSystemCnameResponse({}));
58466
- }
58467
-
58462
+ return $dara.cast<DescribeDnsGtmInstanceSystemCnameResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstanceSystemCnameResponse({}));
58468
58463
  }
58469
58464
 
58470
58465
  /**
@@ -58522,12 +58517,7 @@ export default class Client extends OpenApi {
58522
58517
  reqBodyType: "formData",
58523
58518
  bodyType: "json",
58524
58519
  });
58525
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58526
- return $dara.cast<DescribeDnsGtmInstancesResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstancesResponse({}));
58527
- } else {
58528
- return $dara.cast<DescribeDnsGtmInstancesResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmInstancesResponse({}));
58529
- }
58530
-
58520
+ return $dara.cast<DescribeDnsGtmInstancesResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmInstancesResponse({}));
58531
58521
  }
58532
58522
 
58533
58523
  /**
@@ -58593,12 +58583,7 @@ export default class Client extends OpenApi {
58593
58583
  reqBodyType: "formData",
58594
58584
  bodyType: "json",
58595
58585
  });
58596
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58597
- return $dara.cast<DescribeDnsGtmLogsResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmLogsResponse({}));
58598
- } else {
58599
- return $dara.cast<DescribeDnsGtmLogsResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmLogsResponse({}));
58600
- }
58601
-
58586
+ return $dara.cast<DescribeDnsGtmLogsResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmLogsResponse({}));
58602
58587
  }
58603
58588
 
58604
58589
  /**
@@ -58640,12 +58625,7 @@ export default class Client extends OpenApi {
58640
58625
  reqBodyType: "formData",
58641
58626
  bodyType: "json",
58642
58627
  });
58643
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58644
- return $dara.cast<DescribeDnsGtmMonitorAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmMonitorAvailableConfigResponse({}));
58645
- } else {
58646
- return $dara.cast<DescribeDnsGtmMonitorAvailableConfigResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmMonitorAvailableConfigResponse({}));
58647
- }
58648
-
58628
+ return $dara.cast<DescribeDnsGtmMonitorAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmMonitorAvailableConfigResponse({}));
58649
58629
  }
58650
58630
 
58651
58631
  /**
@@ -58691,12 +58671,7 @@ export default class Client extends OpenApi {
58691
58671
  reqBodyType: "formData",
58692
58672
  bodyType: "json",
58693
58673
  });
58694
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58695
- return $dara.cast<DescribeDnsGtmMonitorConfigResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmMonitorConfigResponse({}));
58696
- } else {
58697
- return $dara.cast<DescribeDnsGtmMonitorConfigResponse>(await this.execute(params, req, runtime), new DescribeDnsGtmMonitorConfigResponse({}));
58698
- }
58699
-
58674
+ return $dara.cast<DescribeDnsGtmMonitorConfigResponse>(await this.callApi(params, req, runtime), new DescribeDnsGtmMonitorConfigResponse({}));
58700
58675
  }
58701
58676
 
58702
58677
  /**
@@ -58746,12 +58721,7 @@ export default class Client extends OpenApi {
58746
58721
  reqBodyType: "formData",
58747
58722
  bodyType: "json",
58748
58723
  });
58749
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58750
- return $dara.cast<DescribeDnsProductInstanceResponse>(await this.callApi(params, req, runtime), new DescribeDnsProductInstanceResponse({}));
58751
- } else {
58752
- return $dara.cast<DescribeDnsProductInstanceResponse>(await this.execute(params, req, runtime), new DescribeDnsProductInstanceResponse({}));
58753
- }
58754
-
58724
+ return $dara.cast<DescribeDnsProductInstanceResponse>(await this.callApi(params, req, runtime), new DescribeDnsProductInstanceResponse({}));
58755
58725
  }
58756
58726
 
58757
58727
  /**
@@ -58824,12 +58794,7 @@ export default class Client extends OpenApi {
58824
58794
  reqBodyType: "formData",
58825
58795
  bodyType: "json",
58826
58796
  });
58827
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58828
- return $dara.cast<DescribeDnsProductInstancesResponse>(await this.callApi(params, req, runtime), new DescribeDnsProductInstancesResponse({}));
58829
- } else {
58830
- return $dara.cast<DescribeDnsProductInstancesResponse>(await this.execute(params, req, runtime), new DescribeDnsProductInstancesResponse({}));
58831
- }
58832
-
58797
+ return $dara.cast<DescribeDnsProductInstancesResponse>(await this.callApi(params, req, runtime), new DescribeDnsProductInstancesResponse({}));
58833
58798
  }
58834
58799
 
58835
58800
  /**
@@ -58880,12 +58845,7 @@ export default class Client extends OpenApi {
58880
58845
  reqBodyType: "formData",
58881
58846
  bodyType: "json",
58882
58847
  });
58883
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58884
- return $dara.cast<DescribeDohAccountStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeDohAccountStatisticsResponse({}));
58885
- } else {
58886
- return $dara.cast<DescribeDohAccountStatisticsResponse>(await this.execute(params, req, runtime), new DescribeDohAccountStatisticsResponse({}));
58887
- }
58888
-
58848
+ return $dara.cast<DescribeDohAccountStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeDohAccountStatisticsResponse({}));
58889
58849
  }
58890
58850
 
58891
58851
  /**
@@ -58935,12 +58895,7 @@ export default class Client extends OpenApi {
58935
58895
  reqBodyType: "formData",
58936
58896
  bodyType: "json",
58937
58897
  });
58938
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
58939
- return $dara.cast<DescribeDohDomainStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeDohDomainStatisticsResponse({}));
58940
- } else {
58941
- return $dara.cast<DescribeDohDomainStatisticsResponse>(await this.execute(params, req, runtime), new DescribeDohDomainStatisticsResponse({}));
58942
- }
58943
-
58898
+ return $dara.cast<DescribeDohDomainStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeDohDomainStatisticsResponse({}));
58944
58899
  }
58945
58900
 
58946
58901
  /**
@@ -58998,12 +58953,7 @@ export default class Client extends OpenApi {
58998
58953
  reqBodyType: "formData",
58999
58954
  bodyType: "json",
59000
58955
  });
59001
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59002
- return $dara.cast<DescribeDohDomainStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDohDomainStatisticsSummaryResponse({}));
59003
- } else {
59004
- return $dara.cast<DescribeDohDomainStatisticsSummaryResponse>(await this.execute(params, req, runtime), new DescribeDohDomainStatisticsSummaryResponse({}));
59005
- }
59006
-
58956
+ return $dara.cast<DescribeDohDomainStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDohDomainStatisticsSummaryResponse({}));
59007
58957
  }
59008
58958
 
59009
58959
  /**
@@ -59053,12 +59003,7 @@ export default class Client extends OpenApi {
59053
59003
  reqBodyType: "formData",
59054
59004
  bodyType: "json",
59055
59005
  });
59056
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59057
- return $dara.cast<DescribeDohSubDomainStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeDohSubDomainStatisticsResponse({}));
59058
- } else {
59059
- return $dara.cast<DescribeDohSubDomainStatisticsResponse>(await this.execute(params, req, runtime), new DescribeDohSubDomainStatisticsResponse({}));
59060
- }
59061
-
59006
+ return $dara.cast<DescribeDohSubDomainStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeDohSubDomainStatisticsResponse({}));
59062
59007
  }
59063
59008
 
59064
59009
  /**
@@ -59120,12 +59065,7 @@ export default class Client extends OpenApi {
59120
59065
  reqBodyType: "formData",
59121
59066
  bodyType: "json",
59122
59067
  });
59123
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59124
- return $dara.cast<DescribeDohSubDomainStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDohSubDomainStatisticsSummaryResponse({}));
59125
- } else {
59126
- return $dara.cast<DescribeDohSubDomainStatisticsSummaryResponse>(await this.execute(params, req, runtime), new DescribeDohSubDomainStatisticsSummaryResponse({}));
59127
- }
59128
-
59068
+ return $dara.cast<DescribeDohSubDomainStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDohSubDomainStatisticsSummaryResponse({}));
59129
59069
  }
59130
59070
 
59131
59071
  /**
@@ -59173,12 +59113,7 @@ export default class Client extends OpenApi {
59173
59113
  reqBodyType: "formData",
59174
59114
  bodyType: "json",
59175
59115
  });
59176
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59177
- return $dara.cast<DescribeDohUserInfoResponse>(await this.callApi(params, req, runtime), new DescribeDohUserInfoResponse({}));
59178
- } else {
59179
- return $dara.cast<DescribeDohUserInfoResponse>(await this.execute(params, req, runtime), new DescribeDohUserInfoResponse({}));
59180
- }
59181
-
59116
+ return $dara.cast<DescribeDohUserInfoResponse>(await this.callApi(params, req, runtime), new DescribeDohUserInfoResponse({}));
59182
59117
  }
59183
59118
 
59184
59119
  /**
@@ -59224,12 +59159,7 @@ export default class Client extends OpenApi {
59224
59159
  reqBodyType: "formData",
59225
59160
  bodyType: "json",
59226
59161
  });
59227
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59228
- return $dara.cast<DescribeDomainDnssecInfoResponse>(await this.callApi(params, req, runtime), new DescribeDomainDnssecInfoResponse({}));
59229
- } else {
59230
- return $dara.cast<DescribeDomainDnssecInfoResponse>(await this.execute(params, req, runtime), new DescribeDomainDnssecInfoResponse({}));
59231
- }
59232
-
59162
+ return $dara.cast<DescribeDomainDnssecInfoResponse>(await this.callApi(params, req, runtime), new DescribeDomainDnssecInfoResponse({}));
59233
59163
  }
59234
59164
 
59235
59165
  /**
@@ -59283,12 +59213,7 @@ export default class Client extends OpenApi {
59283
59213
  reqBodyType: "formData",
59284
59214
  bodyType: "json",
59285
59215
  });
59286
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59287
- return $dara.cast<DescribeDomainGroupsResponse>(await this.callApi(params, req, runtime), new DescribeDomainGroupsResponse({}));
59288
- } else {
59289
- return $dara.cast<DescribeDomainGroupsResponse>(await this.execute(params, req, runtime), new DescribeDomainGroupsResponse({}));
59290
- }
59291
-
59216
+ return $dara.cast<DescribeDomainGroupsResponse>(await this.callApi(params, req, runtime), new DescribeDomainGroupsResponse({}));
59292
59217
  }
59293
59218
 
59294
59219
  /**
@@ -59341,12 +59266,7 @@ export default class Client extends OpenApi {
59341
59266
  reqBodyType: "formData",
59342
59267
  bodyType: "json",
59343
59268
  });
59344
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59345
- return $dara.cast<DescribeDomainInfoResponse>(await this.callApi(params, req, runtime), new DescribeDomainInfoResponse({}));
59346
- } else {
59347
- return $dara.cast<DescribeDomainInfoResponse>(await this.execute(params, req, runtime), new DescribeDomainInfoResponse({}));
59348
- }
59349
-
59269
+ return $dara.cast<DescribeDomainInfoResponse>(await this.callApi(params, req, runtime), new DescribeDomainInfoResponse({}));
59350
59270
  }
59351
59271
 
59352
59272
  /**
@@ -59419,12 +59339,7 @@ export default class Client extends OpenApi {
59419
59339
  reqBodyType: "formData",
59420
59340
  bodyType: "json",
59421
59341
  });
59422
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59423
- return $dara.cast<DescribeDomainLogsResponse>(await this.callApi(params, req, runtime), new DescribeDomainLogsResponse({}));
59424
- } else {
59425
- return $dara.cast<DescribeDomainLogsResponse>(await this.execute(params, req, runtime), new DescribeDomainLogsResponse({}));
59426
- }
59427
-
59342
+ return $dara.cast<DescribeDomainLogsResponse>(await this.callApi(params, req, runtime), new DescribeDomainLogsResponse({}));
59428
59343
  }
59429
59344
 
59430
59345
  /**
@@ -59473,12 +59388,7 @@ export default class Client extends OpenApi {
59473
59388
  reqBodyType: "formData",
59474
59389
  bodyType: "json",
59475
59390
  });
59476
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59477
- return $dara.cast<DescribeDomainNsResponse>(await this.callApi(params, req, runtime), new DescribeDomainNsResponse({}));
59478
- } else {
59479
- return $dara.cast<DescribeDomainNsResponse>(await this.execute(params, req, runtime), new DescribeDomainNsResponse({}));
59480
- }
59481
-
59391
+ return $dara.cast<DescribeDomainNsResponse>(await this.callApi(params, req, runtime), new DescribeDomainNsResponse({}));
59482
59392
  }
59483
59393
 
59484
59394
  /**
@@ -59496,7 +59406,7 @@ export default class Client extends OpenApi {
59496
59406
  }
59497
59407
 
59498
59408
  /**
59499
- * Queries the information about a Domain Name System (DNS) record.
59409
+ * Queries the information about a Domain Name System (DNS) record by the ID of the DNS record.
59500
59410
  *
59501
59411
  * @remarks
59502
59412
  * ## Debugging
@@ -59535,16 +59445,11 @@ export default class Client extends OpenApi {
59535
59445
  reqBodyType: "formData",
59536
59446
  bodyType: "json",
59537
59447
  });
59538
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59539
- return $dara.cast<DescribeDomainRecordInfoResponse>(await this.callApi(params, req, runtime), new DescribeDomainRecordInfoResponse({}));
59540
- } else {
59541
- return $dara.cast<DescribeDomainRecordInfoResponse>(await this.execute(params, req, runtime), new DescribeDomainRecordInfoResponse({}));
59542
- }
59543
-
59448
+ return $dara.cast<DescribeDomainRecordInfoResponse>(await this.callApi(params, req, runtime), new DescribeDomainRecordInfoResponse({}));
59544
59449
  }
59545
59450
 
59546
59451
  /**
59547
- * Queries the information about a Domain Name System (DNS) record.
59452
+ * Queries the information about a Domain Name System (DNS) record by the ID of the DNS record.
59548
59453
  *
59549
59454
  * @remarks
59550
59455
  * ## Debugging
@@ -59648,12 +59553,7 @@ export default class Client extends OpenApi {
59648
59553
  reqBodyType: "formData",
59649
59554
  bodyType: "json",
59650
59555
  });
59651
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59652
- return $dara.cast<DescribeDomainRecordsResponse>(await this.callApi(params, req, runtime), new DescribeDomainRecordsResponse({}));
59653
- } else {
59654
- return $dara.cast<DescribeDomainRecordsResponse>(await this.execute(params, req, runtime), new DescribeDomainRecordsResponse({}));
59655
- }
59656
-
59556
+ return $dara.cast<DescribeDomainRecordsResponse>(await this.callApi(params, req, runtime), new DescribeDomainRecordsResponse({}));
59657
59557
  }
59658
59558
 
59659
59559
  /**
@@ -59733,12 +59633,7 @@ export default class Client extends OpenApi {
59733
59633
  reqBodyType: "formData",
59734
59634
  bodyType: "json",
59735
59635
  });
59736
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59737
- return $dara.cast<DescribeDomainResolveStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDomainResolveStatisticsSummaryResponse({}));
59738
- } else {
59739
- return $dara.cast<DescribeDomainResolveStatisticsSummaryResponse>(await this.execute(params, req, runtime), new DescribeDomainResolveStatisticsSummaryResponse({}));
59740
- }
59741
-
59636
+ return $dara.cast<DescribeDomainResolveStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDomainResolveStatisticsSummaryResponse({}));
59742
59637
  }
59743
59638
 
59744
59639
  /**
@@ -59799,12 +59694,7 @@ export default class Client extends OpenApi {
59799
59694
  reqBodyType: "formData",
59800
59695
  bodyType: "json",
59801
59696
  });
59802
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59803
- return $dara.cast<DescribeDomainStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeDomainStatisticsResponse({}));
59804
- } else {
59805
- return $dara.cast<DescribeDomainStatisticsResponse>(await this.execute(params, req, runtime), new DescribeDomainStatisticsResponse({}));
59806
- }
59807
-
59697
+ return $dara.cast<DescribeDomainStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeDomainStatisticsResponse({}));
59808
59698
  }
59809
59699
 
59810
59700
  /**
@@ -59877,12 +59767,7 @@ export default class Client extends OpenApi {
59877
59767
  reqBodyType: "formData",
59878
59768
  bodyType: "json",
59879
59769
  });
59880
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59881
- return $dara.cast<DescribeDomainStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDomainStatisticsSummaryResponse({}));
59882
- } else {
59883
- return $dara.cast<DescribeDomainStatisticsSummaryResponse>(await this.execute(params, req, runtime), new DescribeDomainStatisticsSummaryResponse({}));
59884
- }
59885
-
59770
+ return $dara.cast<DescribeDomainStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDomainStatisticsSummaryResponse({}));
59886
59771
  }
59887
59772
 
59888
59773
  /**
@@ -59958,12 +59843,7 @@ export default class Client extends OpenApi {
59958
59843
  reqBodyType: "formData",
59959
59844
  bodyType: "json",
59960
59845
  });
59961
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
59962
- return $dara.cast<DescribeDomainsResponse>(await this.callApi(params, req, runtime), new DescribeDomainsResponse({}));
59963
- } else {
59964
- return $dara.cast<DescribeDomainsResponse>(await this.execute(params, req, runtime), new DescribeDomainsResponse({}));
59965
- }
59966
-
59846
+ return $dara.cast<DescribeDomainsResponse>(await this.callApi(params, req, runtime), new DescribeDomainsResponse({}));
59967
59847
  }
59968
59848
 
59969
59849
  /**
@@ -60023,12 +59903,7 @@ export default class Client extends OpenApi {
60023
59903
  reqBodyType: "formData",
60024
59904
  bodyType: "json",
60025
59905
  });
60026
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60027
- return $dara.cast<DescribeGtmAccessStrategiesResponse>(await this.callApi(params, req, runtime), new DescribeGtmAccessStrategiesResponse({}));
60028
- } else {
60029
- return $dara.cast<DescribeGtmAccessStrategiesResponse>(await this.execute(params, req, runtime), new DescribeGtmAccessStrategiesResponse({}));
60030
- }
60031
-
59906
+ return $dara.cast<DescribeGtmAccessStrategiesResponse>(await this.callApi(params, req, runtime), new DescribeGtmAccessStrategiesResponse({}));
60032
59907
  }
60033
59908
 
60034
59909
  /**
@@ -60074,12 +59949,7 @@ export default class Client extends OpenApi {
60074
59949
  reqBodyType: "formData",
60075
59950
  bodyType: "json",
60076
59951
  });
60077
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60078
- return $dara.cast<DescribeGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new DescribeGtmAccessStrategyResponse({}));
60079
- } else {
60080
- return $dara.cast<DescribeGtmAccessStrategyResponse>(await this.execute(params, req, runtime), new DescribeGtmAccessStrategyResponse({}));
60081
- }
60082
-
59952
+ return $dara.cast<DescribeGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new DescribeGtmAccessStrategyResponse({}));
60083
59953
  }
60084
59954
 
60085
59955
  /**
@@ -60125,12 +59995,7 @@ export default class Client extends OpenApi {
60125
59995
  reqBodyType: "formData",
60126
59996
  bodyType: "json",
60127
59997
  });
60128
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60129
- return $dara.cast<DescribeGtmAccessStrategyAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeGtmAccessStrategyAvailableConfigResponse({}));
60130
- } else {
60131
- return $dara.cast<DescribeGtmAccessStrategyAvailableConfigResponse>(await this.execute(params, req, runtime), new DescribeGtmAccessStrategyAvailableConfigResponse({}));
60132
- }
60133
-
59998
+ return $dara.cast<DescribeGtmAccessStrategyAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeGtmAccessStrategyAvailableConfigResponse({}));
60134
59999
  }
60135
60000
 
60136
60001
  /**
@@ -60170,12 +60035,7 @@ export default class Client extends OpenApi {
60170
60035
  reqBodyType: "formData",
60171
60036
  bodyType: "json",
60172
60037
  });
60173
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60174
- return $dara.cast<DescribeGtmAvailableAlertGroupResponse>(await this.callApi(params, req, runtime), new DescribeGtmAvailableAlertGroupResponse({}));
60175
- } else {
60176
- return $dara.cast<DescribeGtmAvailableAlertGroupResponse>(await this.execute(params, req, runtime), new DescribeGtmAvailableAlertGroupResponse({}));
60177
- }
60178
-
60038
+ return $dara.cast<DescribeGtmAvailableAlertGroupResponse>(await this.callApi(params, req, runtime), new DescribeGtmAvailableAlertGroupResponse({}));
60179
60039
  }
60180
60040
 
60181
60041
  /**
@@ -60223,12 +60083,7 @@ export default class Client extends OpenApi {
60223
60083
  reqBodyType: "formData",
60224
60084
  bodyType: "json",
60225
60085
  });
60226
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60227
- return $dara.cast<DescribeGtmInstanceResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceResponse({}));
60228
- } else {
60229
- return $dara.cast<DescribeGtmInstanceResponse>(await this.execute(params, req, runtime), new DescribeGtmInstanceResponse({}));
60230
- }
60231
-
60086
+ return $dara.cast<DescribeGtmInstanceResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceResponse({}));
60232
60087
  }
60233
60088
 
60234
60089
  /**
@@ -60274,12 +60129,7 @@ export default class Client extends OpenApi {
60274
60129
  reqBodyType: "formData",
60275
60130
  bodyType: "json",
60276
60131
  });
60277
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60278
- return $dara.cast<DescribeGtmInstanceAddressPoolResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceAddressPoolResponse({}));
60279
- } else {
60280
- return $dara.cast<DescribeGtmInstanceAddressPoolResponse>(await this.execute(params, req, runtime), new DescribeGtmInstanceAddressPoolResponse({}));
60281
- }
60282
-
60132
+ return $dara.cast<DescribeGtmInstanceAddressPoolResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceAddressPoolResponse({}));
60283
60133
  }
60284
60134
 
60285
60135
  /**
@@ -60333,12 +60183,7 @@ export default class Client extends OpenApi {
60333
60183
  reqBodyType: "formData",
60334
60184
  bodyType: "json",
60335
60185
  });
60336
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60337
- return $dara.cast<DescribeGtmInstanceAddressPoolsResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceAddressPoolsResponse({}));
60338
- } else {
60339
- return $dara.cast<DescribeGtmInstanceAddressPoolsResponse>(await this.execute(params, req, runtime), new DescribeGtmInstanceAddressPoolsResponse({}));
60340
- }
60341
-
60186
+ return $dara.cast<DescribeGtmInstanceAddressPoolsResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceAddressPoolsResponse({}));
60342
60187
  }
60343
60188
 
60344
60189
  /**
@@ -60384,12 +60229,7 @@ export default class Client extends OpenApi {
60384
60229
  reqBodyType: "formData",
60385
60230
  bodyType: "json",
60386
60231
  });
60387
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60388
- return $dara.cast<DescribeGtmInstanceStatusResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceStatusResponse({}));
60389
- } else {
60390
- return $dara.cast<DescribeGtmInstanceStatusResponse>(await this.execute(params, req, runtime), new DescribeGtmInstanceStatusResponse({}));
60391
- }
60392
-
60232
+ return $dara.cast<DescribeGtmInstanceStatusResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceStatusResponse({}));
60393
60233
  }
60394
60234
 
60395
60235
  /**
@@ -60433,12 +60273,7 @@ export default class Client extends OpenApi {
60433
60273
  reqBodyType: "formData",
60434
60274
  bodyType: "json",
60435
60275
  });
60436
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60437
- return $dara.cast<DescribeGtmInstanceSystemCnameResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceSystemCnameResponse({}));
60438
- } else {
60439
- return $dara.cast<DescribeGtmInstanceSystemCnameResponse>(await this.execute(params, req, runtime), new DescribeGtmInstanceSystemCnameResponse({}));
60440
- }
60441
-
60276
+ return $dara.cast<DescribeGtmInstanceSystemCnameResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstanceSystemCnameResponse({}));
60442
60277
  }
60443
60278
 
60444
60279
  /**
@@ -60498,12 +60333,7 @@ export default class Client extends OpenApi {
60498
60333
  reqBodyType: "formData",
60499
60334
  bodyType: "json",
60500
60335
  });
60501
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60502
- return $dara.cast<DescribeGtmInstancesResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstancesResponse({}));
60503
- } else {
60504
- return $dara.cast<DescribeGtmInstancesResponse>(await this.execute(params, req, runtime), new DescribeGtmInstancesResponse({}));
60505
- }
60506
-
60336
+ return $dara.cast<DescribeGtmInstancesResponse>(await this.callApi(params, req, runtime), new DescribeGtmInstancesResponse({}));
60507
60337
  }
60508
60338
 
60509
60339
  /**
@@ -60569,12 +60399,7 @@ export default class Client extends OpenApi {
60569
60399
  reqBodyType: "formData",
60570
60400
  bodyType: "json",
60571
60401
  });
60572
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60573
- return $dara.cast<DescribeGtmLogsResponse>(await this.callApi(params, req, runtime), new DescribeGtmLogsResponse({}));
60574
- } else {
60575
- return $dara.cast<DescribeGtmLogsResponse>(await this.execute(params, req, runtime), new DescribeGtmLogsResponse({}));
60576
- }
60577
-
60402
+ return $dara.cast<DescribeGtmLogsResponse>(await this.callApi(params, req, runtime), new DescribeGtmLogsResponse({}));
60578
60403
  }
60579
60404
 
60580
60405
  /**
@@ -60616,12 +60441,7 @@ export default class Client extends OpenApi {
60616
60441
  reqBodyType: "formData",
60617
60442
  bodyType: "json",
60618
60443
  });
60619
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60620
- return $dara.cast<DescribeGtmMonitorAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeGtmMonitorAvailableConfigResponse({}));
60621
- } else {
60622
- return $dara.cast<DescribeGtmMonitorAvailableConfigResponse>(await this.execute(params, req, runtime), new DescribeGtmMonitorAvailableConfigResponse({}));
60623
- }
60624
-
60444
+ return $dara.cast<DescribeGtmMonitorAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeGtmMonitorAvailableConfigResponse({}));
60625
60445
  }
60626
60446
 
60627
60447
  /**
@@ -60667,12 +60487,7 @@ export default class Client extends OpenApi {
60667
60487
  reqBodyType: "formData",
60668
60488
  bodyType: "json",
60669
60489
  });
60670
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60671
- return $dara.cast<DescribeGtmMonitorConfigResponse>(await this.callApi(params, req, runtime), new DescribeGtmMonitorConfigResponse({}));
60672
- } else {
60673
- return $dara.cast<DescribeGtmMonitorConfigResponse>(await this.execute(params, req, runtime), new DescribeGtmMonitorConfigResponse({}));
60674
- }
60675
-
60490
+ return $dara.cast<DescribeGtmMonitorConfigResponse>(await this.callApi(params, req, runtime), new DescribeGtmMonitorConfigResponse({}));
60676
60491
  }
60677
60492
 
60678
60493
  /**
@@ -60718,12 +60533,7 @@ export default class Client extends OpenApi {
60718
60533
  reqBodyType: "formData",
60719
60534
  bodyType: "json",
60720
60535
  });
60721
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60722
- return $dara.cast<DescribeGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new DescribeGtmRecoveryPlanResponse({}));
60723
- } else {
60724
- return $dara.cast<DescribeGtmRecoveryPlanResponse>(await this.execute(params, req, runtime), new DescribeGtmRecoveryPlanResponse({}));
60725
- }
60726
-
60536
+ return $dara.cast<DescribeGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new DescribeGtmRecoveryPlanResponse({}));
60727
60537
  }
60728
60538
 
60729
60539
  /**
@@ -60765,12 +60575,7 @@ export default class Client extends OpenApi {
60765
60575
  reqBodyType: "formData",
60766
60576
  bodyType: "json",
60767
60577
  });
60768
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60769
- return $dara.cast<DescribeGtmRecoveryPlanAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeGtmRecoveryPlanAvailableConfigResponse({}));
60770
- } else {
60771
- return $dara.cast<DescribeGtmRecoveryPlanAvailableConfigResponse>(await this.execute(params, req, runtime), new DescribeGtmRecoveryPlanAvailableConfigResponse({}));
60772
- }
60773
-
60578
+ return $dara.cast<DescribeGtmRecoveryPlanAvailableConfigResponse>(await this.callApi(params, req, runtime), new DescribeGtmRecoveryPlanAvailableConfigResponse({}));
60774
60579
  }
60775
60580
 
60776
60581
  /**
@@ -60824,12 +60629,7 @@ export default class Client extends OpenApi {
60824
60629
  reqBodyType: "formData",
60825
60630
  bodyType: "json",
60826
60631
  });
60827
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60828
- return $dara.cast<DescribeGtmRecoveryPlansResponse>(await this.callApi(params, req, runtime), new DescribeGtmRecoveryPlansResponse({}));
60829
- } else {
60830
- return $dara.cast<DescribeGtmRecoveryPlansResponse>(await this.execute(params, req, runtime), new DescribeGtmRecoveryPlansResponse({}));
60831
- }
60832
-
60632
+ return $dara.cast<DescribeGtmRecoveryPlansResponse>(await this.callApi(params, req, runtime), new DescribeGtmRecoveryPlansResponse({}));
60833
60633
  }
60834
60634
 
60835
60635
  /**
@@ -60883,12 +60683,7 @@ export default class Client extends OpenApi {
60883
60683
  reqBodyType: "formData",
60884
60684
  bodyType: "json",
60885
60685
  });
60886
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60887
- return $dara.cast<DescribeInstanceDomainsResponse>(await this.callApi(params, req, runtime), new DescribeInstanceDomainsResponse({}));
60888
- } else {
60889
- return $dara.cast<DescribeInstanceDomainsResponse>(await this.execute(params, req, runtime), new DescribeInstanceDomainsResponse({}));
60890
- }
60891
-
60686
+ return $dara.cast<DescribeInstanceDomainsResponse>(await this.callApi(params, req, runtime), new DescribeInstanceDomainsResponse({}));
60892
60687
  }
60893
60688
 
60894
60689
  /**
@@ -60960,12 +60755,7 @@ export default class Client extends OpenApi {
60960
60755
  reqBodyType: "formData",
60961
60756
  bodyType: "json",
60962
60757
  });
60963
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
60964
- return $dara.cast<DescribeInternetDnsLogsResponse>(await this.callApi(params, req, runtime), new DescribeInternetDnsLogsResponse({}));
60965
- } else {
60966
- return $dara.cast<DescribeInternetDnsLogsResponse>(await this.execute(params, req, runtime), new DescribeInternetDnsLogsResponse({}));
60967
- }
60968
-
60758
+ return $dara.cast<DescribeInternetDnsLogsResponse>(await this.callApi(params, req, runtime), new DescribeInternetDnsLogsResponse({}));
60969
60759
  }
60970
60760
 
60971
60761
  /**
@@ -61033,12 +60823,7 @@ export default class Client extends OpenApi {
61033
60823
  reqBodyType: "formData",
61034
60824
  bodyType: "json",
61035
60825
  });
61036
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61037
- return $dara.cast<DescribeIspFlushCacheInstancesResponse>(await this.callApi(params, req, runtime), new DescribeIspFlushCacheInstancesResponse({}));
61038
- } else {
61039
- return $dara.cast<DescribeIspFlushCacheInstancesResponse>(await this.execute(params, req, runtime), new DescribeIspFlushCacheInstancesResponse({}));
61040
- }
61041
-
60826
+ return $dara.cast<DescribeIspFlushCacheInstancesResponse>(await this.callApi(params, req, runtime), new DescribeIspFlushCacheInstancesResponse({}));
61042
60827
  }
61043
60828
 
61044
60829
  /**
@@ -61080,12 +60865,7 @@ export default class Client extends OpenApi {
61080
60865
  reqBodyType: "formData",
61081
60866
  bodyType: "json",
61082
60867
  });
61083
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61084
- return $dara.cast<DescribeIspFlushCacheRemainQuotaResponse>(await this.callApi(params, req, runtime), new DescribeIspFlushCacheRemainQuotaResponse({}));
61085
- } else {
61086
- return $dara.cast<DescribeIspFlushCacheRemainQuotaResponse>(await this.execute(params, req, runtime), new DescribeIspFlushCacheRemainQuotaResponse({}));
61087
- }
61088
-
60868
+ return $dara.cast<DescribeIspFlushCacheRemainQuotaResponse>(await this.callApi(params, req, runtime), new DescribeIspFlushCacheRemainQuotaResponse({}));
61089
60869
  }
61090
60870
 
61091
60871
  /**
@@ -61131,12 +60911,7 @@ export default class Client extends OpenApi {
61131
60911
  reqBodyType: "formData",
61132
60912
  bodyType: "json",
61133
60913
  });
61134
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61135
- return $dara.cast<DescribeIspFlushCacheTaskResponse>(await this.callApi(params, req, runtime), new DescribeIspFlushCacheTaskResponse({}));
61136
- } else {
61137
- return $dara.cast<DescribeIspFlushCacheTaskResponse>(await this.execute(params, req, runtime), new DescribeIspFlushCacheTaskResponse({}));
61138
- }
61139
-
60914
+ return $dara.cast<DescribeIspFlushCacheTaskResponse>(await this.callApi(params, req, runtime), new DescribeIspFlushCacheTaskResponse({}));
61140
60915
  }
61141
60916
 
61142
60917
  /**
@@ -61206,12 +60981,7 @@ export default class Client extends OpenApi {
61206
60981
  reqBodyType: "formData",
61207
60982
  bodyType: "json",
61208
60983
  });
61209
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61210
- return $dara.cast<DescribeIspFlushCacheTasksResponse>(await this.callApi(params, req, runtime), new DescribeIspFlushCacheTasksResponse({}));
61211
- } else {
61212
- return $dara.cast<DescribeIspFlushCacheTasksResponse>(await this.execute(params, req, runtime), new DescribeIspFlushCacheTasksResponse({}));
61213
- }
61214
-
60984
+ return $dara.cast<DescribeIspFlushCacheTasksResponse>(await this.callApi(params, req, runtime), new DescribeIspFlushCacheTasksResponse({}));
61215
60985
  }
61216
60986
 
61217
60987
  /**
@@ -61261,12 +61031,7 @@ export default class Client extends OpenApi {
61261
61031
  reqBodyType: "formData",
61262
61032
  bodyType: "json",
61263
61033
  });
61264
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61265
- return $dara.cast<DescribePdnsAccountSummaryResponse>(await this.callApi(params, req, runtime), new DescribePdnsAccountSummaryResponse({}));
61266
- } else {
61267
- return $dara.cast<DescribePdnsAccountSummaryResponse>(await this.execute(params, req, runtime), new DescribePdnsAccountSummaryResponse({}));
61268
- }
61269
-
61034
+ return $dara.cast<DescribePdnsAccountSummaryResponse>(await this.callApi(params, req, runtime), new DescribePdnsAccountSummaryResponse({}));
61270
61035
  }
61271
61036
 
61272
61037
  /**
@@ -61316,12 +61081,7 @@ export default class Client extends OpenApi {
61316
61081
  reqBodyType: "formData",
61317
61082
  bodyType: "json",
61318
61083
  });
61319
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61320
- return $dara.cast<DescribePdnsAppKeyResponse>(await this.callApi(params, req, runtime), new DescribePdnsAppKeyResponse({}));
61321
- } else {
61322
- return $dara.cast<DescribePdnsAppKeyResponse>(await this.execute(params, req, runtime), new DescribePdnsAppKeyResponse({}));
61323
- }
61324
-
61084
+ return $dara.cast<DescribePdnsAppKeyResponse>(await this.callApi(params, req, runtime), new DescribePdnsAppKeyResponse({}));
61325
61085
  }
61326
61086
 
61327
61087
  /**
@@ -61363,12 +61123,7 @@ export default class Client extends OpenApi {
61363
61123
  reqBodyType: "formData",
61364
61124
  bodyType: "json",
61365
61125
  });
61366
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61367
- return $dara.cast<DescribePdnsAppKeysResponse>(await this.callApi(params, req, runtime), new DescribePdnsAppKeysResponse({}));
61368
- } else {
61369
- return $dara.cast<DescribePdnsAppKeysResponse>(await this.execute(params, req, runtime), new DescribePdnsAppKeysResponse({}));
61370
- }
61371
-
61126
+ return $dara.cast<DescribePdnsAppKeysResponse>(await this.callApi(params, req, runtime), new DescribePdnsAppKeysResponse({}));
61372
61127
  }
61373
61128
 
61374
61129
  /**
@@ -61434,12 +61189,7 @@ export default class Client extends OpenApi {
61434
61189
  reqBodyType: "formData",
61435
61190
  bodyType: "json",
61436
61191
  });
61437
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61438
- return $dara.cast<DescribePdnsOperateLogsResponse>(await this.callApi(params, req, runtime), new DescribePdnsOperateLogsResponse({}));
61439
- } else {
61440
- return $dara.cast<DescribePdnsOperateLogsResponse>(await this.execute(params, req, runtime), new DescribePdnsOperateLogsResponse({}));
61441
- }
61442
-
61192
+ return $dara.cast<DescribePdnsOperateLogsResponse>(await this.callApi(params, req, runtime), new DescribePdnsOperateLogsResponse({}));
61443
61193
  }
61444
61194
 
61445
61195
  /**
@@ -61501,12 +61251,7 @@ export default class Client extends OpenApi {
61501
61251
  reqBodyType: "formData",
61502
61252
  bodyType: "json",
61503
61253
  });
61504
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61505
- return $dara.cast<DescribePdnsRequestStatisticResponse>(await this.callApi(params, req, runtime), new DescribePdnsRequestStatisticResponse({}));
61506
- } else {
61507
- return $dara.cast<DescribePdnsRequestStatisticResponse>(await this.execute(params, req, runtime), new DescribePdnsRequestStatisticResponse({}));
61508
- }
61509
-
61254
+ return $dara.cast<DescribePdnsRequestStatisticResponse>(await this.callApi(params, req, runtime), new DescribePdnsRequestStatisticResponse({}));
61510
61255
  }
61511
61256
 
61512
61257
  /**
@@ -61576,12 +61321,7 @@ export default class Client extends OpenApi {
61576
61321
  reqBodyType: "formData",
61577
61322
  bodyType: "json",
61578
61323
  });
61579
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61580
- return $dara.cast<DescribePdnsRequestStatisticsResponse>(await this.callApi(params, req, runtime), new DescribePdnsRequestStatisticsResponse({}));
61581
- } else {
61582
- return $dara.cast<DescribePdnsRequestStatisticsResponse>(await this.execute(params, req, runtime), new DescribePdnsRequestStatisticsResponse({}));
61583
- }
61584
-
61324
+ return $dara.cast<DescribePdnsRequestStatisticsResponse>(await this.callApi(params, req, runtime), new DescribePdnsRequestStatisticsResponse({}));
61585
61325
  }
61586
61326
 
61587
61327
  /**
@@ -61655,12 +61395,7 @@ export default class Client extends OpenApi {
61655
61395
  reqBodyType: "formData",
61656
61396
  bodyType: "json",
61657
61397
  });
61658
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61659
- return $dara.cast<DescribePdnsThreatLogsResponse>(await this.callApi(params, req, runtime), new DescribePdnsThreatLogsResponse({}));
61660
- } else {
61661
- return $dara.cast<DescribePdnsThreatLogsResponse>(await this.execute(params, req, runtime), new DescribePdnsThreatLogsResponse({}));
61662
- }
61663
-
61398
+ return $dara.cast<DescribePdnsThreatLogsResponse>(await this.callApi(params, req, runtime), new DescribePdnsThreatLogsResponse({}));
61664
61399
  }
61665
61400
 
61666
61401
  /**
@@ -61714,12 +61449,7 @@ export default class Client extends OpenApi {
61714
61449
  reqBodyType: "formData",
61715
61450
  bodyType: "json",
61716
61451
  });
61717
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61718
- return $dara.cast<DescribePdnsThreatStatisticResponse>(await this.callApi(params, req, runtime), new DescribePdnsThreatStatisticResponse({}));
61719
- } else {
61720
- return $dara.cast<DescribePdnsThreatStatisticResponse>(await this.execute(params, req, runtime), new DescribePdnsThreatStatisticResponse({}));
61721
- }
61722
-
61452
+ return $dara.cast<DescribePdnsThreatStatisticResponse>(await this.callApi(params, req, runtime), new DescribePdnsThreatStatisticResponse({}));
61723
61453
  }
61724
61454
 
61725
61455
  /**
@@ -61809,12 +61539,7 @@ export default class Client extends OpenApi {
61809
61539
  reqBodyType: "formData",
61810
61540
  bodyType: "json",
61811
61541
  });
61812
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61813
- return $dara.cast<DescribePdnsThreatStatisticsResponse>(await this.callApi(params, req, runtime), new DescribePdnsThreatStatisticsResponse({}));
61814
- } else {
61815
- return $dara.cast<DescribePdnsThreatStatisticsResponse>(await this.execute(params, req, runtime), new DescribePdnsThreatStatisticsResponse({}));
61816
- }
61817
-
61542
+ return $dara.cast<DescribePdnsThreatStatisticsResponse>(await this.callApi(params, req, runtime), new DescribePdnsThreatStatisticsResponse({}));
61818
61543
  }
61819
61544
 
61820
61545
  /**
@@ -61864,12 +61589,7 @@ export default class Client extends OpenApi {
61864
61589
  reqBodyType: "formData",
61865
61590
  bodyType: "json",
61866
61591
  });
61867
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61868
- return $dara.cast<DescribePdnsUdpIpSegmentsResponse>(await this.callApi(params, req, runtime), new DescribePdnsUdpIpSegmentsResponse({}));
61869
- } else {
61870
- return $dara.cast<DescribePdnsUdpIpSegmentsResponse>(await this.execute(params, req, runtime), new DescribePdnsUdpIpSegmentsResponse({}));
61871
- }
61872
-
61592
+ return $dara.cast<DescribePdnsUdpIpSegmentsResponse>(await this.callApi(params, req, runtime), new DescribePdnsUdpIpSegmentsResponse({}));
61873
61593
  }
61874
61594
 
61875
61595
  /**
@@ -61911,12 +61631,7 @@ export default class Client extends OpenApi {
61911
61631
  reqBodyType: "formData",
61912
61632
  bodyType: "json",
61913
61633
  });
61914
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61915
- return $dara.cast<DescribePdnsUserInfoResponse>(await this.callApi(params, req, runtime), new DescribePdnsUserInfoResponse({}));
61916
- } else {
61917
- return $dara.cast<DescribePdnsUserInfoResponse>(await this.execute(params, req, runtime), new DescribePdnsUserInfoResponse({}));
61918
- }
61919
-
61634
+ return $dara.cast<DescribePdnsUserInfoResponse>(await this.callApi(params, req, runtime), new DescribePdnsUserInfoResponse({}));
61920
61635
  }
61921
61636
 
61922
61637
  /**
@@ -61986,12 +61701,7 @@ export default class Client extends OpenApi {
61986
61701
  reqBodyType: "formData",
61987
61702
  bodyType: "json",
61988
61703
  });
61989
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
61990
- return $dara.cast<DescribeRecordLogsResponse>(await this.callApi(params, req, runtime), new DescribeRecordLogsResponse({}));
61991
- } else {
61992
- return $dara.cast<DescribeRecordLogsResponse>(await this.execute(params, req, runtime), new DescribeRecordLogsResponse({}));
61993
- }
61994
-
61704
+ return $dara.cast<DescribeRecordLogsResponse>(await this.callApi(params, req, runtime), new DescribeRecordLogsResponse({}));
61995
61705
  }
61996
61706
 
61997
61707
  /**
@@ -62073,12 +61783,7 @@ export default class Client extends OpenApi {
62073
61783
  reqBodyType: "formData",
62074
61784
  bodyType: "json",
62075
61785
  });
62076
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62077
- return $dara.cast<DescribeRecordResolveStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeRecordResolveStatisticsSummaryResponse({}));
62078
- } else {
62079
- return $dara.cast<DescribeRecordResolveStatisticsSummaryResponse>(await this.execute(params, req, runtime), new DescribeRecordResolveStatisticsSummaryResponse({}));
62080
- }
62081
-
61786
+ return $dara.cast<DescribeRecordResolveStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeRecordResolveStatisticsSummaryResponse({}));
62082
61787
  }
62083
61788
 
62084
61789
  /**
@@ -62143,12 +61848,7 @@ export default class Client extends OpenApi {
62143
61848
  reqBodyType: "formData",
62144
61849
  bodyType: "json",
62145
61850
  });
62146
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62147
- return $dara.cast<DescribeRecordStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeRecordStatisticsResponse({}));
62148
- } else {
62149
- return $dara.cast<DescribeRecordStatisticsResponse>(await this.execute(params, req, runtime), new DescribeRecordStatisticsResponse({}));
62150
- }
62151
-
61851
+ return $dara.cast<DescribeRecordStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeRecordStatisticsResponse({}));
62152
61852
  }
62153
61853
 
62154
61854
  /**
@@ -62229,12 +61929,7 @@ export default class Client extends OpenApi {
62229
61929
  reqBodyType: "formData",
62230
61930
  bodyType: "json",
62231
61931
  });
62232
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62233
- return $dara.cast<DescribeRecordStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeRecordStatisticsSummaryResponse({}));
62234
- } else {
62235
- return $dara.cast<DescribeRecordStatisticsSummaryResponse>(await this.execute(params, req, runtime), new DescribeRecordStatisticsSummaryResponse({}));
62236
- }
62237
-
61932
+ return $dara.cast<DescribeRecordStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new DescribeRecordStatisticsSummaryResponse({}));
62238
61933
  }
62239
61934
 
62240
61935
  /**
@@ -62304,12 +61999,7 @@ export default class Client extends OpenApi {
62304
61999
  reqBodyType: "formData",
62305
62000
  bodyType: "json",
62306
62001
  });
62307
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62308
- return $dara.cast<DescribeSubDomainRecordsResponse>(await this.callApi(params, req, runtime), new DescribeSubDomainRecordsResponse({}));
62309
- } else {
62310
- return $dara.cast<DescribeSubDomainRecordsResponse>(await this.execute(params, req, runtime), new DescribeSubDomainRecordsResponse({}));
62311
- }
62312
-
62002
+ return $dara.cast<DescribeSubDomainRecordsResponse>(await this.callApi(params, req, runtime), new DescribeSubDomainRecordsResponse({}));
62313
62003
  }
62314
62004
 
62315
62005
  /**
@@ -62357,12 +62047,7 @@ export default class Client extends OpenApi {
62357
62047
  reqBodyType: "formData",
62358
62048
  bodyType: "json",
62359
62049
  });
62360
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62361
- return $dara.cast<DescribeSupportLinesResponse>(await this.callApi(params, req, runtime), new DescribeSupportLinesResponse({}));
62362
- } else {
62363
- return $dara.cast<DescribeSupportLinesResponse>(await this.execute(params, req, runtime), new DescribeSupportLinesResponse({}));
62364
- }
62365
-
62050
+ return $dara.cast<DescribeSupportLinesResponse>(await this.callApi(params, req, runtime), new DescribeSupportLinesResponse({}));
62366
62051
  }
62367
62052
 
62368
62053
  /**
@@ -62414,12 +62099,7 @@ export default class Client extends OpenApi {
62414
62099
  reqBodyType: "formData",
62415
62100
  bodyType: "json",
62416
62101
  });
62417
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62418
- return $dara.cast<DescribeTagsResponse>(await this.callApi(params, req, runtime), new DescribeTagsResponse({}));
62419
- } else {
62420
- return $dara.cast<DescribeTagsResponse>(await this.execute(params, req, runtime), new DescribeTagsResponse({}));
62421
- }
62422
-
62102
+ return $dara.cast<DescribeTagsResponse>(await this.callApi(params, req, runtime), new DescribeTagsResponse({}));
62423
62103
  }
62424
62104
 
62425
62105
  /**
@@ -62485,12 +62165,7 @@ export default class Client extends OpenApi {
62485
62165
  reqBodyType: "formData",
62486
62166
  bodyType: "json",
62487
62167
  });
62488
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62489
- return $dara.cast<DescribeTransferDomainsResponse>(await this.callApi(params, req, runtime), new DescribeTransferDomainsResponse({}));
62490
- } else {
62491
- return $dara.cast<DescribeTransferDomainsResponse>(await this.execute(params, req, runtime), new DescribeTransferDomainsResponse({}));
62492
- }
62493
-
62168
+ return $dara.cast<DescribeTransferDomainsResponse>(await this.callApi(params, req, runtime), new DescribeTransferDomainsResponse({}));
62494
62169
  }
62495
62170
 
62496
62171
  /**
@@ -62536,12 +62211,7 @@ export default class Client extends OpenApi {
62536
62211
  reqBodyType: "formData",
62537
62212
  bodyType: "json",
62538
62213
  });
62539
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62540
- return $dara.cast<ExecuteGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new ExecuteGtmRecoveryPlanResponse({}));
62541
- } else {
62542
- return $dara.cast<ExecuteGtmRecoveryPlanResponse>(await this.execute(params, req, runtime), new ExecuteGtmRecoveryPlanResponse({}));
62543
- }
62544
-
62214
+ return $dara.cast<ExecuteGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new ExecuteGtmRecoveryPlanResponse({}));
62545
62215
  }
62546
62216
 
62547
62217
  /**
@@ -62591,12 +62261,7 @@ export default class Client extends OpenApi {
62591
62261
  reqBodyType: "formData",
62592
62262
  bodyType: "json",
62593
62263
  });
62594
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62595
- return $dara.cast<GetMainDomainNameResponse>(await this.callApi(params, req, runtime), new GetMainDomainNameResponse({}));
62596
- } else {
62597
- return $dara.cast<GetMainDomainNameResponse>(await this.execute(params, req, runtime), new GetMainDomainNameResponse({}));
62598
- }
62599
-
62264
+ return $dara.cast<GetMainDomainNameResponse>(await this.callApi(params, req, runtime), new GetMainDomainNameResponse({}));
62600
62265
  }
62601
62266
 
62602
62267
  /**
@@ -62650,12 +62315,7 @@ export default class Client extends OpenApi {
62650
62315
  reqBodyType: "formData",
62651
62316
  bodyType: "json",
62652
62317
  });
62653
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62654
- return $dara.cast<GetTxtRecordForVerifyResponse>(await this.callApi(params, req, runtime), new GetTxtRecordForVerifyResponse({}));
62655
- } else {
62656
- return $dara.cast<GetTxtRecordForVerifyResponse>(await this.execute(params, req, runtime), new GetTxtRecordForVerifyResponse({}));
62657
- }
62658
-
62318
+ return $dara.cast<GetTxtRecordForVerifyResponse>(await this.callApi(params, req, runtime), new GetTxtRecordForVerifyResponse({}));
62659
62319
  }
62660
62320
 
62661
62321
  /**
@@ -62725,12 +62385,7 @@ export default class Client extends OpenApi {
62725
62385
  reqBodyType: "formData",
62726
62386
  bodyType: "json",
62727
62387
  });
62728
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62729
- return $dara.cast<ListCloudGtmAddressPoolsResponse>(await this.callApi(params, req, runtime), new ListCloudGtmAddressPoolsResponse({}));
62730
- } else {
62731
- return $dara.cast<ListCloudGtmAddressPoolsResponse>(await this.execute(params, req, runtime), new ListCloudGtmAddressPoolsResponse({}));
62732
- }
62733
-
62388
+ return $dara.cast<ListCloudGtmAddressPoolsResponse>(await this.callApi(params, req, runtime), new ListCloudGtmAddressPoolsResponse({}));
62734
62389
  }
62735
62390
 
62736
62391
  /**
@@ -62812,12 +62467,7 @@ export default class Client extends OpenApi {
62812
62467
  reqBodyType: "formData",
62813
62468
  bodyType: "json",
62814
62469
  });
62815
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62816
- return $dara.cast<ListCloudGtmAddressesResponse>(await this.callApi(params, req, runtime), new ListCloudGtmAddressesResponse({}));
62817
- } else {
62818
- return $dara.cast<ListCloudGtmAddressesResponse>(await this.execute(params, req, runtime), new ListCloudGtmAddressesResponse({}));
62819
- }
62820
-
62470
+ return $dara.cast<ListCloudGtmAddressesResponse>(await this.callApi(params, req, runtime), new ListCloudGtmAddressesResponse({}));
62821
62471
  }
62822
62472
 
62823
62473
  /**
@@ -62885,12 +62535,7 @@ export default class Client extends OpenApi {
62885
62535
  reqBodyType: "formData",
62886
62536
  bodyType: "json",
62887
62537
  });
62888
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62889
- return $dara.cast<ListCloudGtmAlertLogsResponse>(await this.callApi(params, req, runtime), new ListCloudGtmAlertLogsResponse({}));
62890
- } else {
62891
- return $dara.cast<ListCloudGtmAlertLogsResponse>(await this.execute(params, req, runtime), new ListCloudGtmAlertLogsResponse({}));
62892
- }
62893
-
62538
+ return $dara.cast<ListCloudGtmAlertLogsResponse>(await this.callApi(params, req, runtime), new ListCloudGtmAlertLogsResponse({}));
62894
62539
  }
62895
62540
 
62896
62541
  /**
@@ -62928,12 +62573,7 @@ export default class Client extends OpenApi {
62928
62573
  reqBodyType: "formData",
62929
62574
  bodyType: "json",
62930
62575
  });
62931
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
62932
- return $dara.cast<ListCloudGtmAvailableAlertGroupsResponse>(await this.callApi(params, req, runtime), new ListCloudGtmAvailableAlertGroupsResponse({}));
62933
- } else {
62934
- return $dara.cast<ListCloudGtmAvailableAlertGroupsResponse>(await this.execute(params, req, runtime), new ListCloudGtmAvailableAlertGroupsResponse({}));
62935
- }
62936
-
62576
+ return $dara.cast<ListCloudGtmAvailableAlertGroupsResponse>(await this.callApi(params, req, runtime), new ListCloudGtmAvailableAlertGroupsResponse({}));
62937
62577
  }
62938
62578
 
62939
62579
  /**
@@ -63005,12 +62645,7 @@ export default class Client extends OpenApi {
63005
62645
  reqBodyType: "formData",
63006
62646
  bodyType: "json",
63007
62647
  });
63008
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63009
- return $dara.cast<ListCloudGtmInstanceConfigsResponse>(await this.callApi(params, req, runtime), new ListCloudGtmInstanceConfigsResponse({}));
63010
- } else {
63011
- return $dara.cast<ListCloudGtmInstanceConfigsResponse>(await this.execute(params, req, runtime), new ListCloudGtmInstanceConfigsResponse({}));
63012
- }
63013
-
62648
+ return $dara.cast<ListCloudGtmInstanceConfigsResponse>(await this.callApi(params, req, runtime), new ListCloudGtmInstanceConfigsResponse({}));
63014
62649
  }
63015
62650
 
63016
62651
  /**
@@ -63072,12 +62707,7 @@ export default class Client extends OpenApi {
63072
62707
  reqBodyType: "formData",
63073
62708
  bodyType: "json",
63074
62709
  });
63075
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63076
- return $dara.cast<ListCloudGtmInstancesResponse>(await this.callApi(params, req, runtime), new ListCloudGtmInstancesResponse({}));
63077
- } else {
63078
- return $dara.cast<ListCloudGtmInstancesResponse>(await this.execute(params, req, runtime), new ListCloudGtmInstancesResponse({}));
63079
- }
63080
-
62710
+ return $dara.cast<ListCloudGtmInstancesResponse>(await this.callApi(params, req, runtime), new ListCloudGtmInstancesResponse({}));
63081
62711
  }
63082
62712
 
63083
62713
  /**
@@ -63119,12 +62749,7 @@ export default class Client extends OpenApi {
63119
62749
  reqBodyType: "formData",
63120
62750
  bodyType: "json",
63121
62751
  });
63122
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63123
- return $dara.cast<ListCloudGtmMonitorNodesResponse>(await this.callApi(params, req, runtime), new ListCloudGtmMonitorNodesResponse({}));
63124
- } else {
63125
- return $dara.cast<ListCloudGtmMonitorNodesResponse>(await this.execute(params, req, runtime), new ListCloudGtmMonitorNodesResponse({}));
63126
- }
63127
-
62752
+ return $dara.cast<ListCloudGtmMonitorNodesResponse>(await this.callApi(params, req, runtime), new ListCloudGtmMonitorNodesResponse({}));
63128
62753
  }
63129
62754
 
63130
62755
  /**
@@ -63186,12 +62811,7 @@ export default class Client extends OpenApi {
63186
62811
  reqBodyType: "formData",
63187
62812
  bodyType: "json",
63188
62813
  });
63189
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63190
- return $dara.cast<ListCloudGtmMonitorTemplatesResponse>(await this.callApi(params, req, runtime), new ListCloudGtmMonitorTemplatesResponse({}));
63191
- } else {
63192
- return $dara.cast<ListCloudGtmMonitorTemplatesResponse>(await this.execute(params, req, runtime), new ListCloudGtmMonitorTemplatesResponse({}));
63193
- }
63194
-
62814
+ return $dara.cast<ListCloudGtmMonitorTemplatesResponse>(await this.callApi(params, req, runtime), new ListCloudGtmMonitorTemplatesResponse({}));
63195
62815
  }
63196
62816
 
63197
62817
  /**
@@ -63206,7 +62826,7 @@ export default class Client extends OpenApi {
63206
62826
  }
63207
62827
 
63208
62828
  /**
63209
- * Queries the tags that are added to a specified resource.
62829
+ * Queries resources by tag.
63210
62830
  *
63211
62831
  * @remarks
63212
62832
  * Set ResourceId.N or Tag.N that consists of Tag.N.Key and Tag.N.Value in the request to specify the object to be queried.
@@ -63255,16 +62875,11 @@ export default class Client extends OpenApi {
63255
62875
  reqBodyType: "formData",
63256
62876
  bodyType: "json",
63257
62877
  });
63258
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63259
- return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
63260
- } else {
63261
- return $dara.cast<ListTagResourcesResponse>(await this.execute(params, req, runtime), new ListTagResourcesResponse({}));
63262
- }
63263
-
62878
+ return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
63264
62879
  }
63265
62880
 
63266
62881
  /**
63267
- * Queries the tags that are added to a specified resource.
62882
+ * Queries resources by tag.
63268
62883
  *
63269
62884
  * @remarks
63270
62885
  * Set ResourceId.N or Tag.N that consists of Tag.N.Key and Tag.N.Value in the request to specify the object to be queried.
@@ -63320,12 +62935,7 @@ export default class Client extends OpenApi {
63320
62935
  reqBodyType: "formData",
63321
62936
  bodyType: "json",
63322
62937
  });
63323
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63324
- return $dara.cast<ModifyHichinaDomainDNSResponse>(await this.callApi(params, req, runtime), new ModifyHichinaDomainDNSResponse({}));
63325
- } else {
63326
- return $dara.cast<ModifyHichinaDomainDNSResponse>(await this.execute(params, req, runtime), new ModifyHichinaDomainDNSResponse({}));
63327
- }
63328
-
62938
+ return $dara.cast<ModifyHichinaDomainDNSResponse>(await this.callApi(params, req, runtime), new ModifyHichinaDomainDNSResponse({}));
63329
62939
  }
63330
62940
 
63331
62941
  /**
@@ -63379,12 +62989,7 @@ export default class Client extends OpenApi {
63379
62989
  reqBodyType: "formData",
63380
62990
  bodyType: "json",
63381
62991
  });
63382
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63383
- return $dara.cast<MoveDomainResourceGroupResponse>(await this.callApi(params, req, runtime), new MoveDomainResourceGroupResponse({}));
63384
- } else {
63385
- return $dara.cast<MoveDomainResourceGroupResponse>(await this.execute(params, req, runtime), new MoveDomainResourceGroupResponse({}));
63386
- }
63387
-
62992
+ return $dara.cast<MoveDomainResourceGroupResponse>(await this.callApi(params, req, runtime), new MoveDomainResourceGroupResponse({}));
63388
62993
  }
63389
62994
 
63390
62995
  /**
@@ -63432,12 +63037,7 @@ export default class Client extends OpenApi {
63432
63037
  reqBodyType: "formData",
63433
63038
  bodyType: "json",
63434
63039
  });
63435
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63436
- return $dara.cast<MoveGtmResourceGroupResponse>(await this.callApi(params, req, runtime), new MoveGtmResourceGroupResponse({}));
63437
- } else {
63438
- return $dara.cast<MoveGtmResourceGroupResponse>(await this.execute(params, req, runtime), new MoveGtmResourceGroupResponse({}));
63439
- }
63440
-
63040
+ return $dara.cast<MoveGtmResourceGroupResponse>(await this.callApi(params, req, runtime), new MoveGtmResourceGroupResponse({}));
63441
63041
  }
63442
63042
 
63443
63043
  /**
@@ -63450,7 +63050,7 @@ export default class Client extends OpenApi {
63450
63050
  }
63451
63051
 
63452
63052
  /**
63453
- * Submits a batch operation task to add or delete multiple domain names or multiple Domain Name System (DNS) records at a time.
63053
+ * Adds or deletes domain names and Domain Name System (DNS) records in batches.
63454
63054
  *
63455
63055
  * @remarks
63456
63056
  * Scenario: You need to execute a large number of tasks related to DNS resolution and you do not have high requirements for efficiency.
@@ -63488,16 +63088,11 @@ export default class Client extends OpenApi {
63488
63088
  reqBodyType: "formData",
63489
63089
  bodyType: "json",
63490
63090
  });
63491
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63492
- return $dara.cast<OperateBatchDomainResponse>(await this.callApi(params, req, runtime), new OperateBatchDomainResponse({}));
63493
- } else {
63494
- return $dara.cast<OperateBatchDomainResponse>(await this.execute(params, req, runtime), new OperateBatchDomainResponse({}));
63495
- }
63496
-
63091
+ return $dara.cast<OperateBatchDomainResponse>(await this.callApi(params, req, runtime), new OperateBatchDomainResponse({}));
63497
63092
  }
63498
63093
 
63499
63094
  /**
63500
- * Submits a batch operation task to add or delete multiple domain names or multiple Domain Name System (DNS) records at a time.
63095
+ * Adds or deletes domain names and Domain Name System (DNS) records in batches.
63501
63096
  *
63502
63097
  * @remarks
63503
63098
  * Scenario: You need to execute a large number of tasks related to DNS resolution and you do not have high requirements for efficiency.
@@ -63542,12 +63137,7 @@ export default class Client extends OpenApi {
63542
63137
  reqBodyType: "formData",
63543
63138
  bodyType: "json",
63544
63139
  });
63545
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63546
- return $dara.cast<PausePdnsServiceResponse>(await this.callApi(params, req, runtime), new PausePdnsServiceResponse({}));
63547
- } else {
63548
- return $dara.cast<PausePdnsServiceResponse>(await this.execute(params, req, runtime), new PausePdnsServiceResponse({}));
63549
- }
63550
-
63140
+ return $dara.cast<PausePdnsServiceResponse>(await this.callApi(params, req, runtime), new PausePdnsServiceResponse({}));
63551
63141
  }
63552
63142
 
63553
63143
  /**
@@ -63601,12 +63191,7 @@ export default class Client extends OpenApi {
63601
63191
  reqBodyType: "formData",
63602
63192
  bodyType: "json",
63603
63193
  });
63604
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63605
- return $dara.cast<PreviewGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new PreviewGtmRecoveryPlanResponse({}));
63606
- } else {
63607
- return $dara.cast<PreviewGtmRecoveryPlanResponse>(await this.execute(params, req, runtime), new PreviewGtmRecoveryPlanResponse({}));
63608
- }
63609
-
63194
+ return $dara.cast<PreviewGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new PreviewGtmRecoveryPlanResponse({}));
63610
63195
  }
63611
63196
 
63612
63197
  /**
@@ -63652,12 +63237,7 @@ export default class Client extends OpenApi {
63652
63237
  reqBodyType: "formData",
63653
63238
  bodyType: "json",
63654
63239
  });
63655
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63656
- return $dara.cast<RemovePdnsAppKeyResponse>(await this.callApi(params, req, runtime), new RemovePdnsAppKeyResponse({}));
63657
- } else {
63658
- return $dara.cast<RemovePdnsAppKeyResponse>(await this.execute(params, req, runtime), new RemovePdnsAppKeyResponse({}));
63659
- }
63660
-
63240
+ return $dara.cast<RemovePdnsAppKeyResponse>(await this.callApi(params, req, runtime), new RemovePdnsAppKeyResponse({}));
63661
63241
  }
63662
63242
 
63663
63243
  /**
@@ -63703,12 +63283,7 @@ export default class Client extends OpenApi {
63703
63283
  reqBodyType: "formData",
63704
63284
  bodyType: "json",
63705
63285
  });
63706
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63707
- return $dara.cast<RemovePdnsUdpIpSegmentResponse>(await this.callApi(params, req, runtime), new RemovePdnsUdpIpSegmentResponse({}));
63708
- } else {
63709
- return $dara.cast<RemovePdnsUdpIpSegmentResponse>(await this.execute(params, req, runtime), new RemovePdnsUdpIpSegmentResponse({}));
63710
- }
63711
-
63286
+ return $dara.cast<RemovePdnsUdpIpSegmentResponse>(await this.callApi(params, req, runtime), new RemovePdnsUdpIpSegmentResponse({}));
63712
63287
  }
63713
63288
 
63714
63289
  /**
@@ -63768,12 +63343,7 @@ export default class Client extends OpenApi {
63768
63343
  reqBodyType: "formData",
63769
63344
  bodyType: "json",
63770
63345
  });
63771
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63772
- return $dara.cast<ReplaceCloudGtmAddressPoolAddressResponse>(await this.callApi(params, req, runtime), new ReplaceCloudGtmAddressPoolAddressResponse({}));
63773
- } else {
63774
- return $dara.cast<ReplaceCloudGtmAddressPoolAddressResponse>(await this.execute(params, req, runtime), new ReplaceCloudGtmAddressPoolAddressResponse({}));
63775
- }
63776
-
63346
+ return $dara.cast<ReplaceCloudGtmAddressPoolAddressResponse>(await this.callApi(params, req, runtime), new ReplaceCloudGtmAddressPoolAddressResponse({}));
63777
63347
  }
63778
63348
 
63779
63349
  /**
@@ -63837,12 +63407,7 @@ export default class Client extends OpenApi {
63837
63407
  reqBodyType: "formData",
63838
63408
  bodyType: "json",
63839
63409
  });
63840
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63841
- return $dara.cast<ReplaceCloudGtmInstanceConfigAddressPoolResponse>(await this.callApi(params, req, runtime), new ReplaceCloudGtmInstanceConfigAddressPoolResponse({}));
63842
- } else {
63843
- return $dara.cast<ReplaceCloudGtmInstanceConfigAddressPoolResponse>(await this.execute(params, req, runtime), new ReplaceCloudGtmInstanceConfigAddressPoolResponse({}));
63844
- }
63845
-
63410
+ return $dara.cast<ReplaceCloudGtmInstanceConfigAddressPoolResponse>(await this.callApi(params, req, runtime), new ReplaceCloudGtmInstanceConfigAddressPoolResponse({}));
63846
63411
  }
63847
63412
 
63848
63413
  /**
@@ -63888,12 +63453,7 @@ export default class Client extends OpenApi {
63888
63453
  reqBodyType: "formData",
63889
63454
  bodyType: "json",
63890
63455
  });
63891
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63892
- return $dara.cast<ResumePdnsServiceResponse>(await this.callApi(params, req, runtime), new ResumePdnsServiceResponse({}));
63893
- } else {
63894
- return $dara.cast<ResumePdnsServiceResponse>(await this.execute(params, req, runtime), new ResumePdnsServiceResponse({}));
63895
- }
63896
-
63456
+ return $dara.cast<ResumePdnsServiceResponse>(await this.callApi(params, req, runtime), new ResumePdnsServiceResponse({}));
63897
63457
  }
63898
63458
 
63899
63459
  /**
@@ -63942,12 +63502,7 @@ export default class Client extends OpenApi {
63942
63502
  reqBodyType: "formData",
63943
63503
  bodyType: "json",
63944
63504
  });
63945
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
63946
- return $dara.cast<RetrieveDomainResponse>(await this.callApi(params, req, runtime), new RetrieveDomainResponse({}));
63947
- } else {
63948
- return $dara.cast<RetrieveDomainResponse>(await this.execute(params, req, runtime), new RetrieveDomainResponse({}));
63949
- }
63950
-
63505
+ return $dara.cast<RetrieveDomainResponse>(await this.callApi(params, req, runtime), new RetrieveDomainResponse({}));
63951
63506
  }
63952
63507
 
63953
63508
  /**
@@ -63996,12 +63551,7 @@ export default class Client extends OpenApi {
63996
63551
  reqBodyType: "formData",
63997
63552
  bodyType: "json",
63998
63553
  });
63999
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64000
- return $dara.cast<RollbackGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new RollbackGtmRecoveryPlanResponse({}));
64001
- } else {
64002
- return $dara.cast<RollbackGtmRecoveryPlanResponse>(await this.execute(params, req, runtime), new RollbackGtmRecoveryPlanResponse({}));
64003
- }
64004
-
63554
+ return $dara.cast<RollbackGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new RollbackGtmRecoveryPlanResponse({}));
64005
63555
  }
64006
63556
 
64007
63557
  /**
@@ -64079,12 +63629,7 @@ export default class Client extends OpenApi {
64079
63629
  reqBodyType: "formData",
64080
63630
  bodyType: "json",
64081
63631
  });
64082
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64083
- return $dara.cast<SearchCloudGtmAddressPoolsResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmAddressPoolsResponse({}));
64084
- } else {
64085
- return $dara.cast<SearchCloudGtmAddressPoolsResponse>(await this.execute(params, req, runtime), new SearchCloudGtmAddressPoolsResponse({}));
64086
- }
64087
-
63632
+ return $dara.cast<SearchCloudGtmAddressPoolsResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmAddressPoolsResponse({}));
64088
63633
  }
64089
63634
 
64090
63635
  /**
@@ -64178,12 +63723,7 @@ export default class Client extends OpenApi {
64178
63723
  reqBodyType: "formData",
64179
63724
  bodyType: "json",
64180
63725
  });
64181
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64182
- return $dara.cast<SearchCloudGtmAddressesResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmAddressesResponse({}));
64183
- } else {
64184
- return $dara.cast<SearchCloudGtmAddressesResponse>(await this.execute(params, req, runtime), new SearchCloudGtmAddressesResponse({}));
64185
- }
64186
-
63726
+ return $dara.cast<SearchCloudGtmAddressesResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmAddressesResponse({}));
64187
63727
  }
64188
63728
 
64189
63729
  /**
@@ -64265,12 +63805,7 @@ export default class Client extends OpenApi {
64265
63805
  reqBodyType: "formData",
64266
63806
  bodyType: "json",
64267
63807
  });
64268
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64269
- return $dara.cast<SearchCloudGtmInstanceConfigsResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmInstanceConfigsResponse({}));
64270
- } else {
64271
- return $dara.cast<SearchCloudGtmInstanceConfigsResponse>(await this.execute(params, req, runtime), new SearchCloudGtmInstanceConfigsResponse({}));
64272
- }
64273
-
63808
+ return $dara.cast<SearchCloudGtmInstanceConfigsResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmInstanceConfigsResponse({}));
64274
63809
  }
64275
63810
 
64276
63811
  /**
@@ -64332,12 +63867,7 @@ export default class Client extends OpenApi {
64332
63867
  reqBodyType: "formData",
64333
63868
  bodyType: "json",
64334
63869
  });
64335
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64336
- return $dara.cast<SearchCloudGtmInstancesResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmInstancesResponse({}));
64337
- } else {
64338
- return $dara.cast<SearchCloudGtmInstancesResponse>(await this.execute(params, req, runtime), new SearchCloudGtmInstancesResponse({}));
64339
- }
64340
-
63870
+ return $dara.cast<SearchCloudGtmInstancesResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmInstancesResponse({}));
64341
63871
  }
64342
63872
 
64343
63873
  /**
@@ -64399,12 +63929,7 @@ export default class Client extends OpenApi {
64399
63929
  reqBodyType: "formData",
64400
63930
  bodyType: "json",
64401
63931
  });
64402
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64403
- return $dara.cast<SearchCloudGtmMonitorTemplatesResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmMonitorTemplatesResponse({}));
64404
- } else {
64405
- return $dara.cast<SearchCloudGtmMonitorTemplatesResponse>(await this.execute(params, req, runtime), new SearchCloudGtmMonitorTemplatesResponse({}));
64406
- }
64407
-
63932
+ return $dara.cast<SearchCloudGtmMonitorTemplatesResponse>(await this.callApi(params, req, runtime), new SearchCloudGtmMonitorTemplatesResponse({}));
64408
63933
  }
64409
63934
 
64410
63935
  /**
@@ -64470,12 +63995,7 @@ export default class Client extends OpenApi {
64470
63995
  reqBodyType: "formData",
64471
63996
  bodyType: "json",
64472
63997
  });
64473
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64474
- return $dara.cast<SetDNSSLBStatusResponse>(await this.callApi(params, req, runtime), new SetDNSSLBStatusResponse({}));
64475
- } else {
64476
- return $dara.cast<SetDNSSLBStatusResponse>(await this.execute(params, req, runtime), new SetDNSSLBStatusResponse({}));
64477
- }
64478
-
63998
+ return $dara.cast<SetDNSSLBStatusResponse>(await this.callApi(params, req, runtime), new SetDNSSLBStatusResponse({}));
64479
63999
  }
64480
64000
 
64481
64001
  /**
@@ -64528,12 +64048,7 @@ export default class Client extends OpenApi {
64528
64048
  reqBodyType: "formData",
64529
64049
  bodyType: "json",
64530
64050
  });
64531
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64532
- return $dara.cast<SetDnsGtmAccessModeResponse>(await this.callApi(params, req, runtime), new SetDnsGtmAccessModeResponse({}));
64533
- } else {
64534
- return $dara.cast<SetDnsGtmAccessModeResponse>(await this.execute(params, req, runtime), new SetDnsGtmAccessModeResponse({}));
64535
- }
64536
-
64051
+ return $dara.cast<SetDnsGtmAccessModeResponse>(await this.callApi(params, req, runtime), new SetDnsGtmAccessModeResponse({}));
64537
64052
  }
64538
64053
 
64539
64054
  /**
@@ -64586,12 +64101,7 @@ export default class Client extends OpenApi {
64586
64101
  reqBodyType: "formData",
64587
64102
  bodyType: "json",
64588
64103
  });
64589
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64590
- return $dara.cast<SetDnsGtmMonitorStatusResponse>(await this.callApi(params, req, runtime), new SetDnsGtmMonitorStatusResponse({}));
64591
- } else {
64592
- return $dara.cast<SetDnsGtmMonitorStatusResponse>(await this.execute(params, req, runtime), new SetDnsGtmMonitorStatusResponse({}));
64593
- }
64594
-
64104
+ return $dara.cast<SetDnsGtmMonitorStatusResponse>(await this.callApi(params, req, runtime), new SetDnsGtmMonitorStatusResponse({}));
64595
64105
  }
64596
64106
 
64597
64107
  /**
@@ -64641,12 +64151,7 @@ export default class Client extends OpenApi {
64641
64151
  reqBodyType: "formData",
64642
64152
  bodyType: "json",
64643
64153
  });
64644
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64645
- return $dara.cast<SetDomainDnssecStatusResponse>(await this.callApi(params, req, runtime), new SetDomainDnssecStatusResponse({}));
64646
- } else {
64647
- return $dara.cast<SetDomainDnssecStatusResponse>(await this.execute(params, req, runtime), new SetDomainDnssecStatusResponse({}));
64648
- }
64649
-
64154
+ return $dara.cast<SetDomainDnssecStatusResponse>(await this.callApi(params, req, runtime), new SetDomainDnssecStatusResponse({}));
64650
64155
  }
64651
64156
 
64652
64157
  /**
@@ -64700,12 +64205,7 @@ export default class Client extends OpenApi {
64700
64205
  reqBodyType: "formData",
64701
64206
  bodyType: "json",
64702
64207
  });
64703
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64704
- return $dara.cast<SetDomainRecordStatusResponse>(await this.callApi(params, req, runtime), new SetDomainRecordStatusResponse({}));
64705
- } else {
64706
- return $dara.cast<SetDomainRecordStatusResponse>(await this.execute(params, req, runtime), new SetDomainRecordStatusResponse({}));
64707
- }
64708
-
64208
+ return $dara.cast<SetDomainRecordStatusResponse>(await this.callApi(params, req, runtime), new SetDomainRecordStatusResponse({}));
64709
64209
  }
64710
64210
 
64711
64211
  /**
@@ -64755,12 +64255,7 @@ export default class Client extends OpenApi {
64755
64255
  reqBodyType: "formData",
64756
64256
  bodyType: "json",
64757
64257
  });
64758
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64759
- return $dara.cast<SetGtmAccessModeResponse>(await this.callApi(params, req, runtime), new SetGtmAccessModeResponse({}));
64760
- } else {
64761
- return $dara.cast<SetGtmAccessModeResponse>(await this.execute(params, req, runtime), new SetGtmAccessModeResponse({}));
64762
- }
64763
-
64258
+ return $dara.cast<SetGtmAccessModeResponse>(await this.callApi(params, req, runtime), new SetGtmAccessModeResponse({}));
64764
64259
  }
64765
64260
 
64766
64261
  /**
@@ -64808,12 +64303,7 @@ export default class Client extends OpenApi {
64808
64303
  reqBodyType: "formData",
64809
64304
  bodyType: "json",
64810
64305
  });
64811
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64812
- return $dara.cast<SetGtmMonitorStatusResponse>(await this.callApi(params, req, runtime), new SetGtmMonitorStatusResponse({}));
64813
- } else {
64814
- return $dara.cast<SetGtmMonitorStatusResponse>(await this.execute(params, req, runtime), new SetGtmMonitorStatusResponse({}));
64815
- }
64816
-
64306
+ return $dara.cast<SetGtmMonitorStatusResponse>(await this.callApi(params, req, runtime), new SetGtmMonitorStatusResponse({}));
64817
64307
  }
64818
64308
 
64819
64309
  /**
@@ -64865,12 +64355,7 @@ export default class Client extends OpenApi {
64865
64355
  reqBodyType: "formData",
64866
64356
  bodyType: "json",
64867
64357
  });
64868
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64869
- return $dara.cast<SubmitIspFlushCacheTaskResponse>(await this.callApi(params, req, runtime), new SubmitIspFlushCacheTaskResponse({}));
64870
- } else {
64871
- return $dara.cast<SubmitIspFlushCacheTaskResponse>(await this.execute(params, req, runtime), new SubmitIspFlushCacheTaskResponse({}));
64872
- }
64873
-
64358
+ return $dara.cast<SubmitIspFlushCacheTaskResponse>(await this.callApi(params, req, runtime), new SubmitIspFlushCacheTaskResponse({}));
64874
64359
  }
64875
64360
 
64876
64361
  /**
@@ -64920,12 +64405,7 @@ export default class Client extends OpenApi {
64920
64405
  reqBodyType: "formData",
64921
64406
  bodyType: "json",
64922
64407
  });
64923
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64924
- return $dara.cast<SwitchDnsGtmInstanceStrategyModeResponse>(await this.callApi(params, req, runtime), new SwitchDnsGtmInstanceStrategyModeResponse({}));
64925
- } else {
64926
- return $dara.cast<SwitchDnsGtmInstanceStrategyModeResponse>(await this.execute(params, req, runtime), new SwitchDnsGtmInstanceStrategyModeResponse({}));
64927
- }
64928
-
64408
+ return $dara.cast<SwitchDnsGtmInstanceStrategyModeResponse>(await this.callApi(params, req, runtime), new SwitchDnsGtmInstanceStrategyModeResponse({}));
64929
64409
  }
64930
64410
 
64931
64411
  /**
@@ -64979,12 +64459,7 @@ export default class Client extends OpenApi {
64979
64459
  reqBodyType: "formData",
64980
64460
  bodyType: "json",
64981
64461
  });
64982
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
64983
- return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
64984
- } else {
64985
- return $dara.cast<TagResourcesResponse>(await this.execute(params, req, runtime), new TagResourcesResponse({}));
64986
- }
64987
-
64462
+ return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
64988
64463
  }
64989
64464
 
64990
64465
  /**
@@ -65038,12 +64513,7 @@ export default class Client extends OpenApi {
65038
64513
  reqBodyType: "formData",
65039
64514
  bodyType: "json",
65040
64515
  });
65041
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65042
- return $dara.cast<TransferDomainResponse>(await this.callApi(params, req, runtime), new TransferDomainResponse({}));
65043
- } else {
65044
- return $dara.cast<TransferDomainResponse>(await this.execute(params, req, runtime), new TransferDomainResponse({}));
65045
- }
65046
-
64516
+ return $dara.cast<TransferDomainResponse>(await this.callApi(params, req, runtime), new TransferDomainResponse({}));
65047
64517
  }
65048
64518
 
65049
64519
  /**
@@ -65097,12 +64567,7 @@ export default class Client extends OpenApi {
65097
64567
  reqBodyType: "formData",
65098
64568
  bodyType: "json",
65099
64569
  });
65100
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65101
- return $dara.cast<UnbindInstanceDomainsResponse>(await this.callApi(params, req, runtime), new UnbindInstanceDomainsResponse({}));
65102
- } else {
65103
- return $dara.cast<UnbindInstanceDomainsResponse>(await this.execute(params, req, runtime), new UnbindInstanceDomainsResponse({}));
65104
- }
65105
-
64570
+ return $dara.cast<UnbindInstanceDomainsResponse>(await this.callApi(params, req, runtime), new UnbindInstanceDomainsResponse({}));
65106
64571
  }
65107
64572
 
65108
64573
  /**
@@ -65164,12 +64629,7 @@ export default class Client extends OpenApi {
65164
64629
  reqBodyType: "formData",
65165
64630
  bodyType: "json",
65166
64631
  });
65167
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65168
- return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
65169
- } else {
65170
- return $dara.cast<UntagResourcesResponse>(await this.execute(params, req, runtime), new UntagResourcesResponse({}));
65171
- }
65172
-
64632
+ return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
65173
64633
  }
65174
64634
 
65175
64635
  /**
@@ -65219,12 +64679,7 @@ export default class Client extends OpenApi {
65219
64679
  reqBodyType: "formData",
65220
64680
  bodyType: "json",
65221
64681
  });
65222
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65223
- return $dara.cast<UpdateAppKeyStateResponse>(await this.callApi(params, req, runtime), new UpdateAppKeyStateResponse({}));
65224
- } else {
65225
- return $dara.cast<UpdateAppKeyStateResponse>(await this.execute(params, req, runtime), new UpdateAppKeyStateResponse({}));
65226
- }
65227
-
64682
+ return $dara.cast<UpdateAppKeyStateResponse>(await this.callApi(params, req, runtime), new UpdateAppKeyStateResponse({}));
65228
64683
  }
65229
64684
 
65230
64685
  /**
@@ -65300,12 +64755,7 @@ export default class Client extends OpenApi {
65300
64755
  reqBodyType: "formData",
65301
64756
  bodyType: "json",
65302
64757
  });
65303
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65304
- return $dara.cast<UpdateCloudGtmAddressResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressResponse({}));
65305
- } else {
65306
- return $dara.cast<UpdateCloudGtmAddressResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmAddressResponse({}));
65307
- }
65308
-
64758
+ return $dara.cast<UpdateCloudGtmAddressResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressResponse({}));
65309
64759
  }
65310
64760
 
65311
64761
  /**
@@ -65363,12 +64813,7 @@ export default class Client extends OpenApi {
65363
64813
  reqBodyType: "formData",
65364
64814
  bodyType: "json",
65365
64815
  });
65366
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65367
- return $dara.cast<UpdateCloudGtmAddressEnableStatusResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressEnableStatusResponse({}));
65368
- } else {
65369
- return $dara.cast<UpdateCloudGtmAddressEnableStatusResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmAddressEnableStatusResponse({}));
65370
- }
65371
-
64816
+ return $dara.cast<UpdateCloudGtmAddressEnableStatusResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressEnableStatusResponse({}));
65372
64817
  }
65373
64818
 
65374
64819
  /**
@@ -65430,12 +64875,7 @@ export default class Client extends OpenApi {
65430
64875
  reqBodyType: "formData",
65431
64876
  bodyType: "json",
65432
64877
  });
65433
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65434
- return $dara.cast<UpdateCloudGtmAddressManualAvailableStatusResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressManualAvailableStatusResponse({}));
65435
- } else {
65436
- return $dara.cast<UpdateCloudGtmAddressManualAvailableStatusResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmAddressManualAvailableStatusResponse({}));
65437
- }
65438
-
64878
+ return $dara.cast<UpdateCloudGtmAddressManualAvailableStatusResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressManualAvailableStatusResponse({}));
65439
64879
  }
65440
64880
 
65441
64881
  /**
@@ -65493,12 +64933,7 @@ export default class Client extends OpenApi {
65493
64933
  reqBodyType: "formData",
65494
64934
  bodyType: "json",
65495
64935
  });
65496
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65497
- return $dara.cast<UpdateCloudGtmAddressPoolBasicConfigResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressPoolBasicConfigResponse({}));
65498
- } else {
65499
- return $dara.cast<UpdateCloudGtmAddressPoolBasicConfigResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmAddressPoolBasicConfigResponse({}));
65500
- }
65501
-
64936
+ return $dara.cast<UpdateCloudGtmAddressPoolBasicConfigResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressPoolBasicConfigResponse({}));
65502
64937
  }
65503
64938
 
65504
64939
  /**
@@ -65556,12 +64991,7 @@ export default class Client extends OpenApi {
65556
64991
  reqBodyType: "formData",
65557
64992
  bodyType: "json",
65558
64993
  });
65559
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65560
- return $dara.cast<UpdateCloudGtmAddressPoolEnableStatusResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressPoolEnableStatusResponse({}));
65561
- } else {
65562
- return $dara.cast<UpdateCloudGtmAddressPoolEnableStatusResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmAddressPoolEnableStatusResponse({}));
65563
- }
65564
-
64994
+ return $dara.cast<UpdateCloudGtmAddressPoolEnableStatusResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressPoolEnableStatusResponse({}));
65565
64995
  }
65566
64996
 
65567
64997
  /**
@@ -65623,12 +65053,7 @@ export default class Client extends OpenApi {
65623
65053
  reqBodyType: "formData",
65624
65054
  bodyType: "json",
65625
65055
  });
65626
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65627
- return $dara.cast<UpdateCloudGtmAddressPoolLbStrategyResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressPoolLbStrategyResponse({}));
65628
- } else {
65629
- return $dara.cast<UpdateCloudGtmAddressPoolLbStrategyResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmAddressPoolLbStrategyResponse({}));
65630
- }
65631
-
65056
+ return $dara.cast<UpdateCloudGtmAddressPoolLbStrategyResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressPoolLbStrategyResponse({}));
65632
65057
  }
65633
65058
 
65634
65059
  /**
@@ -65682,12 +65107,7 @@ export default class Client extends OpenApi {
65682
65107
  reqBodyType: "formData",
65683
65108
  bodyType: "json",
65684
65109
  });
65685
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65686
- return $dara.cast<UpdateCloudGtmAddressPoolRemarkResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressPoolRemarkResponse({}));
65687
- } else {
65688
- return $dara.cast<UpdateCloudGtmAddressPoolRemarkResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmAddressPoolRemarkResponse({}));
65689
- }
65690
-
65110
+ return $dara.cast<UpdateCloudGtmAddressPoolRemarkResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressPoolRemarkResponse({}));
65691
65111
  }
65692
65112
 
65693
65113
  /**
@@ -65741,12 +65161,7 @@ export default class Client extends OpenApi {
65741
65161
  reqBodyType: "formData",
65742
65162
  bodyType: "json",
65743
65163
  });
65744
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65745
- return $dara.cast<UpdateCloudGtmAddressRemarkResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressRemarkResponse({}));
65746
- } else {
65747
- return $dara.cast<UpdateCloudGtmAddressRemarkResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmAddressRemarkResponse({}));
65748
- }
65749
-
65164
+ return $dara.cast<UpdateCloudGtmAddressRemarkResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmAddressRemarkResponse({}));
65750
65165
  }
65751
65166
 
65752
65167
  /**
@@ -65808,12 +65223,7 @@ export default class Client extends OpenApi {
65808
65223
  reqBodyType: "formData",
65809
65224
  bodyType: "json",
65810
65225
  });
65811
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65812
- return $dara.cast<UpdateCloudGtmGlobalAlertResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmGlobalAlertResponse({}));
65813
- } else {
65814
- return $dara.cast<UpdateCloudGtmGlobalAlertResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmGlobalAlertResponse({}));
65815
- }
65816
-
65226
+ return $dara.cast<UpdateCloudGtmGlobalAlertResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmGlobalAlertResponse({}));
65817
65227
  }
65818
65228
 
65819
65229
  /**
@@ -65885,12 +65295,7 @@ export default class Client extends OpenApi {
65885
65295
  reqBodyType: "formData",
65886
65296
  bodyType: "json",
65887
65297
  });
65888
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65889
- return $dara.cast<UpdateCloudGtmInstanceConfigAlertResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigAlertResponse({}));
65890
- } else {
65891
- return $dara.cast<UpdateCloudGtmInstanceConfigAlertResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmInstanceConfigAlertResponse({}));
65892
- }
65893
-
65298
+ return $dara.cast<UpdateCloudGtmInstanceConfigAlertResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigAlertResponse({}));
65894
65299
  }
65895
65300
 
65896
65301
  /**
@@ -65954,12 +65359,7 @@ export default class Client extends OpenApi {
65954
65359
  reqBodyType: "formData",
65955
65360
  bodyType: "json",
65956
65361
  });
65957
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
65958
- return $dara.cast<UpdateCloudGtmInstanceConfigBasicResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigBasicResponse({}));
65959
- } else {
65960
- return $dara.cast<UpdateCloudGtmInstanceConfigBasicResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmInstanceConfigBasicResponse({}));
65961
- }
65962
-
65362
+ return $dara.cast<UpdateCloudGtmInstanceConfigBasicResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigBasicResponse({}));
65963
65363
  }
65964
65364
 
65965
65365
  /**
@@ -66021,12 +65421,7 @@ export default class Client extends OpenApi {
66021
65421
  reqBodyType: "formData",
66022
65422
  bodyType: "json",
66023
65423
  });
66024
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66025
- return $dara.cast<UpdateCloudGtmInstanceConfigEnableStatusResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigEnableStatusResponse({}));
66026
- } else {
66027
- return $dara.cast<UpdateCloudGtmInstanceConfigEnableStatusResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmInstanceConfigEnableStatusResponse({}));
66028
- }
66029
-
65424
+ return $dara.cast<UpdateCloudGtmInstanceConfigEnableStatusResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigEnableStatusResponse({}));
66030
65425
  }
66031
65426
 
66032
65427
  /**
@@ -66092,12 +65487,7 @@ export default class Client extends OpenApi {
66092
65487
  reqBodyType: "formData",
66093
65488
  bodyType: "json",
66094
65489
  });
66095
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66096
- return $dara.cast<UpdateCloudGtmInstanceConfigLbStrategyResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigLbStrategyResponse({}));
66097
- } else {
66098
- return $dara.cast<UpdateCloudGtmInstanceConfigLbStrategyResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmInstanceConfigLbStrategyResponse({}));
66099
- }
66100
-
65490
+ return $dara.cast<UpdateCloudGtmInstanceConfigLbStrategyResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigLbStrategyResponse({}));
66101
65491
  }
66102
65492
 
66103
65493
  /**
@@ -66155,12 +65545,7 @@ export default class Client extends OpenApi {
66155
65545
  reqBodyType: "formData",
66156
65546
  bodyType: "json",
66157
65547
  });
66158
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66159
- return $dara.cast<UpdateCloudGtmInstanceConfigRemarkResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigRemarkResponse({}));
66160
- } else {
66161
- return $dara.cast<UpdateCloudGtmInstanceConfigRemarkResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmInstanceConfigRemarkResponse({}));
66162
- }
66163
-
65548
+ return $dara.cast<UpdateCloudGtmInstanceConfigRemarkResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceConfigRemarkResponse({}));
66164
65549
  }
66165
65550
 
66166
65551
  /**
@@ -66212,12 +65597,7 @@ export default class Client extends OpenApi {
66212
65597
  reqBodyType: "formData",
66213
65598
  bodyType: "json",
66214
65599
  });
66215
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66216
- return $dara.cast<UpdateCloudGtmInstanceNameResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceNameResponse({}));
66217
- } else {
66218
- return $dara.cast<UpdateCloudGtmInstanceNameResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmInstanceNameResponse({}));
66219
- }
66220
-
65600
+ return $dara.cast<UpdateCloudGtmInstanceNameResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmInstanceNameResponse({}));
66221
65601
  }
66222
65602
 
66223
65603
  /**
@@ -66299,12 +65679,7 @@ export default class Client extends OpenApi {
66299
65679
  reqBodyType: "formData",
66300
65680
  bodyType: "json",
66301
65681
  });
66302
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66303
- return $dara.cast<UpdateCloudGtmMonitorTemplateResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmMonitorTemplateResponse({}));
66304
- } else {
66305
- return $dara.cast<UpdateCloudGtmMonitorTemplateResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmMonitorTemplateResponse({}));
66306
- }
66307
-
65682
+ return $dara.cast<UpdateCloudGtmMonitorTemplateResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmMonitorTemplateResponse({}));
66308
65683
  }
66309
65684
 
66310
65685
  /**
@@ -66356,12 +65731,7 @@ export default class Client extends OpenApi {
66356
65731
  reqBodyType: "formData",
66357
65732
  bodyType: "json",
66358
65733
  });
66359
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66360
- return $dara.cast<UpdateCloudGtmMonitorTemplateRemarkResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmMonitorTemplateRemarkResponse({}));
66361
- } else {
66362
- return $dara.cast<UpdateCloudGtmMonitorTemplateRemarkResponse>(await this.execute(params, req, runtime), new UpdateCloudGtmMonitorTemplateRemarkResponse({}));
66363
- }
66364
-
65734
+ return $dara.cast<UpdateCloudGtmMonitorTemplateRemarkResponse>(await this.callApi(params, req, runtime), new UpdateCloudGtmMonitorTemplateRemarkResponse({}));
66365
65735
  }
66366
65736
 
66367
65737
  /**
@@ -66374,7 +65744,7 @@ export default class Client extends OpenApi {
66374
65744
  }
66375
65745
 
66376
65746
  /**
66377
- * Modifies a custom line.
65747
+ * Modifies a custom line with its unique ID.
66378
65748
  *
66379
65749
  * @remarks
66380
65750
  * In each CIDR block, the end IP address must be greater than or equal to the start IP address.\\
@@ -66417,16 +65787,11 @@ export default class Client extends OpenApi {
66417
65787
  reqBodyType: "formData",
66418
65788
  bodyType: "json",
66419
65789
  });
66420
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66421
- return $dara.cast<UpdateCustomLineResponse>(await this.callApi(params, req, runtime), new UpdateCustomLineResponse({}));
66422
- } else {
66423
- return $dara.cast<UpdateCustomLineResponse>(await this.execute(params, req, runtime), new UpdateCustomLineResponse({}));
66424
- }
66425
-
65790
+ return $dara.cast<UpdateCustomLineResponse>(await this.callApi(params, req, runtime), new UpdateCustomLineResponse({}));
66426
65791
  }
66427
65792
 
66428
65793
  /**
66429
- * Modifies a custom line.
65794
+ * Modifies a custom line with its unique ID.
66430
65795
  *
66431
65796
  * @remarks
66432
65797
  * In each CIDR block, the end IP address must be greater than or equal to the start IP address.\\
@@ -66480,12 +65845,7 @@ export default class Client extends OpenApi {
66480
65845
  reqBodyType: "formData",
66481
65846
  bodyType: "json",
66482
65847
  });
66483
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66484
- return $dara.cast<UpdateDNSSLBWeightResponse>(await this.callApi(params, req, runtime), new UpdateDNSSLBWeightResponse({}));
66485
- } else {
66486
- return $dara.cast<UpdateDNSSLBWeightResponse>(await this.execute(params, req, runtime), new UpdateDNSSLBWeightResponse({}));
66487
- }
66488
-
65848
+ return $dara.cast<UpdateDNSSLBWeightResponse>(await this.callApi(params, req, runtime), new UpdateDNSSLBWeightResponse({}));
66489
65849
  }
66490
65850
 
66491
65851
  /**
@@ -66500,6 +65860,8 @@ export default class Client extends OpenApi {
66500
65860
  }
66501
65861
 
66502
65862
  /**
65863
+ * Updates the cache-accelerated domain name based on the specified parameters.
65864
+ *
66503
65865
  * @param request - UpdateDnsCacheDomainRequest
66504
65866
  * @param runtime - runtime options for this request RuntimeOptions
66505
65867
  * @returns UpdateDnsCacheDomainResponse
@@ -66553,15 +65915,12 @@ export default class Client extends OpenApi {
66553
65915
  reqBodyType: "formData",
66554
65916
  bodyType: "json",
66555
65917
  });
66556
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66557
- return $dara.cast<UpdateDnsCacheDomainResponse>(await this.callApi(params, req, runtime), new UpdateDnsCacheDomainResponse({}));
66558
- } else {
66559
- return $dara.cast<UpdateDnsCacheDomainResponse>(await this.execute(params, req, runtime), new UpdateDnsCacheDomainResponse({}));
66560
- }
66561
-
65918
+ return $dara.cast<UpdateDnsCacheDomainResponse>(await this.callApi(params, req, runtime), new UpdateDnsCacheDomainResponse({}));
66562
65919
  }
66563
65920
 
66564
65921
  /**
65922
+ * Updates the cache-accelerated domain name based on the specified parameters.
65923
+ *
66565
65924
  * @param request - UpdateDnsCacheDomainRequest
66566
65925
  * @returns UpdateDnsCacheDomainResponse
66567
65926
  */
@@ -66571,6 +65930,8 @@ export default class Client extends OpenApi {
66571
65930
  }
66572
65931
 
66573
65932
  /**
65933
+ * Updates the remarks for the cache-accelerated domain name of the destination domain name.
65934
+ *
66574
65935
  * @param request - UpdateDnsCacheDomainRemarkRequest
66575
65936
  * @param runtime - runtime options for this request RuntimeOptions
66576
65937
  * @returns UpdateDnsCacheDomainRemarkResponse
@@ -66604,15 +65965,12 @@ export default class Client extends OpenApi {
66604
65965
  reqBodyType: "formData",
66605
65966
  bodyType: "json",
66606
65967
  });
66607
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66608
- return $dara.cast<UpdateDnsCacheDomainRemarkResponse>(await this.callApi(params, req, runtime), new UpdateDnsCacheDomainRemarkResponse({}));
66609
- } else {
66610
- return $dara.cast<UpdateDnsCacheDomainRemarkResponse>(await this.execute(params, req, runtime), new UpdateDnsCacheDomainRemarkResponse({}));
66611
- }
66612
-
65968
+ return $dara.cast<UpdateDnsCacheDomainRemarkResponse>(await this.callApi(params, req, runtime), new UpdateDnsCacheDomainRemarkResponse({}));
66613
65969
  }
66614
65970
 
66615
65971
  /**
65972
+ * Updates the remarks for the cache-accelerated domain name of the destination domain name.
65973
+ *
66616
65974
  * @param request - UpdateDnsCacheDomainRemarkRequest
66617
65975
  * @returns UpdateDnsCacheDomainRemarkResponse
66618
65976
  */
@@ -66713,12 +66071,7 @@ export default class Client extends OpenApi {
66713
66071
  reqBodyType: "formData",
66714
66072
  bodyType: "json",
66715
66073
  });
66716
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66717
- return $dara.cast<UpdateDnsGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new UpdateDnsGtmAccessStrategyResponse({}));
66718
- } else {
66719
- return $dara.cast<UpdateDnsGtmAccessStrategyResponse>(await this.execute(params, req, runtime), new UpdateDnsGtmAccessStrategyResponse({}));
66720
- }
66721
-
66074
+ return $dara.cast<UpdateDnsGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new UpdateDnsGtmAccessStrategyResponse({}));
66722
66075
  }
66723
66076
 
66724
66077
  /**
@@ -66776,12 +66129,7 @@ export default class Client extends OpenApi {
66776
66129
  reqBodyType: "formData",
66777
66130
  bodyType: "json",
66778
66131
  });
66779
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66780
- return $dara.cast<UpdateDnsGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new UpdateDnsGtmAddressPoolResponse({}));
66781
- } else {
66782
- return $dara.cast<UpdateDnsGtmAddressPoolResponse>(await this.execute(params, req, runtime), new UpdateDnsGtmAddressPoolResponse({}));
66783
- }
66784
-
66132
+ return $dara.cast<UpdateDnsGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new UpdateDnsGtmAddressPoolResponse({}));
66785
66133
  }
66786
66134
 
66787
66135
  /**
@@ -66867,12 +66215,7 @@ export default class Client extends OpenApi {
66867
66215
  reqBodyType: "formData",
66868
66216
  bodyType: "json",
66869
66217
  });
66870
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66871
- return $dara.cast<UpdateDnsGtmInstanceGlobalConfigResponse>(await this.callApi(params, req, runtime), new UpdateDnsGtmInstanceGlobalConfigResponse({}));
66872
- } else {
66873
- return $dara.cast<UpdateDnsGtmInstanceGlobalConfigResponse>(await this.execute(params, req, runtime), new UpdateDnsGtmInstanceGlobalConfigResponse({}));
66874
- }
66875
-
66218
+ return $dara.cast<UpdateDnsGtmInstanceGlobalConfigResponse>(await this.callApi(params, req, runtime), new UpdateDnsGtmInstanceGlobalConfigResponse({}));
66876
66219
  }
66877
66220
 
66878
66221
  /**
@@ -66942,12 +66285,7 @@ export default class Client extends OpenApi {
66942
66285
  reqBodyType: "formData",
66943
66286
  bodyType: "json",
66944
66287
  });
66945
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
66946
- return $dara.cast<UpdateDnsGtmMonitorResponse>(await this.callApi(params, req, runtime), new UpdateDnsGtmMonitorResponse({}));
66947
- } else {
66948
- return $dara.cast<UpdateDnsGtmMonitorResponse>(await this.execute(params, req, runtime), new UpdateDnsGtmMonitorResponse({}));
66949
- }
66950
-
66288
+ return $dara.cast<UpdateDnsGtmMonitorResponse>(await this.callApi(params, req, runtime), new UpdateDnsGtmMonitorResponse({}));
66951
66289
  }
66952
66290
 
66953
66291
  /**
@@ -67000,12 +66338,7 @@ export default class Client extends OpenApi {
67000
66338
  reqBodyType: "formData",
67001
66339
  bodyType: "json",
67002
66340
  });
67003
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67004
- return $dara.cast<UpdateDomainGroupResponse>(await this.callApi(params, req, runtime), new UpdateDomainGroupResponse({}));
67005
- } else {
67006
- return $dara.cast<UpdateDomainGroupResponse>(await this.execute(params, req, runtime), new UpdateDomainGroupResponse({}));
67007
- }
67008
-
66341
+ return $dara.cast<UpdateDomainGroupResponse>(await this.callApi(params, req, runtime), new UpdateDomainGroupResponse({}));
67009
66342
  }
67010
66343
 
67011
66344
  /**
@@ -67082,12 +66415,7 @@ export default class Client extends OpenApi {
67082
66415
  reqBodyType: "formData",
67083
66416
  bodyType: "json",
67084
66417
  });
67085
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67086
- return $dara.cast<UpdateDomainRecordResponse>(await this.callApi(params, req, runtime), new UpdateDomainRecordResponse({}));
67087
- } else {
67088
- return $dara.cast<UpdateDomainRecordResponse>(await this.execute(params, req, runtime), new UpdateDomainRecordResponse({}));
67089
- }
67090
-
66418
+ return $dara.cast<UpdateDomainRecordResponse>(await this.callApi(params, req, runtime), new UpdateDomainRecordResponse({}));
67091
66419
  }
67092
66420
 
67093
66421
  /**
@@ -67141,12 +66469,7 @@ export default class Client extends OpenApi {
67141
66469
  reqBodyType: "formData",
67142
66470
  bodyType: "json",
67143
66471
  });
67144
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67145
- return $dara.cast<UpdateDomainRecordRemarkResponse>(await this.callApi(params, req, runtime), new UpdateDomainRecordRemarkResponse({}));
67146
- } else {
67147
- return $dara.cast<UpdateDomainRecordRemarkResponse>(await this.execute(params, req, runtime), new UpdateDomainRecordRemarkResponse({}));
67148
- }
67149
-
66472
+ return $dara.cast<UpdateDomainRecordRemarkResponse>(await this.callApi(params, req, runtime), new UpdateDomainRecordRemarkResponse({}));
67150
66473
  }
67151
66474
 
67152
66475
  /**
@@ -67196,12 +66519,7 @@ export default class Client extends OpenApi {
67196
66519
  reqBodyType: "formData",
67197
66520
  bodyType: "json",
67198
66521
  });
67199
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67200
- return $dara.cast<UpdateDomainRemarkResponse>(await this.callApi(params, req, runtime), new UpdateDomainRemarkResponse({}));
67201
- } else {
67202
- return $dara.cast<UpdateDomainRemarkResponse>(await this.execute(params, req, runtime), new UpdateDomainRemarkResponse({}));
67203
- }
67204
-
66522
+ return $dara.cast<UpdateDomainRemarkResponse>(await this.callApi(params, req, runtime), new UpdateDomainRemarkResponse({}));
67205
66523
  }
67206
66524
 
67207
66525
  /**
@@ -67261,12 +66579,7 @@ export default class Client extends OpenApi {
67261
66579
  reqBodyType: "formData",
67262
66580
  bodyType: "json",
67263
66581
  });
67264
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67265
- return $dara.cast<UpdateGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new UpdateGtmAccessStrategyResponse({}));
67266
- } else {
67267
- return $dara.cast<UpdateGtmAccessStrategyResponse>(await this.execute(params, req, runtime), new UpdateGtmAccessStrategyResponse({}));
67268
- }
67269
-
66582
+ return $dara.cast<UpdateGtmAccessStrategyResponse>(await this.callApi(params, req, runtime), new UpdateGtmAccessStrategyResponse({}));
67270
66583
  }
67271
66584
 
67272
66585
  /**
@@ -67324,12 +66637,7 @@ export default class Client extends OpenApi {
67324
66637
  reqBodyType: "formData",
67325
66638
  bodyType: "json",
67326
66639
  });
67327
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67328
- return $dara.cast<UpdateGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new UpdateGtmAddressPoolResponse({}));
67329
- } else {
67330
- return $dara.cast<UpdateGtmAddressPoolResponse>(await this.execute(params, req, runtime), new UpdateGtmAddressPoolResponse({}));
67331
- }
67332
-
66640
+ return $dara.cast<UpdateGtmAddressPoolResponse>(await this.callApi(params, req, runtime), new UpdateGtmAddressPoolResponse({}));
67333
66641
  }
67334
66642
 
67335
66643
  /**
@@ -67401,12 +66709,7 @@ export default class Client extends OpenApi {
67401
66709
  reqBodyType: "formData",
67402
66710
  bodyType: "json",
67403
66711
  });
67404
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67405
- return $dara.cast<UpdateGtmInstanceGlobalConfigResponse>(await this.callApi(params, req, runtime), new UpdateGtmInstanceGlobalConfigResponse({}));
67406
- } else {
67407
- return $dara.cast<UpdateGtmInstanceGlobalConfigResponse>(await this.execute(params, req, runtime), new UpdateGtmInstanceGlobalConfigResponse({}));
67408
- }
67409
-
66712
+ return $dara.cast<UpdateGtmInstanceGlobalConfigResponse>(await this.callApi(params, req, runtime), new UpdateGtmInstanceGlobalConfigResponse({}));
67410
66713
  }
67411
66714
 
67412
66715
  /**
@@ -67476,12 +66779,7 @@ export default class Client extends OpenApi {
67476
66779
  reqBodyType: "formData",
67477
66780
  bodyType: "json",
67478
66781
  });
67479
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67480
- return $dara.cast<UpdateGtmMonitorResponse>(await this.callApi(params, req, runtime), new UpdateGtmMonitorResponse({}));
67481
- } else {
67482
- return $dara.cast<UpdateGtmMonitorResponse>(await this.execute(params, req, runtime), new UpdateGtmMonitorResponse({}));
67483
- }
67484
-
66782
+ return $dara.cast<UpdateGtmMonitorResponse>(await this.callApi(params, req, runtime), new UpdateGtmMonitorResponse({}));
67485
66783
  }
67486
66784
 
67487
66785
  /**
@@ -67539,12 +66837,7 @@ export default class Client extends OpenApi {
67539
66837
  reqBodyType: "formData",
67540
66838
  bodyType: "json",
67541
66839
  });
67542
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67543
- return $dara.cast<UpdateGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new UpdateGtmRecoveryPlanResponse({}));
67544
- } else {
67545
- return $dara.cast<UpdateGtmRecoveryPlanResponse>(await this.execute(params, req, runtime), new UpdateGtmRecoveryPlanResponse({}));
67546
- }
67547
-
66840
+ return $dara.cast<UpdateGtmRecoveryPlanResponse>(await this.callApi(params, req, runtime), new UpdateGtmRecoveryPlanResponse({}));
67548
66841
  }
67549
66842
 
67550
66843
  /**
@@ -67594,12 +66887,7 @@ export default class Client extends OpenApi {
67594
66887
  reqBodyType: "formData",
67595
66888
  bodyType: "json",
67596
66889
  });
67597
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67598
- return $dara.cast<UpdateIspFlushCacheInstanceConfigResponse>(await this.callApi(params, req, runtime), new UpdateIspFlushCacheInstanceConfigResponse({}));
67599
- } else {
67600
- return $dara.cast<UpdateIspFlushCacheInstanceConfigResponse>(await this.execute(params, req, runtime), new UpdateIspFlushCacheInstanceConfigResponse({}));
67601
- }
67602
-
66890
+ return $dara.cast<UpdateIspFlushCacheInstanceConfigResponse>(await this.callApi(params, req, runtime), new UpdateIspFlushCacheInstanceConfigResponse({}));
67603
66891
  }
67604
66892
 
67605
66893
  /**
@@ -67661,12 +66949,7 @@ export default class Client extends OpenApi {
67661
66949
  reqBodyType: "formData",
67662
66950
  bodyType: "json",
67663
66951
  });
67664
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67665
- return $dara.cast<ValidateDnsGtmCnameRrCanUseResponse>(await this.callApi(params, req, runtime), new ValidateDnsGtmCnameRrCanUseResponse({}));
67666
- } else {
67667
- return $dara.cast<ValidateDnsGtmCnameRrCanUseResponse>(await this.execute(params, req, runtime), new ValidateDnsGtmCnameRrCanUseResponse({}));
67668
- }
67669
-
66952
+ return $dara.cast<ValidateDnsGtmCnameRrCanUseResponse>(await this.callApi(params, req, runtime), new ValidateDnsGtmCnameRrCanUseResponse({}));
67670
66953
  }
67671
66954
 
67672
66955
  /**
@@ -67716,12 +66999,7 @@ export default class Client extends OpenApi {
67716
66999
  reqBodyType: "formData",
67717
67000
  bodyType: "json",
67718
67001
  });
67719
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
67720
- return $dara.cast<ValidatePdnsUdpIpSegmentResponse>(await this.callApi(params, req, runtime), new ValidatePdnsUdpIpSegmentResponse({}));
67721
- } else {
67722
- return $dara.cast<ValidatePdnsUdpIpSegmentResponse>(await this.execute(params, req, runtime), new ValidatePdnsUdpIpSegmentResponse({}));
67723
- }
67724
-
67002
+ return $dara.cast<ValidatePdnsUdpIpSegmentResponse>(await this.callApi(params, req, runtime), new ValidatePdnsUdpIpSegmentResponse({}));
67725
67003
  }
67726
67004
 
67727
67005
  /**