@alicloud/polardb20170801 5.4.0 → 5.5.0

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
@@ -1772,6 +1772,10 @@ export class DescribeDBClusterAttributeResponseBodyDBNodes extends $dara.Model {
1772
1772
  * polar.mysql.x4.large
1773
1773
  */
1774
1774
  DBNodeClass?: string;
1775
+ /**
1776
+ * @example
1777
+ * test
1778
+ */
1775
1779
  DBNodeDescription?: string;
1776
1780
  /**
1777
1781
  * @remarks
@@ -2216,6 +2220,7 @@ export class DescribeDBClusterEndpointsResponseBodyItemsAddressItems extends $da
2216
2220
  * ********.rwlb.polardb-pg-public.rds.aliyuncs.com
2217
2221
  */
2218
2222
  connectionString?: string;
2223
+ dashboardUsed?: boolean;
2219
2224
  /**
2220
2225
  * @remarks
2221
2226
  * The IP address.
@@ -2280,6 +2285,7 @@ export class DescribeDBClusterEndpointsResponseBodyItemsAddressItems extends $da
2280
2285
  static names(): { [key: string]: string } {
2281
2286
  return {
2282
2287
  connectionString: 'ConnectionString',
2288
+ dashboardUsed: 'DashboardUsed',
2283
2289
  IPAddress: 'IPAddress',
2284
2290
  netType: 'NetType',
2285
2291
  port: 'Port',
@@ -2293,6 +2299,7 @@ export class DescribeDBClusterEndpointsResponseBodyItemsAddressItems extends $da
2293
2299
  static types(): { [key: string]: any } {
2294
2300
  return {
2295
2301
  connectionString: 'string',
2302
+ dashboardUsed: 'boolean',
2296
2303
  IPAddress: 'string',
2297
2304
  netType: 'string',
2298
2305
  port: 'string',
@@ -2409,7 +2416,24 @@ export class DescribeDBClusterEndpointsResponseBodyItems extends $dara.Model {
2409
2416
  * pi-***************,pi-***************
2410
2417
  */
2411
2418
  nodes?: string;
2419
+ /**
2420
+ * @remarks
2421
+ * The global consistency timeout policy. Valid values:
2422
+ *
2423
+ * * **0**: sends the request to the primary node.
2424
+ * * **2**: downgrades the consistency level of a query to inconsistent read when a global consistent read in the query times out. No error message is returned to the client.
2425
+ *
2426
+ * @example
2427
+ * 0
2428
+ */
2412
2429
  polarSccTimeoutAction?: string;
2430
+ /**
2431
+ * @remarks
2432
+ * Global consistency timeout.
2433
+ *
2434
+ * @example
2435
+ * 100
2436
+ */
2413
2437
  polarSccWaitTimeout?: string;
2414
2438
  /**
2415
2439
  * @remarks
@@ -2422,6 +2446,16 @@ export class DescribeDBClusterEndpointsResponseBodyItems extends $dara.Model {
2422
2446
  * ReadOnly
2423
2447
  */
2424
2448
  readWriteMode?: string;
2449
+ /**
2450
+ * @remarks
2451
+ * Indicates whether the global consistency (high-performance mode) feature is enabled for the node. Valid values:
2452
+ *
2453
+ * * **on**: enabled.
2454
+ * * **off**: disabled
2455
+ *
2456
+ * @example
2457
+ * on
2458
+ */
2425
2459
  sccMode?: string;
2426
2460
  static names(): { [key: string]: string } {
2427
2461
  return {
@@ -3336,6 +3370,10 @@ export class DescribeDBClusterSSLResponseBodyItems extends $dara.Model {
3336
3370
  * pe-************
3337
3371
  */
3338
3372
  DBEndpointId?: string;
3373
+ /**
3374
+ * @example
3375
+ * Enable
3376
+ */
3339
3377
  SSLAutoRotate?: string;
3340
3378
  /**
3341
3379
  * @remarks
@@ -3475,7 +3513,7 @@ export class DescribeDBClusterVersionResponseBodyProxyRevisionVersionList extend
3475
3513
  * * **BETA**: a preview version
3476
3514
  *
3477
3515
  * @example
3478
- * Stable
3516
+ * LTS
3479
3517
  */
3480
3518
  releaseType?: string;
3481
3519
  /**
@@ -5740,7 +5778,17 @@ export class DescribeGlobalDatabaseNetworkResponseBodyDBClustersDBNodes extends
5740
5778
  export class DescribeGlobalDatabaseNetworkResponseBodyDBClusters extends $dara.Model {
5741
5779
  /**
5742
5780
  * @remarks
5743
- * The edition of the cluster.
5781
+ * The edition of the cluster. Valid values:
5782
+ *
5783
+ * Normal: Cluster Edition Basic: Single Node Edition Archive: X-Engine Edition NormalMultimaster: Multi-master Cluster Edition SENormal: Standard Edition
5784
+ *
5785
+ * >
5786
+ *
5787
+ * * PolarDB for PostgreSQL clusters that run the PostgreSQL 11 database engine do not support Single Node Edition.
5788
+ *
5789
+ * * PolarDB for MySQL 8.0 and 5.7 clusters, and PolarDB for PostgreSQL clusters that run the PostgreSQL 14 database engine support Standard Edition.
5790
+ *
5791
+ * * PolarDB for MySQL 8.0 clusters support X-Engine Edition and Multi-master Cluster Edition.
5744
5792
  *
5745
5793
  * @example
5746
5794
  * Normal
@@ -8026,7 +8074,7 @@ export class DescribeVSwitchesResponseBodyVSwitchs extends $dara.Model {
8026
8074
  cidrBlock?: string;
8027
8075
  /**
8028
8076
  * @remarks
8029
- * The descriptions of the vSwitch.
8077
+ * The description of the vSwitch.
8030
8078
  *
8031
8079
  * @example
8032
8080
  * vSwitchDescription
@@ -9765,6 +9813,7 @@ export class CreateAccountRequest extends $dara.Model {
9765
9813
  * testdb
9766
9814
  */
9767
9815
  DBName?: string;
9816
+ nodeType?: string;
9768
9817
  ownerAccount?: string;
9769
9818
  ownerId?: number;
9770
9819
  privForAllDB?: string;
@@ -9780,6 +9829,7 @@ export class CreateAccountRequest extends $dara.Model {
9780
9829
  clientToken: 'ClientToken',
9781
9830
  DBClusterId: 'DBClusterId',
9782
9831
  DBName: 'DBName',
9832
+ nodeType: 'NodeType',
9783
9833
  ownerAccount: 'OwnerAccount',
9784
9834
  ownerId: 'OwnerId',
9785
9835
  privForAllDB: 'PrivForAllDB',
@@ -9798,6 +9848,7 @@ export class CreateAccountRequest extends $dara.Model {
9798
9848
  clientToken: 'string',
9799
9849
  DBClusterId: 'string',
9800
9850
  DBName: 'string',
9851
+ nodeType: 'string',
9801
9852
  ownerAccount: 'string',
9802
9853
  ownerId: 'number',
9803
9854
  privForAllDB: 'string',
@@ -10466,6 +10517,10 @@ export class CreateDBClusterRequest extends $dara.Model {
10466
10517
  * NONE
10467
10518
  */
10468
10519
  backupRetentionPolicyOnClusterDeletion?: string;
10520
+ /**
10521
+ * @example
10522
+ * false
10523
+ */
10469
10524
  burstingEnabled?: string;
10470
10525
  /**
10471
10526
  * @remarks
@@ -10587,8 +10642,6 @@ export class CreateDBClusterRequest extends $dara.Model {
10587
10642
  * > - For a Serverless cluster in PolarDB MySQL, enter **polar.mysql.sl.small**.
10588
10643
  * <props="china">> - For a Serverless cluster in both PolarDB PostgreSQL (Oracle Compatible) and PolarDB PostgreSQL, enter **polar.pg.sl.small.c**.
10589
10644
  *
10590
- * This parameter is required.
10591
- *
10592
10645
  * @example
10593
10646
  * polar.mysql.x4.medium
10594
10647
  */
@@ -10914,7 +10967,28 @@ export class CreateDBClusterRequest extends $dara.Model {
10914
10967
  * Enable
10915
10968
  */
10916
10969
  storageAutoScale?: string;
10970
+ /**
10971
+ * @remarks
10972
+ * Specifies whether to enable disk encryption. Valid values:
10973
+ *
10974
+ * * **true**
10975
+ * * **false** (default)
10976
+ *
10977
+ * > This parameter takes effect only when **DBType** is set to **MySQL**.
10978
+ *
10979
+ * > This parameter takes effect only when **StorageType** is set to one of the Standard Edition storage types.
10980
+ */
10917
10981
  storageEncryption?: boolean;
10982
+ /**
10983
+ * @remarks
10984
+ * The ID of the custom key that is used for disk encryption in the region in which the instance resides. If this parameter is specified, disk encryption is automatically enabled and cannot be disabled afterwards. If you want to use the default service key for disk encryption, leave this parameter empty.
10985
+ *
10986
+ * You can obtain the ID of the key in the KMS console or create a key.
10987
+ *
10988
+ * > This parameter takes effect only when **DBType** is set to **MySQL**.
10989
+ *
10990
+ * > This parameter takes effect only when **StorageType** is set to one of the Standard Edition storage types.
10991
+ */
10918
10992
  storageEncryptionKey?: string;
10919
10993
  /**
10920
10994
  * @remarks
@@ -10929,9 +11003,13 @@ export class CreateDBClusterRequest extends $dara.Model {
10929
11003
  storagePayType?: string;
10930
11004
  /**
10931
11005
  * @remarks
10932
- * Storage space for pay-by-space (subscription) billing. Unit: GB.
10933
- * > - For PolarDB MySQL Standard Edition, the storage space range is 20 to 32000.
10934
- * > - When the Standard Edition storage type is ESSDAUTOPL, the storage space range is 40 to 64000, with a minimum step size of 10, meaning you can only enter values like 40, 50, 60, and so on.
11006
+ * The storage that is billed based on the subscription billing method. Unit: GB.
11007
+ *
11008
+ * >
11009
+ *
11010
+ * * Valid values for the subscription storage capacity of a PolarDB for MySQL Standard Edition cluster: 20 to 32000.
11011
+ *
11012
+ * * Valid values for the subscription storage capacity of a Standard Edition cluster that uses the ESSD AUTOPL storage type: 40 to 64000, in increments of 10.
10935
11013
  *
10936
11014
  * @example
10937
11015
  * 50
@@ -11404,8 +11482,15 @@ export class CreateDBClusterEndpointRequest extends $dara.Model {
11404
11482
  resourceOwnerId?: number;
11405
11483
  /**
11406
11484
  * @remarks
11407
- * Whether the node has enabled the global consistency (high-performance mode) feature. The value range is as follows:
11408
- * - **ON**: Enabled - **OFF**: Disabled
11485
+ * Specifies whether to enable the global consistency (high-performance mode) feature for the nodes. Valid values:
11486
+ *
11487
+ * * **ON**
11488
+ * * **OFF**
11489
+ *
11490
+ * Enumerated values:
11491
+ *
11492
+ * * on
11493
+ * * off
11409
11494
  *
11410
11495
  * @example
11411
11496
  * on
@@ -11990,12 +12075,18 @@ export class CreateDBNodesRequest extends $dara.Model {
11990
12075
  DBNode?: CreateDBNodesRequestDBNode[];
11991
12076
  /**
11992
12077
  * @remarks
11993
- * The type of the node. Valid values:
12078
+ * The node type. Valid values:
11994
12079
  *
11995
12080
  * * RO
11996
12081
  * * STANDBY
11997
12082
  * * DLNode
11998
12083
  *
12084
+ * Enumerated values:
12085
+ *
12086
+ * * DLNode: AI node
12087
+ * * STANDBY: standby node
12088
+ * * RO: read-only node
12089
+ *
11999
12090
  * @example
12000
12091
  * RO
12001
12092
  */
@@ -14230,10 +14321,17 @@ export class DeleteDBNodesRequest extends $dara.Model {
14230
14321
  DBNodeId?: string[];
14231
14322
  /**
14232
14323
  * @remarks
14233
- * The type of the node. Valid values:
14324
+ * The node type. Valid values:
14234
14325
  *
14235
14326
  * * RO
14236
14327
  * * STANDBY
14328
+ * * DLNode
14329
+ *
14330
+ * Enumerated values:
14331
+ *
14332
+ * * DLNode: AI node
14333
+ * * STANDBY: standby node
14334
+ * * RO: read-only node
14237
14335
  *
14238
14336
  * @example
14239
14337
  * RO
@@ -14780,6 +14878,7 @@ export class DeleteMaskingRulesRequest extends $dara.Model {
14780
14878
  * pc-*****************
14781
14879
  */
14782
14880
  DBClusterId?: string;
14881
+ interfaceVersion?: string;
14783
14882
  /**
14784
14883
  * @remarks
14785
14884
  * The name of the masking rule. You can specify multiple masking rules at a time. Separate the masking rules with commas (,).
@@ -14795,6 +14894,7 @@ export class DeleteMaskingRulesRequest extends $dara.Model {
14795
14894
  static names(): { [key: string]: string } {
14796
14895
  return {
14797
14896
  DBClusterId: 'DBClusterId',
14897
+ interfaceVersion: 'InterfaceVersion',
14798
14898
  ruleNameList: 'RuleNameList',
14799
14899
  };
14800
14900
  }
@@ -14802,6 +14902,7 @@ export class DeleteMaskingRulesRequest extends $dara.Model {
14802
14902
  static types(): { [key: string]: any } {
14803
14903
  return {
14804
14904
  DBClusterId: 'string',
14905
+ interfaceVersion: 'string',
14805
14906
  ruleNameList: 'string',
14806
14907
  };
14807
14908
  }
@@ -15222,6 +15323,7 @@ export class DescribeAccountsRequest extends $dara.Model {
15222
15323
  * pc-***************
15223
15324
  */
15224
15325
  DBClusterId?: string;
15326
+ nodeType?: string;
15225
15327
  ownerAccount?: string;
15226
15328
  ownerId?: number;
15227
15329
  /**
@@ -15252,6 +15354,7 @@ export class DescribeAccountsRequest extends $dara.Model {
15252
15354
  return {
15253
15355
  accountName: 'AccountName',
15254
15356
  DBClusterId: 'DBClusterId',
15357
+ nodeType: 'NodeType',
15255
15358
  ownerAccount: 'OwnerAccount',
15256
15359
  ownerId: 'OwnerId',
15257
15360
  pageNumber: 'PageNumber',
@@ -15265,6 +15368,7 @@ export class DescribeAccountsRequest extends $dara.Model {
15265
15368
  return {
15266
15369
  accountName: 'string',
15267
15370
  DBClusterId: 'string',
15371
+ nodeType: 'string',
15268
15372
  ownerAccount: 'string',
15269
15373
  ownerId: 'number',
15270
15374
  pageNumber: 'number',
@@ -15608,6 +15712,11 @@ export class DescribeActivationCodesRequest extends $dara.Model {
15608
15712
  * 2233****445566
15609
15713
  */
15610
15714
  aliyunOrderId?: string;
15715
+ /**
15716
+ * @example
15717
+ * aa:bb:cc:dd:ee:ff
15718
+ */
15719
+ macAddress?: string;
15611
15720
  ownerAccount?: string;
15612
15721
  ownerId?: number;
15613
15722
  /**
@@ -15628,27 +15737,36 @@ export class DescribeActivationCodesRequest extends $dara.Model {
15628
15737
  pageSize?: number;
15629
15738
  resourceOwnerAccount?: string;
15630
15739
  resourceOwnerId?: number;
15740
+ /**
15741
+ * @example
15742
+ * 3312548696141831911
15743
+ */
15744
+ systemIdentifier?: string;
15631
15745
  static names(): { [key: string]: string } {
15632
15746
  return {
15633
15747
  aliyunOrderId: 'AliyunOrderId',
15748
+ macAddress: 'MacAddress',
15634
15749
  ownerAccount: 'OwnerAccount',
15635
15750
  ownerId: 'OwnerId',
15636
15751
  pageNumber: 'PageNumber',
15637
15752
  pageSize: 'PageSize',
15638
15753
  resourceOwnerAccount: 'ResourceOwnerAccount',
15639
15754
  resourceOwnerId: 'ResourceOwnerId',
15755
+ systemIdentifier: 'SystemIdentifier',
15640
15756
  };
15641
15757
  }
15642
15758
 
15643
15759
  static types(): { [key: string]: any } {
15644
15760
  return {
15645
15761
  aliyunOrderId: 'string',
15762
+ macAddress: 'string',
15646
15763
  ownerAccount: 'string',
15647
15764
  ownerId: 'number',
15648
15765
  pageNumber: 'number',
15649
15766
  pageSize: 'number',
15650
15767
  resourceOwnerAccount: 'string',
15651
15768
  resourceOwnerId: 'number',
15769
+ systemIdentifier: 'string',
15652
15770
  };
15653
15771
  }
15654
15772
 
@@ -15795,11 +15913,21 @@ export class DescribeActiveOperationTasksRequest extends $dara.Model {
15795
15913
  ownerAccount?: string;
15796
15914
  ownerId?: number;
15797
15915
  /**
15916
+ * @remarks
15917
+ * The page number of the page to return. The value must be an integer that is greater than 0. Default value: 1.
15918
+ *
15798
15919
  * @example
15799
15920
  * 1
15800
15921
  */
15801
15922
  pageNumber?: number;
15802
15923
  /**
15924
+ * @remarks
15925
+ * The number of entries per page. Valid values:
15926
+ *
15927
+ * * **30** (default)
15928
+ * * **50**
15929
+ * * **100**
15930
+ *
15803
15931
  * @example
15804
15932
  * 30
15805
15933
  */
@@ -17632,6 +17760,10 @@ export class DescribeDBClusterAttributeResponseBody extends $dara.Model {
17632
17760
  * 5,242,880
17633
17761
  */
17634
17762
  blktagUsed?: number;
17763
+ /**
17764
+ * @example
17765
+ * false
17766
+ */
17635
17767
  burstingEnabled?: string;
17636
17768
  /**
17637
17769
  * @remarks
@@ -17831,6 +17963,13 @@ export class DescribeDBClusterAttributeResponseBody extends $dara.Model {
17831
17963
  * OFF
17832
17964
  */
17833
17965
  imciAutoIndex?: string;
17966
+ /**
17967
+ * @remarks
17968
+ * Indicates whether failover with hot replica is enabled. Valid values:
17969
+ *
17970
+ * * `true`
17971
+ * * `false` (default)
17972
+ */
17834
17973
  imperceptibleSwitch?: string;
17835
17974
  /**
17836
17975
  * @remarks
@@ -20274,6 +20413,10 @@ export class DescribeDBClusterTDEResponseBody extends $dara.Model {
20274
20413
  * 2a4f4ac2-****-****-****-************
20275
20414
  */
20276
20415
  encryptionKey?: string;
20416
+ /**
20417
+ * @example
20418
+ * Enabled
20419
+ */
20277
20420
  encryptionKeyStatus?: string;
20278
20421
  /**
20279
20422
  * @remarks
@@ -21072,7 +21215,7 @@ export class DescribeDBClustersWithBackupsRequest extends $dara.Model {
21072
21215
  pageNumber?: number;
21073
21216
  /**
21074
21217
  * @remarks
21075
- * The number of entries to return on each page. Valid values:
21218
+ * The number of entries per page. Valid values:
21076
21219
  *
21077
21220
  * * **30**
21078
21221
  * * **50**
@@ -22222,7 +22365,7 @@ export class DescribeDasConfigRequest extends $dara.Model {
22222
22365
  export class DescribeDasConfigResponseBody extends $dara.Model {
22223
22366
  /**
22224
22367
  * @remarks
22225
- * Id of the request
22368
+ * The request ID.
22226
22369
  *
22227
22370
  * @example
22228
22371
  * 593AE1C5-B70C-463F-9207-074639******
@@ -22230,7 +22373,10 @@ export class DescribeDasConfigResponseBody extends $dara.Model {
22230
22373
  requestId?: string;
22231
22374
  /**
22232
22375
  * @remarks
22233
- * Indicates whether the automatic storage expansion feature is enabled for the standard cluster.
22376
+ * Specifies whether to enable automatic storage scaling for the Standard Edition cluster. Valid values:
22377
+ *
22378
+ * * Enable
22379
+ * * Disable
22234
22380
  *
22235
22381
  * @example
22236
22382
  * Enable
@@ -22238,9 +22384,9 @@ export class DescribeDasConfigResponseBody extends $dara.Model {
22238
22384
  storageAutoScale?: string;
22239
22385
  /**
22240
22386
  * @remarks
22241
- * The maximum storage capacity of the standard cluster that is scaled up. Unit: GB.
22387
+ * The maximum storage capacity that is allowed for storage automatic scaling of the Standard Edition cluster. Unit: GB.
22242
22388
  *
22243
- * > This parameter is returned when the StorageAutoScale parameter is set to Enable.
22389
+ * > This parameter is valid only when the StorageAutoScale parameter is set to Enable.
22244
22390
  *
22245
22391
  * @example
22246
22392
  * 800
@@ -23017,7 +23163,7 @@ export class DescribeGlobalDatabaseNetworksRequest extends $dara.Model {
23017
23163
  ownerId?: number;
23018
23164
  /**
23019
23165
  * @remarks
23020
- * The page number. Default value: 1. The value must be an integer that is greater than 0.
23166
+ * The number of the page to return. Default value: 1. The value must be an integer that is greater than 0.
23021
23167
  *
23022
23168
  * @example
23023
23169
  * 1
@@ -23025,7 +23171,7 @@ export class DescribeGlobalDatabaseNetworksRequest extends $dara.Model {
23025
23171
  pageNumber?: number;
23026
23172
  /**
23027
23173
  * @remarks
23028
- * The number of entries to return on each page. Default value: 30. Valid values:
23174
+ * The number of entries per page. Default value: 30. Valid values:
23029
23175
  *
23030
23176
  * * 30
23031
23177
  * * 50
@@ -23748,7 +23894,7 @@ export class DescribeLicenseOrdersRequest extends $dara.Model {
23748
23894
  ownerId?: number;
23749
23895
  /**
23750
23896
  * @remarks
23751
- * The type of the package. Valid values:
23897
+ * The plan type. Valid values:
23752
23898
  *
23753
23899
  * * single_node_subscribe: Single-node Edition (Subscription).
23754
23900
  * * single_node_long_term: Single-node Edition (Long-term).
@@ -24114,6 +24260,7 @@ export class DescribeMaskingRulesRequest extends $dara.Model {
24114
24260
  * pc-*****************
24115
24261
  */
24116
24262
  DBClusterId?: string;
24263
+ interfaceVersion?: string;
24117
24264
  /**
24118
24265
  * @remarks
24119
24266
  * The name of the masking rule.
@@ -24125,6 +24272,7 @@ export class DescribeMaskingRulesRequest extends $dara.Model {
24125
24272
  static names(): { [key: string]: string } {
24126
24273
  return {
24127
24274
  DBClusterId: 'DBClusterId',
24275
+ interfaceVersion: 'InterfaceVersion',
24128
24276
  ruleNameList: 'RuleNameList',
24129
24277
  };
24130
24278
  }
@@ -24132,6 +24280,7 @@ export class DescribeMaskingRulesRequest extends $dara.Model {
24132
24280
  static types(): { [key: string]: any } {
24133
24281
  return {
24134
24282
  DBClusterId: 'string',
24283
+ interfaceVersion: 'string',
24135
24284
  ruleNameList: 'string',
24136
24285
  };
24137
24286
  }
@@ -25022,7 +25171,7 @@ export class DescribePendingMaintenanceActionRequest extends $dara.Model {
25022
25171
  ownerId?: number;
25023
25172
  /**
25024
25173
  * @remarks
25025
- * The page number. The value of this parameter must be an integer that is greater than 0. Default value: **1**.
25174
+ * The number of the page to return. Specify the parameter to a positive integer that does not exceed the maximum value of the INTEGER data type. Default value: **1**.
25026
25175
  *
25027
25176
  * @example
25028
25177
  * 1
@@ -25030,7 +25179,7 @@ export class DescribePendingMaintenanceActionRequest extends $dara.Model {
25030
25179
  pageNumber?: number;
25031
25180
  /**
25032
25181
  * @remarks
25033
- * The number of entries per page. Valid values: **30**, **50**, or **100**.
25182
+ * The number of entries per page. Valid values: **30**, **50**, and **100**.
25034
25183
  *
25035
25184
  * Default value: **30**.
25036
25185
  *
@@ -25931,9 +26080,9 @@ export class DescribeSlowLogRecordsRequest extends $dara.Model {
25931
26080
  ownerId?: number;
25932
26081
  /**
25933
26082
  * @remarks
25934
- * Page number, with a range greater than 0 and not exceeding the maximum value of Integer.
26083
+ * The page number. The value must be an integer that is greater than 0.
25935
26084
  *
25936
- * The default value is **1**.
26085
+ * Default value: **1**.
25937
26086
  *
25938
26087
  * @example
25939
26088
  * 1
@@ -25941,12 +26090,13 @@ export class DescribeSlowLogRecordsRequest extends $dara.Model {
25941
26090
  pageNumber?: number;
25942
26091
  /**
25943
26092
  * @remarks
25944
- * Number of records per page, with the following options:
25945
- * * **30**
25946
- * * **50**
25947
- * * **100**
26093
+ * The number of entries per page. Valid values:
26094
+ *
26095
+ * * **30**
26096
+ * * **50**
26097
+ * * **100**
25948
26098
  *
25949
- * The default value is **30**.
26099
+ * Default value: **30**.
25950
26100
  *
25951
26101
  * @example
25952
26102
  * 30
@@ -26190,7 +26340,7 @@ export class DescribeSlowLogsRequest extends $dara.Model {
26190
26340
  ownerId?: number;
26191
26341
  /**
26192
26342
  * @remarks
26193
- * The number of the page to return. Valid values: any non-zero positive integer.
26343
+ * The page number. Pages start from 1.
26194
26344
  *
26195
26345
  * Default value: 1.
26196
26346
  *
@@ -26449,7 +26599,7 @@ export class DescribeTasksRequest extends $dara.Model {
26449
26599
  ownerId?: number;
26450
26600
  /**
26451
26601
  * @remarks
26452
- * The page number of the page to return. The value is an integer that is greater than 0.
26602
+ * The page number. Pages start from page 1.
26453
26603
  *
26454
26604
  * Default value: **1**.
26455
26605
  *
@@ -26459,7 +26609,7 @@ export class DescribeTasksRequest extends $dara.Model {
26459
26609
  pageNumber?: number;
26460
26610
  /**
26461
26611
  * @remarks
26462
- * The number of entries to return per page. Valid values: **30**, **50**, and **100**.
26612
+ * The number of entries per page. Valid values: **30**, **50**, and **100**.
26463
26613
  *
26464
26614
  * Default value: **30**.
26465
26615
  *
@@ -26850,7 +27000,7 @@ export class DescribeVSwitchesRequest extends $dara.Model {
26850
27000
  pageNumber?: number;
26851
27001
  /**
26852
27002
  * @remarks
26853
- * The number of entries to return per page. Maximum value: 50. Default value: 50.
27003
+ * The number of entries to return on each page. Maximum value: 50. The default value is 50.
26854
27004
  *
26855
27005
  * @example
26856
27006
  * 50
@@ -26858,7 +27008,7 @@ export class DescribeVSwitchesRequest extends $dara.Model {
26858
27008
  pageSize?: number;
26859
27009
  /**
26860
27010
  * @remarks
26861
- * The ID of the region where the vSwitch belongs.
27011
+ * The ID of the region where the vSwitch is deployed.
26862
27012
  *
26863
27013
  * @example
26864
27014
  * cn-hangzhou
@@ -26971,7 +27121,7 @@ export class DescribeVSwitchesResponseBody extends $dara.Model {
26971
27121
  totalCount?: number;
26972
27122
  /**
26973
27123
  * @remarks
26974
- * The details of the vSwitch.
27124
+ * The vSwitches.
26975
27125
  */
26976
27126
  vSwitchs?: DescribeVSwitchesResponseBodyVSwitchs[];
26977
27127
  static names(): { [key: string]: string } {
@@ -30004,6 +30154,130 @@ export class ModifyDBClusterAndNodesParametersResponse extends $dara.Model {
30004
30154
  }
30005
30155
  }
30006
30156
 
30157
+ export class ModifyDBClusterArchRequest extends $dara.Model {
30158
+ /**
30159
+ * @example
30160
+ * pc-****************
30161
+ */
30162
+ DBClusterId?: string;
30163
+ /**
30164
+ * @example
30165
+ * on
30166
+ */
30167
+ hotStandbyCluster?: string;
30168
+ /**
30169
+ * @example
30170
+ * cn-beijing
30171
+ */
30172
+ regionId?: string;
30173
+ /**
30174
+ * @example
30175
+ * cn-beijing-i
30176
+ */
30177
+ standbyAZ?: string;
30178
+ static names(): { [key: string]: string } {
30179
+ return {
30180
+ DBClusterId: 'DBClusterId',
30181
+ hotStandbyCluster: 'HotStandbyCluster',
30182
+ regionId: 'RegionId',
30183
+ standbyAZ: 'StandbyAZ',
30184
+ };
30185
+ }
30186
+
30187
+ static types(): { [key: string]: any } {
30188
+ return {
30189
+ DBClusterId: 'string',
30190
+ hotStandbyCluster: 'string',
30191
+ regionId: 'string',
30192
+ standbyAZ: 'string',
30193
+ };
30194
+ }
30195
+
30196
+ validate() {
30197
+ super.validate();
30198
+ }
30199
+
30200
+ constructor(map?: { [key: string]: any }) {
30201
+ super(map);
30202
+ }
30203
+ }
30204
+
30205
+ export class ModifyDBClusterArchResponseBody extends $dara.Model {
30206
+ /**
30207
+ * @example
30208
+ * pc-**************
30209
+ */
30210
+ DBClusterId?: string;
30211
+ /**
30212
+ * @example
30213
+ * 2148126708*****
30214
+ */
30215
+ orderId?: string;
30216
+ /**
30217
+ * @example
30218
+ * 6A2EE5B4-CC9F-46E1-A747-E43BC9******
30219
+ */
30220
+ requestId?: string;
30221
+ static names(): { [key: string]: string } {
30222
+ return {
30223
+ DBClusterId: 'DBClusterId',
30224
+ orderId: 'OrderId',
30225
+ requestId: 'RequestId',
30226
+ };
30227
+ }
30228
+
30229
+ static types(): { [key: string]: any } {
30230
+ return {
30231
+ DBClusterId: 'string',
30232
+ orderId: 'string',
30233
+ requestId: 'string',
30234
+ };
30235
+ }
30236
+
30237
+ validate() {
30238
+ super.validate();
30239
+ }
30240
+
30241
+ constructor(map?: { [key: string]: any }) {
30242
+ super(map);
30243
+ }
30244
+ }
30245
+
30246
+ export class ModifyDBClusterArchResponse extends $dara.Model {
30247
+ headers?: { [key: string]: string };
30248
+ statusCode?: number;
30249
+ body?: ModifyDBClusterArchResponseBody;
30250
+ static names(): { [key: string]: string } {
30251
+ return {
30252
+ headers: 'headers',
30253
+ statusCode: 'statusCode',
30254
+ body: 'body',
30255
+ };
30256
+ }
30257
+
30258
+ static types(): { [key: string]: any } {
30259
+ return {
30260
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
30261
+ statusCode: 'number',
30262
+ body: ModifyDBClusterArchResponseBody,
30263
+ };
30264
+ }
30265
+
30266
+ validate() {
30267
+ if(this.headers) {
30268
+ $dara.Model.validateMap(this.headers);
30269
+ }
30270
+ if(this.body && typeof (this.body as any).validate === 'function') {
30271
+ (this.body as any).validate();
30272
+ }
30273
+ super.validate();
30274
+ }
30275
+
30276
+ constructor(map?: { [key: string]: any }) {
30277
+ super(map);
30278
+ }
30279
+ }
30280
+
30007
30281
  export class ModifyDBClusterAuditLogCollectorRequest extends $dara.Model {
30008
30282
  /**
30009
30283
  * @remarks
@@ -30553,11 +30827,6 @@ export class ModifyDBClusterEndpointRequest extends $dara.Model {
30553
30827
  * * **ON**
30554
30828
  * * **OFF**
30555
30829
  *
30556
- * Valid values:
30557
- *
30558
- * * on
30559
- * * off
30560
- *
30561
30830
  * @example
30562
30831
  * on
30563
30832
  */
@@ -31368,7 +31637,7 @@ export class ModifyDBClusterPrimaryZoneRequest extends $dara.Model {
31368
31637
  zoneId?: string;
31369
31638
  /**
31370
31639
  * @remarks
31371
- * The type of the zone. Valid values:
31640
+ * The zone type. Valid values:
31372
31641
  *
31373
31642
  * * **Primary**: primary zone
31374
31643
  * * **Standby**: secondary zone
@@ -31938,7 +32207,6 @@ export class ModifyDBClusterServerlessConfRequest extends $dara.Model {
31938
32207
  *
31939
32208
  * @example
31940
32209
  * normal
31941
- * flexible
31942
32210
  */
31943
32211
  serverlessRuleMode?: string;
31944
32212
  /**
@@ -32087,6 +32355,14 @@ export class ModifyDBClusterServerlessConfResponse extends $dara.Model {
32087
32355
 
32088
32356
  export class ModifyDBClusterStoragePerformanceRequest extends $dara.Model {
32089
32357
  /**
32358
+ * @remarks
32359
+ * Specifies whether to enable the I/O Burst feature for the ESSD AutoPL disk. Valid value:
32360
+ *
32361
+ * * **true**
32362
+ * * **false** (default)
32363
+ *
32364
+ * > This parameter is available only when the StorageType parameter is set to ESSDAUTOPL.
32365
+ *
32090
32366
  * @example
32091
32367
  * false
32092
32368
  */
@@ -34508,6 +34784,7 @@ export class ModifyMaskingRulesRequest extends $dara.Model {
34508
34784
  * true
34509
34785
  */
34510
34786
  enable?: string;
34787
+ interfaceVersion?: string;
34511
34788
  /**
34512
34789
  * @remarks
34513
34790
  * The parameter that is used to specify the masking rule that you want to modify and the value in the JSON format. All parameter values are of the string type. Example: `{"auto": {"databases": ["db1"], "tables": ["tb1"], "columns": ["c1,c2"] }, "description": "This rule will be applied to the columns c1 and c2 in table t1", "enabled": true, "applies_to": ["user"]}`. Parameters in the function:
@@ -34564,6 +34841,7 @@ export class ModifyMaskingRulesRequest extends $dara.Model {
34564
34841
  return {
34565
34842
  DBClusterId: 'DBClusterId',
34566
34843
  enable: 'Enable',
34844
+ interfaceVersion: 'InterfaceVersion',
34567
34845
  ruleConfig: 'RuleConfig',
34568
34846
  ruleName: 'RuleName',
34569
34847
  ruleNameList: 'RuleNameList',
@@ -34575,6 +34853,7 @@ export class ModifyMaskingRulesRequest extends $dara.Model {
34575
34853
  return {
34576
34854
  DBClusterId: 'string',
34577
34855
  enable: 'string',
34856
+ interfaceVersion: 'string',
34578
34857
  ruleConfig: 'string',
34579
34858
  ruleName: 'string',
34580
34859
  ruleNameList: 'string',
@@ -37292,7 +37571,12 @@ export default class Client extends OpenApi {
37292
37571
  reqBodyType: "formData",
37293
37572
  bodyType: "json",
37294
37573
  });
37295
- return $dara.cast<CancelActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new CancelActiveOperationTasksResponse({}));
37574
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
37575
+ return $dara.cast<CancelActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new CancelActiveOperationTasksResponse({}));
37576
+ } else {
37577
+ return $dara.cast<CancelActiveOperationTasksResponse>(await this.execute(params, req, runtime), new CancelActiveOperationTasksResponse({}));
37578
+ }
37579
+
37296
37580
  }
37297
37581
 
37298
37582
  /**
@@ -37358,7 +37642,12 @@ export default class Client extends OpenApi {
37358
37642
  reqBodyType: "formData",
37359
37643
  bodyType: "json",
37360
37644
  });
37361
- return $dara.cast<CancelScheduleTasksResponse>(await this.callApi(params, req, runtime), new CancelScheduleTasksResponse({}));
37645
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
37646
+ return $dara.cast<CancelScheduleTasksResponse>(await this.callApi(params, req, runtime), new CancelScheduleTasksResponse({}));
37647
+ } else {
37648
+ return $dara.cast<CancelScheduleTasksResponse>(await this.execute(params, req, runtime), new CancelScheduleTasksResponse({}));
37649
+ }
37650
+
37362
37651
  }
37363
37652
 
37364
37653
  /**
@@ -37420,7 +37709,12 @@ export default class Client extends OpenApi {
37420
37709
  reqBodyType: "formData",
37421
37710
  bodyType: "json",
37422
37711
  });
37423
- return $dara.cast<CheckAccountNameResponse>(await this.callApi(params, req, runtime), new CheckAccountNameResponse({}));
37712
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
37713
+ return $dara.cast<CheckAccountNameResponse>(await this.callApi(params, req, runtime), new CheckAccountNameResponse({}));
37714
+ } else {
37715
+ return $dara.cast<CheckAccountNameResponse>(await this.execute(params, req, runtime), new CheckAccountNameResponse({}));
37716
+ }
37717
+
37424
37718
  }
37425
37719
 
37426
37720
  /**
@@ -37482,7 +37776,12 @@ export default class Client extends OpenApi {
37482
37776
  reqBodyType: "formData",
37483
37777
  bodyType: "json",
37484
37778
  });
37485
- return $dara.cast<CheckDBNameResponse>(await this.callApi(params, req, runtime), new CheckDBNameResponse({}));
37779
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
37780
+ return $dara.cast<CheckDBNameResponse>(await this.callApi(params, req, runtime), new CheckDBNameResponse({}));
37781
+ } else {
37782
+ return $dara.cast<CheckDBNameResponse>(await this.execute(params, req, runtime), new CheckDBNameResponse({}));
37783
+ }
37784
+
37486
37785
  }
37487
37786
 
37488
37787
  /**
@@ -37548,7 +37847,12 @@ export default class Client extends OpenApi {
37548
37847
  reqBodyType: "formData",
37549
37848
  bodyType: "json",
37550
37849
  });
37551
- return $dara.cast<CheckKMSAuthorizedResponse>(await this.callApi(params, req, runtime), new CheckKMSAuthorizedResponse({}));
37850
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
37851
+ return $dara.cast<CheckKMSAuthorizedResponse>(await this.callApi(params, req, runtime), new CheckKMSAuthorizedResponse({}));
37852
+ } else {
37853
+ return $dara.cast<CheckKMSAuthorizedResponse>(await this.execute(params, req, runtime), new CheckKMSAuthorizedResponse({}));
37854
+ }
37855
+
37552
37856
  }
37553
37857
 
37554
37858
  /**
@@ -37602,7 +37906,12 @@ export default class Client extends OpenApi {
37602
37906
  reqBodyType: "formData",
37603
37907
  bodyType: "json",
37604
37908
  });
37605
- return $dara.cast<CheckServiceLinkedRoleResponse>(await this.callApi(params, req, runtime), new CheckServiceLinkedRoleResponse({}));
37909
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
37910
+ return $dara.cast<CheckServiceLinkedRoleResponse>(await this.callApi(params, req, runtime), new CheckServiceLinkedRoleResponse({}));
37911
+ } else {
37912
+ return $dara.cast<CheckServiceLinkedRoleResponse>(await this.execute(params, req, runtime), new CheckServiceLinkedRoleResponse({}));
37913
+ }
37914
+
37606
37915
  }
37607
37916
 
37608
37917
  /**
@@ -37664,7 +37973,12 @@ export default class Client extends OpenApi {
37664
37973
  reqBodyType: "formData",
37665
37974
  bodyType: "json",
37666
37975
  });
37667
- return $dara.cast<CloseAITaskResponse>(await this.callApi(params, req, runtime), new CloseAITaskResponse({}));
37976
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
37977
+ return $dara.cast<CloseAITaskResponse>(await this.callApi(params, req, runtime), new CloseAITaskResponse({}));
37978
+ } else {
37979
+ return $dara.cast<CloseAITaskResponse>(await this.execute(params, req, runtime), new CloseAITaskResponse({}));
37980
+ }
37981
+
37668
37982
  }
37669
37983
 
37670
37984
  /**
@@ -37731,7 +38045,12 @@ export default class Client extends OpenApi {
37731
38045
  reqBodyType: "formData",
37732
38046
  bodyType: "json",
37733
38047
  });
37734
- return $dara.cast<CloseDBClusterMigrationResponse>(await this.callApi(params, req, runtime), new CloseDBClusterMigrationResponse({}));
38048
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38049
+ return $dara.cast<CloseDBClusterMigrationResponse>(await this.callApi(params, req, runtime), new CloseDBClusterMigrationResponse({}));
38050
+ } else {
38051
+ return $dara.cast<CloseDBClusterMigrationResponse>(await this.execute(params, req, runtime), new CloseDBClusterMigrationResponse({}));
38052
+ }
38053
+
37735
38054
  }
37736
38055
 
37737
38056
  /**
@@ -37792,6 +38111,10 @@ export default class Client extends OpenApi {
37792
38111
  query["DBName"] = request.DBName;
37793
38112
  }
37794
38113
 
38114
+ if (!$dara.isNull(request.nodeType)) {
38115
+ query["NodeType"] = request.nodeType;
38116
+ }
38117
+
37795
38118
  if (!$dara.isNull(request.ownerAccount)) {
37796
38119
  query["OwnerAccount"] = request.ownerAccount;
37797
38120
  }
@@ -37826,7 +38149,12 @@ export default class Client extends OpenApi {
37826
38149
  reqBodyType: "formData",
37827
38150
  bodyType: "json",
37828
38151
  });
37829
- return $dara.cast<CreateAccountResponse>(await this.callApi(params, req, runtime), new CreateAccountResponse({}));
38152
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38153
+ return $dara.cast<CreateAccountResponse>(await this.callApi(params, req, runtime), new CreateAccountResponse({}));
38154
+ } else {
38155
+ return $dara.cast<CreateAccountResponse>(await this.execute(params, req, runtime), new CreateAccountResponse({}));
38156
+ }
38157
+
37830
38158
  }
37831
38159
 
37832
38160
  /**
@@ -37900,7 +38228,12 @@ export default class Client extends OpenApi {
37900
38228
  reqBodyType: "formData",
37901
38229
  bodyType: "json",
37902
38230
  });
37903
- return $dara.cast<CreateActivationCodeResponse>(await this.callApi(params, req, runtime), new CreateActivationCodeResponse({}));
38231
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38232
+ return $dara.cast<CreateActivationCodeResponse>(await this.callApi(params, req, runtime), new CreateActivationCodeResponse({}));
38233
+ } else {
38234
+ return $dara.cast<CreateActivationCodeResponse>(await this.execute(params, req, runtime), new CreateActivationCodeResponse({}));
38235
+ }
38236
+
37904
38237
  }
37905
38238
 
37906
38239
  /**
@@ -37968,7 +38301,12 @@ export default class Client extends OpenApi {
37968
38301
  reqBodyType: "formData",
37969
38302
  bodyType: "json",
37970
38303
  });
37971
- return $dara.cast<CreateBackupResponse>(await this.callApi(params, req, runtime), new CreateBackupResponse({}));
38304
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38305
+ return $dara.cast<CreateBackupResponse>(await this.callApi(params, req, runtime), new CreateBackupResponse({}));
38306
+ } else {
38307
+ return $dara.cast<CreateBackupResponse>(await this.execute(params, req, runtime), new CreateBackupResponse({}));
38308
+ }
38309
+
37972
38310
  }
37973
38311
 
37974
38312
  /**
@@ -38044,7 +38382,12 @@ export default class Client extends OpenApi {
38044
38382
  reqBodyType: "formData",
38045
38383
  bodyType: "json",
38046
38384
  });
38047
- return $dara.cast<CreateColdStorageInstanceResponse>(await this.callApi(params, req, runtime), new CreateColdStorageInstanceResponse({}));
38385
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38386
+ return $dara.cast<CreateColdStorageInstanceResponse>(await this.callApi(params, req, runtime), new CreateColdStorageInstanceResponse({}));
38387
+ } else {
38388
+ return $dara.cast<CreateColdStorageInstanceResponse>(await this.execute(params, req, runtime), new CreateColdStorageInstanceResponse({}));
38389
+ }
38390
+
38048
38391
  }
38049
38392
 
38050
38393
  /**
@@ -38314,7 +38657,12 @@ export default class Client extends OpenApi {
38314
38657
  reqBodyType: "formData",
38315
38658
  bodyType: "json",
38316
38659
  });
38317
- return $dara.cast<CreateDBClusterResponse>(await this.callApi(params, req, runtime), new CreateDBClusterResponse({}));
38660
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38661
+ return $dara.cast<CreateDBClusterResponse>(await this.callApi(params, req, runtime), new CreateDBClusterResponse({}));
38662
+ } else {
38663
+ return $dara.cast<CreateDBClusterResponse>(await this.execute(params, req, runtime), new CreateDBClusterResponse({}));
38664
+ }
38665
+
38318
38666
  }
38319
38667
 
38320
38668
  /**
@@ -38412,7 +38760,12 @@ export default class Client extends OpenApi {
38412
38760
  reqBodyType: "formData",
38413
38761
  bodyType: "json",
38414
38762
  });
38415
- return $dara.cast<CreateDBClusterEndpointResponse>(await this.callApi(params, req, runtime), new CreateDBClusterEndpointResponse({}));
38763
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38764
+ return $dara.cast<CreateDBClusterEndpointResponse>(await this.callApi(params, req, runtime), new CreateDBClusterEndpointResponse({}));
38765
+ } else {
38766
+ return $dara.cast<CreateDBClusterEndpointResponse>(await this.execute(params, req, runtime), new CreateDBClusterEndpointResponse({}));
38767
+ }
38768
+
38416
38769
  }
38417
38770
 
38418
38771
  /**
@@ -38497,7 +38850,12 @@ export default class Client extends OpenApi {
38497
38850
  reqBodyType: "formData",
38498
38851
  bodyType: "json",
38499
38852
  });
38500
- return $dara.cast<CreateDBEndpointAddressResponse>(await this.callApi(params, req, runtime), new CreateDBEndpointAddressResponse({}));
38853
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38854
+ return $dara.cast<CreateDBEndpointAddressResponse>(await this.callApi(params, req, runtime), new CreateDBEndpointAddressResponse({}));
38855
+ } else {
38856
+ return $dara.cast<CreateDBEndpointAddressResponse>(await this.execute(params, req, runtime), new CreateDBEndpointAddressResponse({}));
38857
+ }
38858
+
38501
38859
  }
38502
38860
 
38503
38861
  /**
@@ -38612,7 +38970,12 @@ export default class Client extends OpenApi {
38612
38970
  reqBodyType: "formData",
38613
38971
  bodyType: "json",
38614
38972
  });
38615
- return $dara.cast<CreateDBLinkResponse>(await this.callApi(params, req, runtime), new CreateDBLinkResponse({}));
38973
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
38974
+ return $dara.cast<CreateDBLinkResponse>(await this.callApi(params, req, runtime), new CreateDBLinkResponse({}));
38975
+ } else {
38976
+ return $dara.cast<CreateDBLinkResponse>(await this.execute(params, req, runtime), new CreateDBLinkResponse({}));
38977
+ }
38978
+
38616
38979
  }
38617
38980
 
38618
38981
  /**
@@ -38708,7 +39071,12 @@ export default class Client extends OpenApi {
38708
39071
  reqBodyType: "formData",
38709
39072
  bodyType: "json",
38710
39073
  });
38711
- return $dara.cast<CreateDBNodesResponse>(await this.callApi(params, req, runtime), new CreateDBNodesResponse({}));
39074
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39075
+ return $dara.cast<CreateDBNodesResponse>(await this.callApi(params, req, runtime), new CreateDBNodesResponse({}));
39076
+ } else {
39077
+ return $dara.cast<CreateDBNodesResponse>(await this.execute(params, req, runtime), new CreateDBNodesResponse({}));
39078
+ }
39079
+
38712
39080
  }
38713
39081
 
38714
39082
  /**
@@ -38799,7 +39167,12 @@ export default class Client extends OpenApi {
38799
39167
  reqBodyType: "formData",
38800
39168
  bodyType: "json",
38801
39169
  });
38802
- return $dara.cast<CreateDatabaseResponse>(await this.callApi(params, req, runtime), new CreateDatabaseResponse({}));
39170
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39171
+ return $dara.cast<CreateDatabaseResponse>(await this.callApi(params, req, runtime), new CreateDatabaseResponse({}));
39172
+ } else {
39173
+ return $dara.cast<CreateDatabaseResponse>(await this.execute(params, req, runtime), new CreateDatabaseResponse({}));
39174
+ }
39175
+
38803
39176
  }
38804
39177
 
38805
39178
  /**
@@ -38881,7 +39254,12 @@ export default class Client extends OpenApi {
38881
39254
  reqBodyType: "formData",
38882
39255
  bodyType: "json",
38883
39256
  });
38884
- return $dara.cast<CreateGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new CreateGlobalDatabaseNetworkResponse({}));
39257
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39258
+ return $dara.cast<CreateGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new CreateGlobalDatabaseNetworkResponse({}));
39259
+ } else {
39260
+ return $dara.cast<CreateGlobalDatabaseNetworkResponse>(await this.execute(params, req, runtime), new CreateGlobalDatabaseNetworkResponse({}));
39261
+ }
39262
+
38885
39263
  }
38886
39264
 
38887
39265
  /**
@@ -38958,7 +39336,12 @@ export default class Client extends OpenApi {
38958
39336
  reqBodyType: "formData",
38959
39337
  bodyType: "json",
38960
39338
  });
38961
- return $dara.cast<CreateGlobalSecurityIPGroupResponse>(await this.callApi(params, req, runtime), new CreateGlobalSecurityIPGroupResponse({}));
39339
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39340
+ return $dara.cast<CreateGlobalSecurityIPGroupResponse>(await this.callApi(params, req, runtime), new CreateGlobalSecurityIPGroupResponse({}));
39341
+ } else {
39342
+ return $dara.cast<CreateGlobalSecurityIPGroupResponse>(await this.execute(params, req, runtime), new CreateGlobalSecurityIPGroupResponse({}));
39343
+ }
39344
+
38962
39345
  }
38963
39346
 
38964
39347
  /**
@@ -39016,7 +39399,12 @@ export default class Client extends OpenApi {
39016
39399
  reqBodyType: "formData",
39017
39400
  bodyType: "json",
39018
39401
  });
39019
- return $dara.cast<CreateOrGetVirtualLicenseOrderResponse>(await this.callApi(params, req, runtime), new CreateOrGetVirtualLicenseOrderResponse({}));
39402
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39403
+ return $dara.cast<CreateOrGetVirtualLicenseOrderResponse>(await this.callApi(params, req, runtime), new CreateOrGetVirtualLicenseOrderResponse({}));
39404
+ } else {
39405
+ return $dara.cast<CreateOrGetVirtualLicenseOrderResponse>(await this.execute(params, req, runtime), new CreateOrGetVirtualLicenseOrderResponse({}));
39406
+ }
39407
+
39020
39408
  }
39021
39409
 
39022
39410
  /**
@@ -39102,7 +39490,12 @@ export default class Client extends OpenApi {
39102
39490
  reqBodyType: "formData",
39103
39491
  bodyType: "json",
39104
39492
  });
39105
- return $dara.cast<CreateParameterGroupResponse>(await this.callApi(params, req, runtime), new CreateParameterGroupResponse({}));
39493
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39494
+ return $dara.cast<CreateParameterGroupResponse>(await this.callApi(params, req, runtime), new CreateParameterGroupResponse({}));
39495
+ } else {
39496
+ return $dara.cast<CreateParameterGroupResponse>(await this.execute(params, req, runtime), new CreateParameterGroupResponse({}));
39497
+ }
39498
+
39106
39499
  }
39107
39500
 
39108
39501
  /**
@@ -39160,7 +39553,12 @@ export default class Client extends OpenApi {
39160
39553
  reqBodyType: "formData",
39161
39554
  bodyType: "json",
39162
39555
  });
39163
- return $dara.cast<CreateServiceLinkedRoleResponse>(await this.callApi(params, req, runtime), new CreateServiceLinkedRoleResponse({}));
39556
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39557
+ return $dara.cast<CreateServiceLinkedRoleResponse>(await this.callApi(params, req, runtime), new CreateServiceLinkedRoleResponse({}));
39558
+ } else {
39559
+ return $dara.cast<CreateServiceLinkedRoleResponse>(await this.execute(params, req, runtime), new CreateServiceLinkedRoleResponse({}));
39560
+ }
39561
+
39164
39562
  }
39165
39563
 
39166
39564
  /**
@@ -39234,7 +39632,12 @@ export default class Client extends OpenApi {
39234
39632
  reqBodyType: "formData",
39235
39633
  bodyType: "json",
39236
39634
  });
39237
- return $dara.cast<CreateStoragePlanResponse>(await this.callApi(params, req, runtime), new CreateStoragePlanResponse({}));
39635
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39636
+ return $dara.cast<CreateStoragePlanResponse>(await this.callApi(params, req, runtime), new CreateStoragePlanResponse({}));
39637
+ } else {
39638
+ return $dara.cast<CreateStoragePlanResponse>(await this.execute(params, req, runtime), new CreateStoragePlanResponse({}));
39639
+ }
39640
+
39238
39641
  }
39239
39642
 
39240
39643
  /**
@@ -39299,7 +39702,12 @@ export default class Client extends OpenApi {
39299
39702
  reqBodyType: "formData",
39300
39703
  bodyType: "json",
39301
39704
  });
39302
- return $dara.cast<DeleteAccountResponse>(await this.callApi(params, req, runtime), new DeleteAccountResponse({}));
39705
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39706
+ return $dara.cast<DeleteAccountResponse>(await this.callApi(params, req, runtime), new DeleteAccountResponse({}));
39707
+ } else {
39708
+ return $dara.cast<DeleteAccountResponse>(await this.execute(params, req, runtime), new DeleteAccountResponse({}));
39709
+ }
39710
+
39303
39711
  }
39304
39712
 
39305
39713
  /**
@@ -39371,7 +39779,12 @@ export default class Client extends OpenApi {
39371
39779
  reqBodyType: "formData",
39372
39780
  bodyType: "json",
39373
39781
  });
39374
- return $dara.cast<DeleteBackupResponse>(await this.callApi(params, req, runtime), new DeleteBackupResponse({}));
39782
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39783
+ return $dara.cast<DeleteBackupResponse>(await this.callApi(params, req, runtime), new DeleteBackupResponse({}));
39784
+ } else {
39785
+ return $dara.cast<DeleteBackupResponse>(await this.execute(params, req, runtime), new DeleteBackupResponse({}));
39786
+ }
39787
+
39375
39788
  }
39376
39789
 
39377
39790
  /**
@@ -39440,7 +39853,12 @@ export default class Client extends OpenApi {
39440
39853
  reqBodyType: "formData",
39441
39854
  bodyType: "json",
39442
39855
  });
39443
- return $dara.cast<DeleteDBClusterResponse>(await this.callApi(params, req, runtime), new DeleteDBClusterResponse({}));
39856
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39857
+ return $dara.cast<DeleteDBClusterResponse>(await this.callApi(params, req, runtime), new DeleteDBClusterResponse({}));
39858
+ } else {
39859
+ return $dara.cast<DeleteDBClusterResponse>(await this.execute(params, req, runtime), new DeleteDBClusterResponse({}));
39860
+ }
39861
+
39444
39862
  }
39445
39863
 
39446
39864
  /**
@@ -39502,7 +39920,12 @@ export default class Client extends OpenApi {
39502
39920
  reqBodyType: "formData",
39503
39921
  bodyType: "json",
39504
39922
  });
39505
- return $dara.cast<DeleteDBClusterEndpointResponse>(await this.callApi(params, req, runtime), new DeleteDBClusterEndpointResponse({}));
39923
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39924
+ return $dara.cast<DeleteDBClusterEndpointResponse>(await this.callApi(params, req, runtime), new DeleteDBClusterEndpointResponse({}));
39925
+ } else {
39926
+ return $dara.cast<DeleteDBClusterEndpointResponse>(await this.execute(params, req, runtime), new DeleteDBClusterEndpointResponse({}));
39927
+ }
39928
+
39506
39929
  }
39507
39930
 
39508
39931
  /**
@@ -39572,7 +39995,12 @@ export default class Client extends OpenApi {
39572
39995
  reqBodyType: "formData",
39573
39996
  bodyType: "json",
39574
39997
  });
39575
- return $dara.cast<DeleteDBEndpointAddressResponse>(await this.callApi(params, req, runtime), new DeleteDBEndpointAddressResponse({}));
39998
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
39999
+ return $dara.cast<DeleteDBEndpointAddressResponse>(await this.callApi(params, req, runtime), new DeleteDBEndpointAddressResponse({}));
40000
+ } else {
40001
+ return $dara.cast<DeleteDBEndpointAddressResponse>(await this.execute(params, req, runtime), new DeleteDBEndpointAddressResponse({}));
40002
+ }
40003
+
39576
40004
  }
39577
40005
 
39578
40006
  /**
@@ -39638,7 +40066,12 @@ export default class Client extends OpenApi {
39638
40066
  reqBodyType: "formData",
39639
40067
  bodyType: "json",
39640
40068
  });
39641
- return $dara.cast<DeleteDBLinkResponse>(await this.callApi(params, req, runtime), new DeleteDBLinkResponse({}));
40069
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40070
+ return $dara.cast<DeleteDBLinkResponse>(await this.callApi(params, req, runtime), new DeleteDBLinkResponse({}));
40071
+ } else {
40072
+ return $dara.cast<DeleteDBLinkResponse>(await this.execute(params, req, runtime), new DeleteDBLinkResponse({}));
40073
+ }
40074
+
39642
40075
  }
39643
40076
 
39644
40077
  /**
@@ -39708,7 +40141,12 @@ export default class Client extends OpenApi {
39708
40141
  reqBodyType: "formData",
39709
40142
  bodyType: "json",
39710
40143
  });
39711
- return $dara.cast<DeleteDBNodesResponse>(await this.callApi(params, req, runtime), new DeleteDBNodesResponse({}));
40144
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40145
+ return $dara.cast<DeleteDBNodesResponse>(await this.callApi(params, req, runtime), new DeleteDBNodesResponse({}));
40146
+ } else {
40147
+ return $dara.cast<DeleteDBNodesResponse>(await this.execute(params, req, runtime), new DeleteDBNodesResponse({}));
40148
+ }
40149
+
39712
40150
  }
39713
40151
 
39714
40152
  /**
@@ -39774,7 +40212,12 @@ export default class Client extends OpenApi {
39774
40212
  reqBodyType: "formData",
39775
40213
  bodyType: "json",
39776
40214
  });
39777
- return $dara.cast<DeleteDatabaseResponse>(await this.callApi(params, req, runtime), new DeleteDatabaseResponse({}));
40215
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40216
+ return $dara.cast<DeleteDatabaseResponse>(await this.callApi(params, req, runtime), new DeleteDatabaseResponse({}));
40217
+ } else {
40218
+ return $dara.cast<DeleteDatabaseResponse>(await this.execute(params, req, runtime), new DeleteDatabaseResponse({}));
40219
+ }
40220
+
39778
40221
  }
39779
40222
 
39780
40223
  /**
@@ -39847,7 +40290,12 @@ export default class Client extends OpenApi {
39847
40290
  reqBodyType: "formData",
39848
40291
  bodyType: "json",
39849
40292
  });
39850
- return $dara.cast<DeleteGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new DeleteGlobalDatabaseNetworkResponse({}));
40293
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40294
+ return $dara.cast<DeleteGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new DeleteGlobalDatabaseNetworkResponse({}));
40295
+ } else {
40296
+ return $dara.cast<DeleteGlobalDatabaseNetworkResponse>(await this.execute(params, req, runtime), new DeleteGlobalDatabaseNetworkResponse({}));
40297
+ }
40298
+
39851
40299
  }
39852
40300
 
39853
40301
  /**
@@ -39924,7 +40372,12 @@ export default class Client extends OpenApi {
39924
40372
  reqBodyType: "formData",
39925
40373
  bodyType: "json",
39926
40374
  });
39927
- return $dara.cast<DeleteGlobalSecurityIPGroupResponse>(await this.callApi(params, req, runtime), new DeleteGlobalSecurityIPGroupResponse({}));
40375
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40376
+ return $dara.cast<DeleteGlobalSecurityIPGroupResponse>(await this.callApi(params, req, runtime), new DeleteGlobalSecurityIPGroupResponse({}));
40377
+ } else {
40378
+ return $dara.cast<DeleteGlobalSecurityIPGroupResponse>(await this.execute(params, req, runtime), new DeleteGlobalSecurityIPGroupResponse({}));
40379
+ }
40380
+
39928
40381
  }
39929
40382
 
39930
40383
  /**
@@ -39952,6 +40405,10 @@ export default class Client extends OpenApi {
39952
40405
  query["DBClusterId"] = request.DBClusterId;
39953
40406
  }
39954
40407
 
40408
+ if (!$dara.isNull(request.interfaceVersion)) {
40409
+ query["InterfaceVersion"] = request.interfaceVersion;
40410
+ }
40411
+
39955
40412
  if (!$dara.isNull(request.ruleNameList)) {
39956
40413
  query["RuleNameList"] = request.ruleNameList;
39957
40414
  }
@@ -39970,7 +40427,12 @@ export default class Client extends OpenApi {
39970
40427
  reqBodyType: "formData",
39971
40428
  bodyType: "json",
39972
40429
  });
39973
- return $dara.cast<DeleteMaskingRulesResponse>(await this.callApi(params, req, runtime), new DeleteMaskingRulesResponse({}));
40430
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40431
+ return $dara.cast<DeleteMaskingRulesResponse>(await this.callApi(params, req, runtime), new DeleteMaskingRulesResponse({}));
40432
+ } else {
40433
+ return $dara.cast<DeleteMaskingRulesResponse>(await this.execute(params, req, runtime), new DeleteMaskingRulesResponse({}));
40434
+ }
40435
+
39974
40436
  }
39975
40437
 
39976
40438
  /**
@@ -40040,7 +40502,12 @@ export default class Client extends OpenApi {
40040
40502
  reqBodyType: "formData",
40041
40503
  bodyType: "json",
40042
40504
  });
40043
- return $dara.cast<DeleteParameterGroupResponse>(await this.callApi(params, req, runtime), new DeleteParameterGroupResponse({}));
40505
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40506
+ return $dara.cast<DeleteParameterGroupResponse>(await this.callApi(params, req, runtime), new DeleteParameterGroupResponse({}));
40507
+ } else {
40508
+ return $dara.cast<DeleteParameterGroupResponse>(await this.execute(params, req, runtime), new DeleteParameterGroupResponse({}));
40509
+ }
40510
+
40044
40511
  }
40045
40512
 
40046
40513
  /**
@@ -40082,7 +40549,12 @@ export default class Client extends OpenApi {
40082
40549
  reqBodyType: "formData",
40083
40550
  bodyType: "json",
40084
40551
  });
40085
- return $dara.cast<DescribeAITaskStatusResponse>(await this.callApi(params, req, runtime), new DescribeAITaskStatusResponse({}));
40552
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40553
+ return $dara.cast<DescribeAITaskStatusResponse>(await this.callApi(params, req, runtime), new DescribeAITaskStatusResponse({}));
40554
+ } else {
40555
+ return $dara.cast<DescribeAITaskStatusResponse>(await this.execute(params, req, runtime), new DescribeAITaskStatusResponse({}));
40556
+ }
40557
+
40086
40558
  }
40087
40559
 
40088
40560
  /**
@@ -40114,6 +40586,10 @@ export default class Client extends OpenApi {
40114
40586
  query["DBClusterId"] = request.DBClusterId;
40115
40587
  }
40116
40588
 
40589
+ if (!$dara.isNull(request.nodeType)) {
40590
+ query["NodeType"] = request.nodeType;
40591
+ }
40592
+
40117
40593
  if (!$dara.isNull(request.ownerAccount)) {
40118
40594
  query["OwnerAccount"] = request.ownerAccount;
40119
40595
  }
@@ -40152,7 +40628,12 @@ export default class Client extends OpenApi {
40152
40628
  reqBodyType: "formData",
40153
40629
  bodyType: "json",
40154
40630
  });
40155
- return $dara.cast<DescribeAccountsResponse>(await this.callApi(params, req, runtime), new DescribeAccountsResponse({}));
40631
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40632
+ return $dara.cast<DescribeAccountsResponse>(await this.callApi(params, req, runtime), new DescribeAccountsResponse({}));
40633
+ } else {
40634
+ return $dara.cast<DescribeAccountsResponse>(await this.execute(params, req, runtime), new DescribeAccountsResponse({}));
40635
+ }
40636
+
40156
40637
  }
40157
40638
 
40158
40639
  /**
@@ -40214,7 +40695,12 @@ export default class Client extends OpenApi {
40214
40695
  reqBodyType: "formData",
40215
40696
  bodyType: "json",
40216
40697
  });
40217
- return $dara.cast<DescribeActivationCodeDetailsResponse>(await this.callApi(params, req, runtime), new DescribeActivationCodeDetailsResponse({}));
40698
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40699
+ return $dara.cast<DescribeActivationCodeDetailsResponse>(await this.callApi(params, req, runtime), new DescribeActivationCodeDetailsResponse({}));
40700
+ } else {
40701
+ return $dara.cast<DescribeActivationCodeDetailsResponse>(await this.execute(params, req, runtime), new DescribeActivationCodeDetailsResponse({}));
40702
+ }
40703
+
40218
40704
  }
40219
40705
 
40220
40706
  /**
@@ -40242,6 +40728,10 @@ export default class Client extends OpenApi {
40242
40728
  query["AliyunOrderId"] = request.aliyunOrderId;
40243
40729
  }
40244
40730
 
40731
+ if (!$dara.isNull(request.macAddress)) {
40732
+ query["MacAddress"] = request.macAddress;
40733
+ }
40734
+
40245
40735
  if (!$dara.isNull(request.ownerAccount)) {
40246
40736
  query["OwnerAccount"] = request.ownerAccount;
40247
40737
  }
@@ -40266,6 +40756,10 @@ export default class Client extends OpenApi {
40266
40756
  query["ResourceOwnerId"] = request.resourceOwnerId;
40267
40757
  }
40268
40758
 
40759
+ if (!$dara.isNull(request.systemIdentifier)) {
40760
+ query["SystemIdentifier"] = request.systemIdentifier;
40761
+ }
40762
+
40269
40763
  let req = new $OpenApiUtil.OpenApiRequest({
40270
40764
  query: OpenApiUtil.query(query),
40271
40765
  });
@@ -40280,7 +40774,12 @@ export default class Client extends OpenApi {
40280
40774
  reqBodyType: "formData",
40281
40775
  bodyType: "json",
40282
40776
  });
40283
- return $dara.cast<DescribeActivationCodesResponse>(await this.callApi(params, req, runtime), new DescribeActivationCodesResponse({}));
40777
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40778
+ return $dara.cast<DescribeActivationCodesResponse>(await this.callApi(params, req, runtime), new DescribeActivationCodesResponse({}));
40779
+ } else {
40780
+ return $dara.cast<DescribeActivationCodesResponse>(await this.execute(params, req, runtime), new DescribeActivationCodesResponse({}));
40781
+ }
40782
+
40284
40783
  }
40285
40784
 
40286
40785
  /**
@@ -40378,7 +40877,12 @@ export default class Client extends OpenApi {
40378
40877
  reqBodyType: "formData",
40379
40878
  bodyType: "json",
40380
40879
  });
40381
- return $dara.cast<DescribeActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new DescribeActiveOperationTasksResponse({}));
40880
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40881
+ return $dara.cast<DescribeActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new DescribeActiveOperationTasksResponse({}));
40882
+ } else {
40883
+ return $dara.cast<DescribeActiveOperationTasksResponse>(await this.execute(params, req, runtime), new DescribeActiveOperationTasksResponse({}));
40884
+ }
40885
+
40382
40886
  }
40383
40887
 
40384
40888
  /**
@@ -40452,7 +40956,12 @@ export default class Client extends OpenApi {
40452
40956
  reqBodyType: "formData",
40453
40957
  bodyType: "json",
40454
40958
  });
40455
- return $dara.cast<DescribeAutoRenewAttributeResponse>(await this.callApi(params, req, runtime), new DescribeAutoRenewAttributeResponse({}));
40959
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
40960
+ return $dara.cast<DescribeAutoRenewAttributeResponse>(await this.callApi(params, req, runtime), new DescribeAutoRenewAttributeResponse({}));
40961
+ } else {
40962
+ return $dara.cast<DescribeAutoRenewAttributeResponse>(await this.execute(params, req, runtime), new DescribeAutoRenewAttributeResponse({}));
40963
+ }
40964
+
40456
40965
  }
40457
40966
 
40458
40967
  /**
@@ -40530,7 +41039,12 @@ export default class Client extends OpenApi {
40530
41039
  reqBodyType: "formData",
40531
41040
  bodyType: "json",
40532
41041
  });
40533
- return $dara.cast<DescribeBackupLogsResponse>(await this.callApi(params, req, runtime), new DescribeBackupLogsResponse({}));
41042
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41043
+ return $dara.cast<DescribeBackupLogsResponse>(await this.callApi(params, req, runtime), new DescribeBackupLogsResponse({}));
41044
+ } else {
41045
+ return $dara.cast<DescribeBackupLogsResponse>(await this.execute(params, req, runtime), new DescribeBackupLogsResponse({}));
41046
+ }
41047
+
40534
41048
  }
40535
41049
 
40536
41050
  /**
@@ -40588,7 +41102,12 @@ export default class Client extends OpenApi {
40588
41102
  reqBodyType: "formData",
40589
41103
  bodyType: "json",
40590
41104
  });
40591
- return $dara.cast<DescribeBackupPolicyResponse>(await this.callApi(params, req, runtime), new DescribeBackupPolicyResponse({}));
41105
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41106
+ return $dara.cast<DescribeBackupPolicyResponse>(await this.callApi(params, req, runtime), new DescribeBackupPolicyResponse({}));
41107
+ } else {
41108
+ return $dara.cast<DescribeBackupPolicyResponse>(await this.execute(params, req, runtime), new DescribeBackupPolicyResponse({}));
41109
+ }
41110
+
40592
41111
  }
40593
41112
 
40594
41113
  /**
@@ -40654,7 +41173,12 @@ export default class Client extends OpenApi {
40654
41173
  reqBodyType: "formData",
40655
41174
  bodyType: "json",
40656
41175
  });
40657
- return $dara.cast<DescribeBackupTasksResponse>(await this.callApi(params, req, runtime), new DescribeBackupTasksResponse({}));
41176
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41177
+ return $dara.cast<DescribeBackupTasksResponse>(await this.callApi(params, req, runtime), new DescribeBackupTasksResponse({}));
41178
+ } else {
41179
+ return $dara.cast<DescribeBackupTasksResponse>(await this.execute(params, req, runtime), new DescribeBackupTasksResponse({}));
41180
+ }
41181
+
40658
41182
  }
40659
41183
 
40660
41184
  /**
@@ -40744,7 +41268,12 @@ export default class Client extends OpenApi {
40744
41268
  reqBodyType: "formData",
40745
41269
  bodyType: "json",
40746
41270
  });
40747
- return $dara.cast<DescribeBackupsResponse>(await this.callApi(params, req, runtime), new DescribeBackupsResponse({}));
41271
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41272
+ return $dara.cast<DescribeBackupsResponse>(await this.callApi(params, req, runtime), new DescribeBackupsResponse({}));
41273
+ } else {
41274
+ return $dara.cast<DescribeBackupsResponse>(await this.execute(params, req, runtime), new DescribeBackupsResponse({}));
41275
+ }
41276
+
40748
41277
  }
40749
41278
 
40750
41279
  /**
@@ -40806,7 +41335,12 @@ export default class Client extends OpenApi {
40806
41335
  reqBodyType: "formData",
40807
41336
  bodyType: "json",
40808
41337
  });
40809
- return $dara.cast<DescribeCharacterSetNameResponse>(await this.callApi(params, req, runtime), new DescribeCharacterSetNameResponse({}));
41338
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41339
+ return $dara.cast<DescribeCharacterSetNameResponse>(await this.callApi(params, req, runtime), new DescribeCharacterSetNameResponse({}));
41340
+ } else {
41341
+ return $dara.cast<DescribeCharacterSetNameResponse>(await this.execute(params, req, runtime), new DescribeCharacterSetNameResponse({}));
41342
+ }
41343
+
40810
41344
  }
40811
41345
 
40812
41346
  /**
@@ -40880,7 +41414,12 @@ export default class Client extends OpenApi {
40880
41414
  reqBodyType: "formData",
40881
41415
  bodyType: "json",
40882
41416
  });
40883
- return $dara.cast<DescribeClassListResponse>(await this.callApi(params, req, runtime), new DescribeClassListResponse({}));
41417
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41418
+ return $dara.cast<DescribeClassListResponse>(await this.callApi(params, req, runtime), new DescribeClassListResponse({}));
41419
+ } else {
41420
+ return $dara.cast<DescribeClassListResponse>(await this.execute(params, req, runtime), new DescribeClassListResponse({}));
41421
+ }
41422
+
40884
41423
  }
40885
41424
 
40886
41425
  /**
@@ -40938,7 +41477,12 @@ export default class Client extends OpenApi {
40938
41477
  reqBodyType: "formData",
40939
41478
  bodyType: "json",
40940
41479
  });
40941
- return $dara.cast<DescribeDBClusterAccessWhitelistResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAccessWhitelistResponse({}));
41480
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41481
+ return $dara.cast<DescribeDBClusterAccessWhitelistResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAccessWhitelistResponse({}));
41482
+ } else {
41483
+ return $dara.cast<DescribeDBClusterAccessWhitelistResponse>(await this.execute(params, req, runtime), new DescribeDBClusterAccessWhitelistResponse({}));
41484
+ }
41485
+
40942
41486
  }
40943
41487
 
40944
41488
  /**
@@ -41000,7 +41544,12 @@ export default class Client extends OpenApi {
41000
41544
  reqBodyType: "formData",
41001
41545
  bodyType: "json",
41002
41546
  });
41003
- return $dara.cast<DescribeDBClusterAttributeResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAttributeResponse({}));
41547
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41548
+ return $dara.cast<DescribeDBClusterAttributeResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAttributeResponse({}));
41549
+ } else {
41550
+ return $dara.cast<DescribeDBClusterAttributeResponse>(await this.execute(params, req, runtime), new DescribeDBClusterAttributeResponse({}));
41551
+ }
41552
+
41004
41553
  }
41005
41554
 
41006
41555
  /**
@@ -41058,7 +41607,12 @@ export default class Client extends OpenApi {
41058
41607
  reqBodyType: "formData",
41059
41608
  bodyType: "json",
41060
41609
  });
41061
- return $dara.cast<DescribeDBClusterAuditLogCollectorResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAuditLogCollectorResponse({}));
41610
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41611
+ return $dara.cast<DescribeDBClusterAuditLogCollectorResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAuditLogCollectorResponse({}));
41612
+ } else {
41613
+ return $dara.cast<DescribeDBClusterAuditLogCollectorResponse>(await this.execute(params, req, runtime), new DescribeDBClusterAuditLogCollectorResponse({}));
41614
+ }
41615
+
41062
41616
  }
41063
41617
 
41064
41618
  /**
@@ -41136,7 +41690,12 @@ export default class Client extends OpenApi {
41136
41690
  reqBodyType: "formData",
41137
41691
  bodyType: "json",
41138
41692
  });
41139
- return $dara.cast<DescribeDBClusterAvailableResourcesResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAvailableResourcesResponse({}));
41693
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41694
+ return $dara.cast<DescribeDBClusterAvailableResourcesResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAvailableResourcesResponse({}));
41695
+ } else {
41696
+ return $dara.cast<DescribeDBClusterAvailableResourcesResponse>(await this.execute(params, req, runtime), new DescribeDBClusterAvailableResourcesResponse({}));
41697
+ }
41698
+
41140
41699
  }
41141
41700
 
41142
41701
  /**
@@ -41206,7 +41765,12 @@ export default class Client extends OpenApi {
41206
41765
  reqBodyType: "formData",
41207
41766
  bodyType: "json",
41208
41767
  });
41209
- return $dara.cast<DescribeDBClusterConnectivityResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterConnectivityResponse({}));
41768
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41769
+ return $dara.cast<DescribeDBClusterConnectivityResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterConnectivityResponse({}));
41770
+ } else {
41771
+ return $dara.cast<DescribeDBClusterConnectivityResponse>(await this.execute(params, req, runtime), new DescribeDBClusterConnectivityResponse({}));
41772
+ }
41773
+
41210
41774
  }
41211
41775
 
41212
41776
  /**
@@ -41272,7 +41836,12 @@ export default class Client extends OpenApi {
41272
41836
  reqBodyType: "formData",
41273
41837
  bodyType: "json",
41274
41838
  });
41275
- return $dara.cast<DescribeDBClusterEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterEndpointsResponse({}));
41839
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41840
+ return $dara.cast<DescribeDBClusterEndpointsResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterEndpointsResponse({}));
41841
+ } else {
41842
+ return $dara.cast<DescribeDBClusterEndpointsResponse>(await this.execute(params, req, runtime), new DescribeDBClusterEndpointsResponse({}));
41843
+ }
41844
+
41276
41845
  }
41277
41846
 
41278
41847
  /**
@@ -41333,7 +41902,12 @@ export default class Client extends OpenApi {
41333
41902
  reqBodyType: "formData",
41334
41903
  bodyType: "json",
41335
41904
  });
41336
- return $dara.cast<DescribeDBClusterMigrationResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterMigrationResponse({}));
41905
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41906
+ return $dara.cast<DescribeDBClusterMigrationResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterMigrationResponse({}));
41907
+ } else {
41908
+ return $dara.cast<DescribeDBClusterMigrationResponse>(await this.execute(params, req, runtime), new DescribeDBClusterMigrationResponse({}));
41909
+ }
41910
+
41337
41911
  }
41338
41912
 
41339
41913
  /**
@@ -41394,7 +41968,12 @@ export default class Client extends OpenApi {
41394
41968
  reqBodyType: "formData",
41395
41969
  bodyType: "json",
41396
41970
  });
41397
- return $dara.cast<DescribeDBClusterMonitorResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterMonitorResponse({}));
41971
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
41972
+ return $dara.cast<DescribeDBClusterMonitorResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterMonitorResponse({}));
41973
+ } else {
41974
+ return $dara.cast<DescribeDBClusterMonitorResponse>(await this.execute(params, req, runtime), new DescribeDBClusterMonitorResponse({}));
41975
+ }
41976
+
41398
41977
  }
41399
41978
 
41400
41979
  /**
@@ -41456,7 +42035,12 @@ export default class Client extends OpenApi {
41456
42035
  reqBodyType: "formData",
41457
42036
  bodyType: "json",
41458
42037
  });
41459
- return $dara.cast<DescribeDBClusterParametersResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterParametersResponse({}));
42038
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42039
+ return $dara.cast<DescribeDBClusterParametersResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterParametersResponse({}));
42040
+ } else {
42041
+ return $dara.cast<DescribeDBClusterParametersResponse>(await this.execute(params, req, runtime), new DescribeDBClusterParametersResponse({}));
42042
+ }
42043
+
41460
42044
  }
41461
42045
 
41462
42046
  /**
@@ -41532,7 +42116,12 @@ export default class Client extends OpenApi {
41532
42116
  reqBodyType: "formData",
41533
42117
  bodyType: "json",
41534
42118
  });
41535
- return $dara.cast<DescribeDBClusterPerformanceResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterPerformanceResponse({}));
42119
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42120
+ return $dara.cast<DescribeDBClusterPerformanceResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterPerformanceResponse({}));
42121
+ } else {
42122
+ return $dara.cast<DescribeDBClusterPerformanceResponse>(await this.execute(params, req, runtime), new DescribeDBClusterPerformanceResponse({}));
42123
+ }
42124
+
41536
42125
  }
41537
42126
 
41538
42127
  /**
@@ -41604,7 +42193,12 @@ export default class Client extends OpenApi {
41604
42193
  reqBodyType: "formData",
41605
42194
  bodyType: "json",
41606
42195
  });
41607
- return $dara.cast<DescribeDBClusterSSLResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterSSLResponse({}));
42196
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42197
+ return $dara.cast<DescribeDBClusterSSLResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterSSLResponse({}));
42198
+ } else {
42199
+ return $dara.cast<DescribeDBClusterSSLResponse>(await this.execute(params, req, runtime), new DescribeDBClusterSSLResponse({}));
42200
+ }
42201
+
41608
42202
  }
41609
42203
 
41610
42204
  /**
@@ -41662,7 +42256,12 @@ export default class Client extends OpenApi {
41662
42256
  reqBodyType: "formData",
41663
42257
  bodyType: "json",
41664
42258
  });
41665
- return $dara.cast<DescribeDBClusterServerlessConfResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterServerlessConfResponse({}));
42259
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42260
+ return $dara.cast<DescribeDBClusterServerlessConfResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterServerlessConfResponse({}));
42261
+ } else {
42262
+ return $dara.cast<DescribeDBClusterServerlessConfResponse>(await this.execute(params, req, runtime), new DescribeDBClusterServerlessConfResponse({}));
42263
+ }
42264
+
41666
42265
  }
41667
42266
 
41668
42267
  /**
@@ -41720,7 +42319,12 @@ export default class Client extends OpenApi {
41720
42319
  reqBodyType: "formData",
41721
42320
  bodyType: "json",
41722
42321
  });
41723
- return $dara.cast<DescribeDBClusterTDEResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterTDEResponse({}));
42322
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42323
+ return $dara.cast<DescribeDBClusterTDEResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterTDEResponse({}));
42324
+ } else {
42325
+ return $dara.cast<DescribeDBClusterTDEResponse>(await this.execute(params, req, runtime), new DescribeDBClusterTDEResponse({}));
42326
+ }
42327
+
41724
42328
  }
41725
42329
 
41726
42330
  /**
@@ -41782,7 +42386,12 @@ export default class Client extends OpenApi {
41782
42386
  reqBodyType: "formData",
41783
42387
  bodyType: "json",
41784
42388
  });
41785
- return $dara.cast<DescribeDBClusterVersionResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterVersionResponse({}));
42389
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42390
+ return $dara.cast<DescribeDBClusterVersionResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterVersionResponse({}));
42391
+ } else {
42392
+ return $dara.cast<DescribeDBClusterVersionResponse>(await this.execute(params, req, runtime), new DescribeDBClusterVersionResponse({}));
42393
+ }
42394
+
41786
42395
  }
41787
42396
 
41788
42397
  /**
@@ -41904,7 +42513,12 @@ export default class Client extends OpenApi {
41904
42513
  reqBodyType: "formData",
41905
42514
  bodyType: "json",
41906
42515
  });
41907
- return $dara.cast<DescribeDBClustersResponse>(await this.callApi(params, req, runtime), new DescribeDBClustersResponse({}));
42516
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42517
+ return $dara.cast<DescribeDBClustersResponse>(await this.callApi(params, req, runtime), new DescribeDBClustersResponse({}));
42518
+ } else {
42519
+ return $dara.cast<DescribeDBClustersResponse>(await this.execute(params, req, runtime), new DescribeDBClustersResponse({}));
42520
+ }
42521
+
41908
42522
  }
41909
42523
 
41910
42524
  /**
@@ -41994,7 +42608,12 @@ export default class Client extends OpenApi {
41994
42608
  reqBodyType: "formData",
41995
42609
  bodyType: "json",
41996
42610
  });
41997
- return $dara.cast<DescribeDBClustersWithBackupsResponse>(await this.callApi(params, req, runtime), new DescribeDBClustersWithBackupsResponse({}));
42611
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42612
+ return $dara.cast<DescribeDBClustersWithBackupsResponse>(await this.callApi(params, req, runtime), new DescribeDBClustersWithBackupsResponse({}));
42613
+ } else {
42614
+ return $dara.cast<DescribeDBClustersWithBackupsResponse>(await this.execute(params, req, runtime), new DescribeDBClustersWithBackupsResponse({}));
42615
+ }
42616
+
41998
42617
  }
41999
42618
 
42000
42619
  /**
@@ -42052,7 +42671,12 @@ export default class Client extends OpenApi {
42052
42671
  reqBodyType: "formData",
42053
42672
  bodyType: "json",
42054
42673
  });
42055
- return $dara.cast<DescribeDBInitializeVariableResponse>(await this.callApi(params, req, runtime), new DescribeDBInitializeVariableResponse({}));
42674
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42675
+ return $dara.cast<DescribeDBInitializeVariableResponse>(await this.callApi(params, req, runtime), new DescribeDBInitializeVariableResponse({}));
42676
+ } else {
42677
+ return $dara.cast<DescribeDBInitializeVariableResponse>(await this.execute(params, req, runtime), new DescribeDBInitializeVariableResponse({}));
42678
+ }
42679
+
42056
42680
  }
42057
42681
 
42058
42682
  /**
@@ -42117,7 +42741,12 @@ export default class Client extends OpenApi {
42117
42741
  reqBodyType: "formData",
42118
42742
  bodyType: "json",
42119
42743
  });
42120
- return $dara.cast<DescribeDBLinksResponse>(await this.callApi(params, req, runtime), new DescribeDBLinksResponse({}));
42744
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42745
+ return $dara.cast<DescribeDBLinksResponse>(await this.callApi(params, req, runtime), new DescribeDBLinksResponse({}));
42746
+ } else {
42747
+ return $dara.cast<DescribeDBLinksResponse>(await this.execute(params, req, runtime), new DescribeDBLinksResponse({}));
42748
+ }
42749
+
42121
42750
  }
42122
42751
 
42123
42752
  /**
@@ -42200,7 +42829,12 @@ export default class Client extends OpenApi {
42200
42829
  reqBodyType: "formData",
42201
42830
  bodyType: "json",
42202
42831
  });
42203
- return $dara.cast<DescribeDBNodePerformanceResponse>(await this.callApi(params, req, runtime), new DescribeDBNodePerformanceResponse({}));
42832
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42833
+ return $dara.cast<DescribeDBNodePerformanceResponse>(await this.callApi(params, req, runtime), new DescribeDBNodePerformanceResponse({}));
42834
+ } else {
42835
+ return $dara.cast<DescribeDBNodePerformanceResponse>(await this.execute(params, req, runtime), new DescribeDBNodePerformanceResponse({}));
42836
+ }
42837
+
42204
42838
  }
42205
42839
 
42206
42840
  /**
@@ -42276,7 +42910,12 @@ export default class Client extends OpenApi {
42276
42910
  reqBodyType: "formData",
42277
42911
  bodyType: "json",
42278
42912
  });
42279
- return $dara.cast<DescribeDBNodesParametersResponse>(await this.callApi(params, req, runtime), new DescribeDBNodesParametersResponse({}));
42913
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42914
+ return $dara.cast<DescribeDBNodesParametersResponse>(await this.callApi(params, req, runtime), new DescribeDBNodesParametersResponse({}));
42915
+ } else {
42916
+ return $dara.cast<DescribeDBNodesParametersResponse>(await this.execute(params, req, runtime), new DescribeDBNodesParametersResponse({}));
42917
+ }
42918
+
42280
42919
  }
42281
42920
 
42282
42921
  /**
@@ -42349,7 +42988,12 @@ export default class Client extends OpenApi {
42349
42988
  reqBodyType: "formData",
42350
42989
  bodyType: "json",
42351
42990
  });
42352
- return $dara.cast<DescribeDBProxyPerformanceResponse>(await this.callApi(params, req, runtime), new DescribeDBProxyPerformanceResponse({}));
42991
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42992
+ return $dara.cast<DescribeDBProxyPerformanceResponse>(await this.callApi(params, req, runtime), new DescribeDBProxyPerformanceResponse({}));
42993
+ } else {
42994
+ return $dara.cast<DescribeDBProxyPerformanceResponse>(await this.execute(params, req, runtime), new DescribeDBProxyPerformanceResponse({}));
42995
+ }
42996
+
42353
42997
  }
42354
42998
 
42355
42999
  /**
@@ -42410,7 +43054,12 @@ export default class Client extends OpenApi {
42410
43054
  reqBodyType: "formData",
42411
43055
  bodyType: "json",
42412
43056
  });
42413
- return $dara.cast<DescribeDasConfigResponse>(await this.callApi(params, req, runtime), new DescribeDasConfigResponse({}));
43057
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43058
+ return $dara.cast<DescribeDasConfigResponse>(await this.callApi(params, req, runtime), new DescribeDasConfigResponse({}));
43059
+ } else {
43060
+ return $dara.cast<DescribeDasConfigResponse>(await this.execute(params, req, runtime), new DescribeDasConfigResponse({}));
43061
+ }
43062
+
42414
43063
  }
42415
43064
 
42416
43065
  /**
@@ -42480,7 +43129,12 @@ export default class Client extends OpenApi {
42480
43129
  reqBodyType: "formData",
42481
43130
  bodyType: "json",
42482
43131
  });
42483
- return $dara.cast<DescribeDatabasesResponse>(await this.callApi(params, req, runtime), new DescribeDatabasesResponse({}));
43132
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43133
+ return $dara.cast<DescribeDatabasesResponse>(await this.callApi(params, req, runtime), new DescribeDatabasesResponse({}));
43134
+ } else {
43135
+ return $dara.cast<DescribeDatabasesResponse>(await this.execute(params, req, runtime), new DescribeDatabasesResponse({}));
43136
+ }
43137
+
42484
43138
  }
42485
43139
 
42486
43140
  /**
@@ -42499,7 +43153,7 @@ export default class Client extends OpenApi {
42499
43153
  *
42500
43154
  * @remarks
42501
43155
  * Before you call this operation, make sure that the PolarDB cluster is in the **Released** state. You must also confirm that the **Retain All Backups Permanently** or **Retain Last Automatic Backup Permanently** backup retention policy takes effect after you release the cluster. If you delete all backup sets after the cluster is released, you cannot use this API operation to query the cluster.
42502
- * > You can call the [DescribeDBClusterAttribute](https://help.aliyun.com/document_detail/98181.html) operation to query the cluster status.
43156
+ * > You can call the [DescribeDBClusterAttribute](https://help.aliyun.com/document_detail/98181.html) operation to query the cluster status.
42503
43157
  *
42504
43158
  * @param request - DescribeDetachedBackupsRequest
42505
43159
  * @param runtime - runtime options for this request RuntimeOptions
@@ -42574,7 +43228,12 @@ export default class Client extends OpenApi {
42574
43228
  reqBodyType: "formData",
42575
43229
  bodyType: "json",
42576
43230
  });
42577
- return $dara.cast<DescribeDetachedBackupsResponse>(await this.callApi(params, req, runtime), new DescribeDetachedBackupsResponse({}));
43231
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43232
+ return $dara.cast<DescribeDetachedBackupsResponse>(await this.callApi(params, req, runtime), new DescribeDetachedBackupsResponse({}));
43233
+ } else {
43234
+ return $dara.cast<DescribeDetachedBackupsResponse>(await this.execute(params, req, runtime), new DescribeDetachedBackupsResponse({}));
43235
+ }
43236
+
42578
43237
  }
42579
43238
 
42580
43239
  /**
@@ -42582,7 +43241,7 @@ export default class Client extends OpenApi {
42582
43241
  *
42583
43242
  * @remarks
42584
43243
  * Before you call this operation, make sure that the PolarDB cluster is in the **Released** state. You must also confirm that the **Retain All Backups Permanently** or **Retain Last Automatic Backup Permanently** backup retention policy takes effect after you release the cluster. If you delete all backup sets after the cluster is released, you cannot use this API operation to query the cluster.
42585
- * > You can call the [DescribeDBClusterAttribute](https://help.aliyun.com/document_detail/98181.html) operation to query the cluster status.
43244
+ * > You can call the [DescribeDBClusterAttribute](https://help.aliyun.com/document_detail/98181.html) operation to query the cluster status.
42586
43245
  *
42587
43246
  * @param request - DescribeDetachedBackupsRequest
42588
43247
  * @returns DescribeDetachedBackupsResponse
@@ -42644,7 +43303,12 @@ export default class Client extends OpenApi {
42644
43303
  reqBodyType: "formData",
42645
43304
  bodyType: "json",
42646
43305
  });
42647
- return $dara.cast<DescribeGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new DescribeGlobalDatabaseNetworkResponse({}));
43306
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43307
+ return $dara.cast<DescribeGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new DescribeGlobalDatabaseNetworkResponse({}));
43308
+ } else {
43309
+ return $dara.cast<DescribeGlobalDatabaseNetworkResponse>(await this.execute(params, req, runtime), new DescribeGlobalDatabaseNetworkResponse({}));
43310
+ }
43311
+
42648
43312
  }
42649
43313
 
42650
43314
  /**
@@ -42730,7 +43394,12 @@ export default class Client extends OpenApi {
42730
43394
  reqBodyType: "formData",
42731
43395
  bodyType: "json",
42732
43396
  });
42733
- return $dara.cast<DescribeGlobalDatabaseNetworksResponse>(await this.callApi(params, req, runtime), new DescribeGlobalDatabaseNetworksResponse({}));
43397
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43398
+ return $dara.cast<DescribeGlobalDatabaseNetworksResponse>(await this.callApi(params, req, runtime), new DescribeGlobalDatabaseNetworksResponse({}));
43399
+ } else {
43400
+ return $dara.cast<DescribeGlobalDatabaseNetworksResponse>(await this.execute(params, req, runtime), new DescribeGlobalDatabaseNetworksResponse({}));
43401
+ }
43402
+
42734
43403
  }
42735
43404
 
42736
43405
  /**
@@ -42800,7 +43469,12 @@ export default class Client extends OpenApi {
42800
43469
  reqBodyType: "formData",
42801
43470
  bodyType: "json",
42802
43471
  });
42803
- return $dara.cast<DescribeGlobalSecurityIPGroupResponse>(await this.callApi(params, req, runtime), new DescribeGlobalSecurityIPGroupResponse({}));
43472
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43473
+ return $dara.cast<DescribeGlobalSecurityIPGroupResponse>(await this.callApi(params, req, runtime), new DescribeGlobalSecurityIPGroupResponse({}));
43474
+ } else {
43475
+ return $dara.cast<DescribeGlobalSecurityIPGroupResponse>(await this.execute(params, req, runtime), new DescribeGlobalSecurityIPGroupResponse({}));
43476
+ }
43477
+
42804
43478
  }
42805
43479
 
42806
43480
  /**
@@ -42870,7 +43544,12 @@ export default class Client extends OpenApi {
42870
43544
  reqBodyType: "formData",
42871
43545
  bodyType: "json",
42872
43546
  });
42873
- return $dara.cast<DescribeGlobalSecurityIPGroupRelationResponse>(await this.callApi(params, req, runtime), new DescribeGlobalSecurityIPGroupRelationResponse({}));
43547
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43548
+ return $dara.cast<DescribeGlobalSecurityIPGroupRelationResponse>(await this.callApi(params, req, runtime), new DescribeGlobalSecurityIPGroupRelationResponse({}));
43549
+ } else {
43550
+ return $dara.cast<DescribeGlobalSecurityIPGroupRelationResponse>(await this.execute(params, req, runtime), new DescribeGlobalSecurityIPGroupRelationResponse({}));
43551
+ }
43552
+
42874
43553
  }
42875
43554
 
42876
43555
  /**
@@ -42928,7 +43607,12 @@ export default class Client extends OpenApi {
42928
43607
  reqBodyType: "formData",
42929
43608
  bodyType: "json",
42930
43609
  });
42931
- return $dara.cast<DescribeLicenseOrderDetailsResponse>(await this.callApi(params, req, runtime), new DescribeLicenseOrderDetailsResponse({}));
43610
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43611
+ return $dara.cast<DescribeLicenseOrderDetailsResponse>(await this.callApi(params, req, runtime), new DescribeLicenseOrderDetailsResponse({}));
43612
+ } else {
43613
+ return $dara.cast<DescribeLicenseOrderDetailsResponse>(await this.execute(params, req, runtime), new DescribeLicenseOrderDetailsResponse({}));
43614
+ }
43615
+
42932
43616
  }
42933
43617
 
42934
43618
  /**
@@ -43006,7 +43690,12 @@ export default class Client extends OpenApi {
43006
43690
  reqBodyType: "formData",
43007
43691
  bodyType: "json",
43008
43692
  });
43009
- return $dara.cast<DescribeLicenseOrdersResponse>(await this.callApi(params, req, runtime), new DescribeLicenseOrdersResponse({}));
43693
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43694
+ return $dara.cast<DescribeLicenseOrdersResponse>(await this.callApi(params, req, runtime), new DescribeLicenseOrdersResponse({}));
43695
+ } else {
43696
+ return $dara.cast<DescribeLicenseOrdersResponse>(await this.execute(params, req, runtime), new DescribeLicenseOrdersResponse({}));
43697
+ }
43698
+
43010
43699
  }
43011
43700
 
43012
43701
  /**
@@ -43064,7 +43753,12 @@ export default class Client extends OpenApi {
43064
43753
  reqBodyType: "formData",
43065
43754
  bodyType: "json",
43066
43755
  });
43067
- return $dara.cast<DescribeLogBackupPolicyResponse>(await this.callApi(params, req, runtime), new DescribeLogBackupPolicyResponse({}));
43756
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43757
+ return $dara.cast<DescribeLogBackupPolicyResponse>(await this.callApi(params, req, runtime), new DescribeLogBackupPolicyResponse({}));
43758
+ } else {
43759
+ return $dara.cast<DescribeLogBackupPolicyResponse>(await this.execute(params, req, runtime), new DescribeLogBackupPolicyResponse({}));
43760
+ }
43761
+
43068
43762
  }
43069
43763
 
43070
43764
  /**
@@ -43092,6 +43786,10 @@ export default class Client extends OpenApi {
43092
43786
  query["DBClusterId"] = request.DBClusterId;
43093
43787
  }
43094
43788
 
43789
+ if (!$dara.isNull(request.interfaceVersion)) {
43790
+ query["InterfaceVersion"] = request.interfaceVersion;
43791
+ }
43792
+
43095
43793
  if (!$dara.isNull(request.ruleNameList)) {
43096
43794
  query["RuleNameList"] = request.ruleNameList;
43097
43795
  }
@@ -43110,7 +43808,12 @@ export default class Client extends OpenApi {
43110
43808
  reqBodyType: "formData",
43111
43809
  bodyType: "json",
43112
43810
  });
43113
- return $dara.cast<DescribeMaskingRulesResponse>(await this.callApi(params, req, runtime), new DescribeMaskingRulesResponse({}));
43811
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43812
+ return $dara.cast<DescribeMaskingRulesResponse>(await this.callApi(params, req, runtime), new DescribeMaskingRulesResponse({}));
43813
+ } else {
43814
+ return $dara.cast<DescribeMaskingRulesResponse>(await this.execute(params, req, runtime), new DescribeMaskingRulesResponse({}));
43815
+ }
43816
+
43114
43817
  }
43115
43818
 
43116
43819
  /**
@@ -43196,7 +43899,12 @@ export default class Client extends OpenApi {
43196
43899
  reqBodyType: "formData",
43197
43900
  bodyType: "json",
43198
43901
  });
43199
- return $dara.cast<DescribeMetaListResponse>(await this.callApi(params, req, runtime), new DescribeMetaListResponse({}));
43902
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43903
+ return $dara.cast<DescribeMetaListResponse>(await this.callApi(params, req, runtime), new DescribeMetaListResponse({}));
43904
+ } else {
43905
+ return $dara.cast<DescribeMetaListResponse>(await this.execute(params, req, runtime), new DescribeMetaListResponse({}));
43906
+ }
43907
+
43200
43908
  }
43201
43909
 
43202
43910
  /**
@@ -43266,7 +43974,12 @@ export default class Client extends OpenApi {
43266
43974
  reqBodyType: "formData",
43267
43975
  bodyType: "json",
43268
43976
  });
43269
- return $dara.cast<DescribeParameterGroupResponse>(await this.callApi(params, req, runtime), new DescribeParameterGroupResponse({}));
43977
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43978
+ return $dara.cast<DescribeParameterGroupResponse>(await this.callApi(params, req, runtime), new DescribeParameterGroupResponse({}));
43979
+ } else {
43980
+ return $dara.cast<DescribeParameterGroupResponse>(await this.execute(params, req, runtime), new DescribeParameterGroupResponse({}));
43981
+ }
43982
+
43270
43983
  }
43271
43984
 
43272
43985
  /**
@@ -43344,7 +44057,12 @@ export default class Client extends OpenApi {
43344
44057
  reqBodyType: "formData",
43345
44058
  bodyType: "json",
43346
44059
  });
43347
- return $dara.cast<DescribeParameterGroupsResponse>(await this.callApi(params, req, runtime), new DescribeParameterGroupsResponse({}));
44060
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44061
+ return $dara.cast<DescribeParameterGroupsResponse>(await this.callApi(params, req, runtime), new DescribeParameterGroupsResponse({}));
44062
+ } else {
44063
+ return $dara.cast<DescribeParameterGroupsResponse>(await this.execute(params, req, runtime), new DescribeParameterGroupsResponse({}));
44064
+ }
44065
+
43348
44066
  }
43349
44067
 
43350
44068
  /**
@@ -43418,7 +44136,12 @@ export default class Client extends OpenApi {
43418
44136
  reqBodyType: "formData",
43419
44137
  bodyType: "json",
43420
44138
  });
43421
- return $dara.cast<DescribeParameterTemplatesResponse>(await this.callApi(params, req, runtime), new DescribeParameterTemplatesResponse({}));
44139
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44140
+ return $dara.cast<DescribeParameterTemplatesResponse>(await this.callApi(params, req, runtime), new DescribeParameterTemplatesResponse({}));
44141
+ } else {
44142
+ return $dara.cast<DescribeParameterTemplatesResponse>(await this.execute(params, req, runtime), new DescribeParameterTemplatesResponse({}));
44143
+ }
44144
+
43422
44145
  }
43423
44146
 
43424
44147
  /**
@@ -43500,7 +44223,12 @@ export default class Client extends OpenApi {
43500
44223
  reqBodyType: "formData",
43501
44224
  bodyType: "json",
43502
44225
  });
43503
- return $dara.cast<DescribePendingMaintenanceActionResponse>(await this.callApi(params, req, runtime), new DescribePendingMaintenanceActionResponse({}));
44226
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44227
+ return $dara.cast<DescribePendingMaintenanceActionResponse>(await this.callApi(params, req, runtime), new DescribePendingMaintenanceActionResponse({}));
44228
+ } else {
44229
+ return $dara.cast<DescribePendingMaintenanceActionResponse>(await this.execute(params, req, runtime), new DescribePendingMaintenanceActionResponse({}));
44230
+ }
44231
+
43504
44232
  }
43505
44233
 
43506
44234
  /**
@@ -43515,7 +44243,7 @@ export default class Client extends OpenApi {
43515
44243
  }
43516
44244
 
43517
44245
  /**
43518
- * Queries the numbers of pending events of different task types.
44246
+ * Queries the numbers of scheduled events for different types of tasks.
43519
44247
  *
43520
44248
  * @param request - DescribePendingMaintenanceActionsRequest
43521
44249
  * @param runtime - runtime options for this request RuntimeOptions
@@ -43570,11 +44298,16 @@ export default class Client extends OpenApi {
43570
44298
  reqBodyType: "formData",
43571
44299
  bodyType: "json",
43572
44300
  });
43573
- return $dara.cast<DescribePendingMaintenanceActionsResponse>(await this.callApi(params, req, runtime), new DescribePendingMaintenanceActionsResponse({}));
44301
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44302
+ return $dara.cast<DescribePendingMaintenanceActionsResponse>(await this.callApi(params, req, runtime), new DescribePendingMaintenanceActionsResponse({}));
44303
+ } else {
44304
+ return $dara.cast<DescribePendingMaintenanceActionsResponse>(await this.execute(params, req, runtime), new DescribePendingMaintenanceActionsResponse({}));
44305
+ }
44306
+
43574
44307
  }
43575
44308
 
43576
44309
  /**
43577
- * Queries the numbers of pending events of different task types.
44310
+ * Queries the numbers of scheduled events for different types of tasks.
43578
44311
  *
43579
44312
  * @param request - DescribePendingMaintenanceActionsRequest
43580
44313
  * @returns DescribePendingMaintenanceActionsResponse
@@ -43608,7 +44341,12 @@ export default class Client extends OpenApi {
43608
44341
  reqBodyType: "formData",
43609
44342
  bodyType: "json",
43610
44343
  });
43611
- return $dara.cast<DescribePolarSQLCollectorPolicyResponse>(await this.callApi(params, req, runtime), new DescribePolarSQLCollectorPolicyResponse({}));
44344
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44345
+ return $dara.cast<DescribePolarSQLCollectorPolicyResponse>(await this.callApi(params, req, runtime), new DescribePolarSQLCollectorPolicyResponse({}));
44346
+ } else {
44347
+ return $dara.cast<DescribePolarSQLCollectorPolicyResponse>(await this.execute(params, req, runtime), new DescribePolarSQLCollectorPolicyResponse({}));
44348
+ }
44349
+
43612
44350
  }
43613
44351
 
43614
44352
  /**
@@ -43662,7 +44400,12 @@ export default class Client extends OpenApi {
43662
44400
  reqBodyType: "formData",
43663
44401
  bodyType: "json",
43664
44402
  });
43665
- return $dara.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
44403
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44404
+ return $dara.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
44405
+ } else {
44406
+ return $dara.cast<DescribeRegionsResponse>(await this.execute(params, req, runtime), new DescribeRegionsResponse({}));
44407
+ }
44408
+
43666
44409
  }
43667
44410
 
43668
44411
  /**
@@ -43760,7 +44503,12 @@ export default class Client extends OpenApi {
43760
44503
  reqBodyType: "formData",
43761
44504
  bodyType: "json",
43762
44505
  });
43763
- return $dara.cast<DescribeScheduleTasksResponse>(await this.callApi(params, req, runtime), new DescribeScheduleTasksResponse({}));
44506
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44507
+ return $dara.cast<DescribeScheduleTasksResponse>(await this.callApi(params, req, runtime), new DescribeScheduleTasksResponse({}));
44508
+ } else {
44509
+ return $dara.cast<DescribeScheduleTasksResponse>(await this.execute(params, req, runtime), new DescribeScheduleTasksResponse({}));
44510
+ }
44511
+
43764
44512
  }
43765
44513
 
43766
44514
  /**
@@ -43854,7 +44602,12 @@ export default class Client extends OpenApi {
43854
44602
  reqBodyType: "formData",
43855
44603
  bodyType: "json",
43856
44604
  });
43857
- return $dara.cast<DescribeSlowLogRecordsResponse>(await this.callApi(params, req, runtime), new DescribeSlowLogRecordsResponse({}));
44605
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44606
+ return $dara.cast<DescribeSlowLogRecordsResponse>(await this.callApi(params, req, runtime), new DescribeSlowLogRecordsResponse({}));
44607
+ } else {
44608
+ return $dara.cast<DescribeSlowLogRecordsResponse>(await this.execute(params, req, runtime), new DescribeSlowLogRecordsResponse({}));
44609
+ }
44610
+
43858
44611
  }
43859
44612
 
43860
44613
  /**
@@ -43943,7 +44696,12 @@ export default class Client extends OpenApi {
43943
44696
  reqBodyType: "formData",
43944
44697
  bodyType: "json",
43945
44698
  });
43946
- return $dara.cast<DescribeSlowLogsResponse>(await this.callApi(params, req, runtime), new DescribeSlowLogsResponse({}));
44699
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44700
+ return $dara.cast<DescribeSlowLogsResponse>(await this.callApi(params, req, runtime), new DescribeSlowLogsResponse({}));
44701
+ } else {
44702
+ return $dara.cast<DescribeSlowLogsResponse>(await this.execute(params, req, runtime), new DescribeSlowLogsResponse({}));
44703
+ }
44704
+
43947
44705
  }
43948
44706
 
43949
44707
  /**
@@ -44032,7 +44790,12 @@ export default class Client extends OpenApi {
44032
44790
  reqBodyType: "formData",
44033
44791
  bodyType: "json",
44034
44792
  });
44035
- return $dara.cast<DescribeTasksResponse>(await this.callApi(params, req, runtime), new DescribeTasksResponse({}));
44793
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44794
+ return $dara.cast<DescribeTasksResponse>(await this.callApi(params, req, runtime), new DescribeTasksResponse({}));
44795
+ } else {
44796
+ return $dara.cast<DescribeTasksResponse>(await this.execute(params, req, runtime), new DescribeTasksResponse({}));
44797
+ }
44798
+
44036
44799
  }
44037
44800
 
44038
44801
  /**
@@ -44102,7 +44865,12 @@ export default class Client extends OpenApi {
44102
44865
  reqBodyType: "formData",
44103
44866
  bodyType: "json",
44104
44867
  });
44105
- return $dara.cast<DescribeUserEncryptionKeyListResponse>(await this.callApi(params, req, runtime), new DescribeUserEncryptionKeyListResponse({}));
44868
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44869
+ return $dara.cast<DescribeUserEncryptionKeyListResponse>(await this.callApi(params, req, runtime), new DescribeUserEncryptionKeyListResponse({}));
44870
+ } else {
44871
+ return $dara.cast<DescribeUserEncryptionKeyListResponse>(await this.execute(params, req, runtime), new DescribeUserEncryptionKeyListResponse({}));
44872
+ }
44873
+
44106
44874
  }
44107
44875
 
44108
44876
  /**
@@ -44188,7 +44956,12 @@ export default class Client extends OpenApi {
44188
44956
  reqBodyType: "formData",
44189
44957
  bodyType: "json",
44190
44958
  });
44191
- return $dara.cast<DescribeVSwitchesResponse>(await this.callApi(params, req, runtime), new DescribeVSwitchesResponse({}));
44959
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44960
+ return $dara.cast<DescribeVSwitchesResponse>(await this.callApi(params, req, runtime), new DescribeVSwitchesResponse({}));
44961
+ } else {
44962
+ return $dara.cast<DescribeVSwitchesResponse>(await this.execute(params, req, runtime), new DescribeVSwitchesResponse({}));
44963
+ }
44964
+
44192
44965
  }
44193
44966
 
44194
44967
  /**
@@ -44246,7 +45019,12 @@ export default class Client extends OpenApi {
44246
45019
  reqBodyType: "formData",
44247
45020
  bodyType: "json",
44248
45021
  });
44249
- return $dara.cast<DisableDBClusterServerlessResponse>(await this.callApi(params, req, runtime), new DisableDBClusterServerlessResponse({}));
45022
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45023
+ return $dara.cast<DisableDBClusterServerlessResponse>(await this.callApi(params, req, runtime), new DisableDBClusterServerlessResponse({}));
45024
+ } else {
45025
+ return $dara.cast<DisableDBClusterServerlessResponse>(await this.execute(params, req, runtime), new DisableDBClusterServerlessResponse({}));
45026
+ }
45027
+
44250
45028
  }
44251
45029
 
44252
45030
  /**
@@ -44328,7 +45106,12 @@ export default class Client extends OpenApi {
44328
45106
  reqBodyType: "formData",
44329
45107
  bodyType: "json",
44330
45108
  });
44331
- return $dara.cast<EnableDBClusterServerlessResponse>(await this.callApi(params, req, runtime), new EnableDBClusterServerlessResponse({}));
45109
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45110
+ return $dara.cast<EnableDBClusterServerlessResponse>(await this.callApi(params, req, runtime), new EnableDBClusterServerlessResponse({}));
45111
+ } else {
45112
+ return $dara.cast<EnableDBClusterServerlessResponse>(await this.execute(params, req, runtime), new EnableDBClusterServerlessResponse({}));
45113
+ }
45114
+
44332
45115
  }
44333
45116
 
44334
45117
  /**
@@ -44394,7 +45177,12 @@ export default class Client extends OpenApi {
44394
45177
  reqBodyType: "formData",
44395
45178
  bodyType: "json",
44396
45179
  });
44397
- return $dara.cast<EnableFirewallRulesResponse>(await this.callApi(params, req, runtime), new EnableFirewallRulesResponse({}));
45180
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45181
+ return $dara.cast<EnableFirewallRulesResponse>(await this.callApi(params, req, runtime), new EnableFirewallRulesResponse({}));
45182
+ } else {
45183
+ return $dara.cast<EnableFirewallRulesResponse>(await this.execute(params, req, runtime), new EnableFirewallRulesResponse({}));
45184
+ }
45185
+
44398
45186
  }
44399
45187
 
44400
45188
  /**
@@ -44488,7 +45276,12 @@ export default class Client extends OpenApi {
44488
45276
  reqBodyType: "formData",
44489
45277
  bodyType: "json",
44490
45278
  });
44491
- return $dara.cast<EvaluateRegionResourceResponse>(await this.callApi(params, req, runtime), new EvaluateRegionResourceResponse({}));
45279
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45280
+ return $dara.cast<EvaluateRegionResourceResponse>(await this.callApi(params, req, runtime), new EvaluateRegionResourceResponse({}));
45281
+ } else {
45282
+ return $dara.cast<EvaluateRegionResourceResponse>(await this.execute(params, req, runtime), new EvaluateRegionResourceResponse({}));
45283
+ }
45284
+
44492
45285
  }
44493
45286
 
44494
45287
  /**
@@ -44562,7 +45355,12 @@ export default class Client extends OpenApi {
44562
45355
  reqBodyType: "formData",
44563
45356
  bodyType: "json",
44564
45357
  });
44565
- return $dara.cast<FailoverDBClusterResponse>(await this.callApi(params, req, runtime), new FailoverDBClusterResponse({}));
45358
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45359
+ return $dara.cast<FailoverDBClusterResponse>(await this.callApi(params, req, runtime), new FailoverDBClusterResponse({}));
45360
+ } else {
45361
+ return $dara.cast<FailoverDBClusterResponse>(await this.execute(params, req, runtime), new FailoverDBClusterResponse({}));
45362
+ }
45363
+
44566
45364
  }
44567
45365
 
44568
45366
  /**
@@ -44639,7 +45437,12 @@ export default class Client extends OpenApi {
44639
45437
  reqBodyType: "formData",
44640
45438
  bodyType: "json",
44641
45439
  });
44642
- return $dara.cast<GrantAccountPrivilegeResponse>(await this.callApi(params, req, runtime), new GrantAccountPrivilegeResponse({}));
45440
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45441
+ return $dara.cast<GrantAccountPrivilegeResponse>(await this.callApi(params, req, runtime), new GrantAccountPrivilegeResponse({}));
45442
+ } else {
45443
+ return $dara.cast<GrantAccountPrivilegeResponse>(await this.execute(params, req, runtime), new GrantAccountPrivilegeResponse({}));
45444
+ }
45445
+
44643
45446
  }
44644
45447
 
44645
45448
  /**
@@ -44720,7 +45523,12 @@ export default class Client extends OpenApi {
44720
45523
  reqBodyType: "formData",
44721
45524
  bodyType: "json",
44722
45525
  });
44723
- return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
45526
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45527
+ return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
45528
+ } else {
45529
+ return $dara.cast<ListTagResourcesResponse>(await this.execute(params, req, runtime), new ListTagResourcesResponse({}));
45530
+ }
45531
+
44724
45532
  }
44725
45533
 
44726
45534
  /**
@@ -44782,7 +45590,12 @@ export default class Client extends OpenApi {
44782
45590
  reqBodyType: "formData",
44783
45591
  bodyType: "json",
44784
45592
  });
44785
- return $dara.cast<ManuallyStartDBClusterResponse>(await this.callApi(params, req, runtime), new ManuallyStartDBClusterResponse({}));
45593
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45594
+ return $dara.cast<ManuallyStartDBClusterResponse>(await this.callApi(params, req, runtime), new ManuallyStartDBClusterResponse({}));
45595
+ } else {
45596
+ return $dara.cast<ManuallyStartDBClusterResponse>(await this.execute(params, req, runtime), new ManuallyStartDBClusterResponse({}));
45597
+ }
45598
+
44786
45599
  }
44787
45600
 
44788
45601
  /**
@@ -44848,7 +45661,12 @@ export default class Client extends OpenApi {
44848
45661
  reqBodyType: "formData",
44849
45662
  bodyType: "json",
44850
45663
  });
44851
- return $dara.cast<ModifyAccountDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyAccountDescriptionResponse({}));
45664
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45665
+ return $dara.cast<ModifyAccountDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyAccountDescriptionResponse({}));
45666
+ } else {
45667
+ return $dara.cast<ModifyAccountDescriptionResponse>(await this.execute(params, req, runtime), new ModifyAccountDescriptionResponse({}));
45668
+ }
45669
+
44852
45670
  }
44853
45671
 
44854
45672
  /**
@@ -44918,7 +45736,12 @@ export default class Client extends OpenApi {
44918
45736
  reqBodyType: "formData",
44919
45737
  bodyType: "json",
44920
45738
  });
44921
- return $dara.cast<ModifyAccountPasswordResponse>(await this.callApi(params, req, runtime), new ModifyAccountPasswordResponse({}));
45739
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45740
+ return $dara.cast<ModifyAccountPasswordResponse>(await this.callApi(params, req, runtime), new ModifyAccountPasswordResponse({}));
45741
+ } else {
45742
+ return $dara.cast<ModifyAccountPasswordResponse>(await this.execute(params, req, runtime), new ModifyAccountPasswordResponse({}));
45743
+ }
45744
+
44922
45745
  }
44923
45746
 
44924
45747
  /**
@@ -44992,7 +45815,12 @@ export default class Client extends OpenApi {
44992
45815
  reqBodyType: "formData",
44993
45816
  bodyType: "json",
44994
45817
  });
44995
- return $dara.cast<ModifyActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new ModifyActiveOperationTasksResponse({}));
45818
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45819
+ return $dara.cast<ModifyActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new ModifyActiveOperationTasksResponse({}));
45820
+ } else {
45821
+ return $dara.cast<ModifyActiveOperationTasksResponse>(await this.execute(params, req, runtime), new ModifyActiveOperationTasksResponse({}));
45822
+ }
45823
+
44996
45824
  }
44997
45825
 
44998
45826
  /**
@@ -45070,7 +45898,12 @@ export default class Client extends OpenApi {
45070
45898
  reqBodyType: "formData",
45071
45899
  bodyType: "json",
45072
45900
  });
45073
- return $dara.cast<ModifyAutoRenewAttributeResponse>(await this.callApi(params, req, runtime), new ModifyAutoRenewAttributeResponse({}));
45901
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45902
+ return $dara.cast<ModifyAutoRenewAttributeResponse>(await this.callApi(params, req, runtime), new ModifyAutoRenewAttributeResponse({}));
45903
+ } else {
45904
+ return $dara.cast<ModifyAutoRenewAttributeResponse>(await this.execute(params, req, runtime), new ModifyAutoRenewAttributeResponse({}));
45905
+ }
45906
+
45074
45907
  }
45075
45908
 
45076
45909
  /**
@@ -45179,7 +46012,12 @@ export default class Client extends OpenApi {
45179
46012
  reqBodyType: "formData",
45180
46013
  bodyType: "json",
45181
46014
  });
45182
- return $dara.cast<ModifyBackupPolicyResponse>(await this.callApi(params, req, runtime), new ModifyBackupPolicyResponse({}));
46015
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46016
+ return $dara.cast<ModifyBackupPolicyResponse>(await this.callApi(params, req, runtime), new ModifyBackupPolicyResponse({}));
46017
+ } else {
46018
+ return $dara.cast<ModifyBackupPolicyResponse>(await this.execute(params, req, runtime), new ModifyBackupPolicyResponse({}));
46019
+ }
46020
+
45183
46021
  }
45184
46022
 
45185
46023
  /**
@@ -45284,7 +46122,12 @@ export default class Client extends OpenApi {
45284
46122
  reqBodyType: "formData",
45285
46123
  bodyType: "json",
45286
46124
  });
45287
- return $dara.cast<ModifyDBClusterResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterResponse({}));
46125
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46126
+ return $dara.cast<ModifyDBClusterResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterResponse({}));
46127
+ } else {
46128
+ return $dara.cast<ModifyDBClusterResponse>(await this.execute(params, req, runtime), new ModifyDBClusterResponse({}));
46129
+ }
46130
+
45288
46131
  }
45289
46132
 
45290
46133
  /**
@@ -45366,7 +46209,12 @@ export default class Client extends OpenApi {
45366
46209
  reqBodyType: "formData",
45367
46210
  bodyType: "json",
45368
46211
  });
45369
- return $dara.cast<ModifyDBClusterAccessWhitelistResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterAccessWhitelistResponse({}));
46212
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46213
+ return $dara.cast<ModifyDBClusterAccessWhitelistResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterAccessWhitelistResponse({}));
46214
+ } else {
46215
+ return $dara.cast<ModifyDBClusterAccessWhitelistResponse>(await this.execute(params, req, runtime), new ModifyDBClusterAccessWhitelistResponse({}));
46216
+ }
46217
+
45370
46218
  }
45371
46219
 
45372
46220
  /**
@@ -45452,7 +46300,12 @@ export default class Client extends OpenApi {
45452
46300
  reqBodyType: "formData",
45453
46301
  bodyType: "json",
45454
46302
  });
45455
- return $dara.cast<ModifyDBClusterAndNodesParametersResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterAndNodesParametersResponse({}));
46303
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46304
+ return $dara.cast<ModifyDBClusterAndNodesParametersResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterAndNodesParametersResponse({}));
46305
+ } else {
46306
+ return $dara.cast<ModifyDBClusterAndNodesParametersResponse>(await this.execute(params, req, runtime), new ModifyDBClusterAndNodesParametersResponse({}));
46307
+ }
46308
+
45456
46309
  }
45457
46310
 
45458
46311
  /**
@@ -45466,6 +46319,65 @@ export default class Client extends OpenApi {
45466
46319
  return await this.modifyDBClusterAndNodesParametersWithOptions(request, runtime);
45467
46320
  }
45468
46321
 
46322
+ /**
46323
+ * 变更standby模式
46324
+ *
46325
+ * @param request - ModifyDBClusterArchRequest
46326
+ * @param runtime - runtime options for this request RuntimeOptions
46327
+ * @returns ModifyDBClusterArchResponse
46328
+ */
46329
+ async modifyDBClusterArchWithOptions(request: ModifyDBClusterArchRequest, runtime: $dara.RuntimeOptions): Promise<ModifyDBClusterArchResponse> {
46330
+ request.validate();
46331
+ let query = { };
46332
+ if (!$dara.isNull(request.DBClusterId)) {
46333
+ query["DBClusterId"] = request.DBClusterId;
46334
+ }
46335
+
46336
+ if (!$dara.isNull(request.hotStandbyCluster)) {
46337
+ query["HotStandbyCluster"] = request.hotStandbyCluster;
46338
+ }
46339
+
46340
+ if (!$dara.isNull(request.regionId)) {
46341
+ query["RegionId"] = request.regionId;
46342
+ }
46343
+
46344
+ if (!$dara.isNull(request.standbyAZ)) {
46345
+ query["StandbyAZ"] = request.standbyAZ;
46346
+ }
46347
+
46348
+ let req = new $OpenApiUtil.OpenApiRequest({
46349
+ query: OpenApiUtil.query(query),
46350
+ });
46351
+ let params = new $OpenApiUtil.Params({
46352
+ action: "ModifyDBClusterArch",
46353
+ version: "2017-08-01",
46354
+ protocol: "HTTPS",
46355
+ pathname: "/",
46356
+ method: "POST",
46357
+ authType: "AK",
46358
+ style: "RPC",
46359
+ reqBodyType: "formData",
46360
+ bodyType: "json",
46361
+ });
46362
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46363
+ return $dara.cast<ModifyDBClusterArchResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterArchResponse({}));
46364
+ } else {
46365
+ return $dara.cast<ModifyDBClusterArchResponse>(await this.execute(params, req, runtime), new ModifyDBClusterArchResponse({}));
46366
+ }
46367
+
46368
+ }
46369
+
46370
+ /**
46371
+ * 变更standby模式
46372
+ *
46373
+ * @param request - ModifyDBClusterArchRequest
46374
+ * @returns ModifyDBClusterArchResponse
46375
+ */
46376
+ async modifyDBClusterArch(request: ModifyDBClusterArchRequest): Promise<ModifyDBClusterArchResponse> {
46377
+ let runtime = new $dara.RuntimeOptions({ });
46378
+ return await this.modifyDBClusterArchWithOptions(request, runtime);
46379
+ }
46380
+
45469
46381
  /**
45470
46382
  * Enables or disables SQL collector for a PolarDB cluster. The features related to SQL collector include Audit Logs and SQL Explorer.
45471
46383
  *
@@ -45514,7 +46426,12 @@ export default class Client extends OpenApi {
45514
46426
  reqBodyType: "formData",
45515
46427
  bodyType: "json",
45516
46428
  });
45517
- return $dara.cast<ModifyDBClusterAuditLogCollectorResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterAuditLogCollectorResponse({}));
46429
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46430
+ return $dara.cast<ModifyDBClusterAuditLogCollectorResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterAuditLogCollectorResponse({}));
46431
+ } else {
46432
+ return $dara.cast<ModifyDBClusterAuditLogCollectorResponse>(await this.execute(params, req, runtime), new ModifyDBClusterAuditLogCollectorResponse({}));
46433
+ }
46434
+
45518
46435
  }
45519
46436
 
45520
46437
  /**
@@ -45576,7 +46493,12 @@ export default class Client extends OpenApi {
45576
46493
  reqBodyType: "formData",
45577
46494
  bodyType: "json",
45578
46495
  });
45579
- return $dara.cast<ModifyDBClusterDeletionResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterDeletionResponse({}));
46496
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46497
+ return $dara.cast<ModifyDBClusterDeletionResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterDeletionResponse({}));
46498
+ } else {
46499
+ return $dara.cast<ModifyDBClusterDeletionResponse>(await this.execute(params, req, runtime), new ModifyDBClusterDeletionResponse({}));
46500
+ }
46501
+
45580
46502
  }
45581
46503
 
45582
46504
  /**
@@ -45638,7 +46560,12 @@ export default class Client extends OpenApi {
45638
46560
  reqBodyType: "formData",
45639
46561
  bodyType: "json",
45640
46562
  });
45641
- return $dara.cast<ModifyDBClusterDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterDescriptionResponse({}));
46563
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46564
+ return $dara.cast<ModifyDBClusterDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterDescriptionResponse({}));
46565
+ } else {
46566
+ return $dara.cast<ModifyDBClusterDescriptionResponse>(await this.execute(params, req, runtime), new ModifyDBClusterDescriptionResponse({}));
46567
+ }
46568
+
45642
46569
  }
45643
46570
 
45644
46571
  /**
@@ -45732,7 +46659,12 @@ export default class Client extends OpenApi {
45732
46659
  reqBodyType: "formData",
45733
46660
  bodyType: "json",
45734
46661
  });
45735
- return $dara.cast<ModifyDBClusterEndpointResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterEndpointResponse({}));
46662
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46663
+ return $dara.cast<ModifyDBClusterEndpointResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterEndpointResponse({}));
46664
+ } else {
46665
+ return $dara.cast<ModifyDBClusterEndpointResponse>(await this.execute(params, req, runtime), new ModifyDBClusterEndpointResponse({}));
46666
+ }
46667
+
45736
46668
  }
45737
46669
 
45738
46670
  /**
@@ -45797,7 +46729,12 @@ export default class Client extends OpenApi {
45797
46729
  reqBodyType: "formData",
45798
46730
  bodyType: "json",
45799
46731
  });
45800
- return $dara.cast<ModifyDBClusterMaintainTimeResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterMaintainTimeResponse({}));
46732
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46733
+ return $dara.cast<ModifyDBClusterMaintainTimeResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterMaintainTimeResponse({}));
46734
+ } else {
46735
+ return $dara.cast<ModifyDBClusterMaintainTimeResponse>(await this.execute(params, req, runtime), new ModifyDBClusterMaintainTimeResponse({}));
46736
+ }
46737
+
45801
46738
  }
45802
46739
 
45803
46740
  /**
@@ -45883,7 +46820,12 @@ export default class Client extends OpenApi {
45883
46820
  reqBodyType: "formData",
45884
46821
  bodyType: "json",
45885
46822
  });
45886
- return $dara.cast<ModifyDBClusterMigrationResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterMigrationResponse({}));
46823
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46824
+ return $dara.cast<ModifyDBClusterMigrationResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterMigrationResponse({}));
46825
+ } else {
46826
+ return $dara.cast<ModifyDBClusterMigrationResponse>(await this.execute(params, req, runtime), new ModifyDBClusterMigrationResponse({}));
46827
+ }
46828
+
45887
46829
  }
45888
46830
 
45889
46831
  /**
@@ -45963,7 +46905,12 @@ export default class Client extends OpenApi {
45963
46905
  reqBodyType: "formData",
45964
46906
  bodyType: "json",
45965
46907
  });
45966
- return $dara.cast<ModifyDBClusterMonitorResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterMonitorResponse({}));
46908
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46909
+ return $dara.cast<ModifyDBClusterMonitorResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterMonitorResponse({}));
46910
+ } else {
46911
+ return $dara.cast<ModifyDBClusterMonitorResponse>(await this.execute(params, req, runtime), new ModifyDBClusterMonitorResponse({}));
46912
+ }
46913
+
45967
46914
  }
45968
46915
 
45969
46916
  /**
@@ -46059,7 +47006,12 @@ export default class Client extends OpenApi {
46059
47006
  reqBodyType: "formData",
46060
47007
  bodyType: "json",
46061
47008
  });
46062
- return $dara.cast<ModifyDBClusterParametersResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterParametersResponse({}));
47009
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47010
+ return $dara.cast<ModifyDBClusterParametersResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterParametersResponse({}));
47011
+ } else {
47012
+ return $dara.cast<ModifyDBClusterParametersResponse>(await this.execute(params, req, runtime), new ModifyDBClusterParametersResponse({}));
47013
+ }
47014
+
46063
47015
  }
46064
47016
 
46065
47017
  /**
@@ -46154,7 +47106,12 @@ export default class Client extends OpenApi {
46154
47106
  reqBodyType: "formData",
46155
47107
  bodyType: "json",
46156
47108
  });
46157
- return $dara.cast<ModifyDBClusterPrimaryZoneResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterPrimaryZoneResponse({}));
47109
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47110
+ return $dara.cast<ModifyDBClusterPrimaryZoneResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterPrimaryZoneResponse({}));
47111
+ } else {
47112
+ return $dara.cast<ModifyDBClusterPrimaryZoneResponse>(await this.execute(params, req, runtime), new ModifyDBClusterPrimaryZoneResponse({}));
47113
+ }
47114
+
46158
47115
  }
46159
47116
 
46160
47117
  /**
@@ -46220,7 +47177,12 @@ export default class Client extends OpenApi {
46220
47177
  reqBodyType: "formData",
46221
47178
  bodyType: "json",
46222
47179
  });
46223
- return $dara.cast<ModifyDBClusterResourceGroupResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterResourceGroupResponse({}));
47180
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47181
+ return $dara.cast<ModifyDBClusterResourceGroupResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterResourceGroupResponse({}));
47182
+ } else {
47183
+ return $dara.cast<ModifyDBClusterResourceGroupResponse>(await this.execute(params, req, runtime), new ModifyDBClusterResourceGroupResponse({}));
47184
+ }
47185
+
46224
47186
  }
46225
47187
 
46226
47188
  /**
@@ -46294,7 +47256,12 @@ export default class Client extends OpenApi {
46294
47256
  reqBodyType: "formData",
46295
47257
  bodyType: "json",
46296
47258
  });
46297
- return $dara.cast<ModifyDBClusterSSLResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterSSLResponse({}));
47259
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47260
+ return $dara.cast<ModifyDBClusterSSLResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterSSLResponse({}));
47261
+ } else {
47262
+ return $dara.cast<ModifyDBClusterSSLResponse>(await this.execute(params, req, runtime), new ModifyDBClusterSSLResponse({}));
47263
+ }
47264
+
46298
47265
  }
46299
47266
 
46300
47267
  /**
@@ -46416,7 +47383,12 @@ export default class Client extends OpenApi {
46416
47383
  reqBodyType: "formData",
46417
47384
  bodyType: "json",
46418
47385
  });
46419
- return $dara.cast<ModifyDBClusterServerlessConfResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterServerlessConfResponse({}));
47386
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47387
+ return $dara.cast<ModifyDBClusterServerlessConfResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterServerlessConfResponse({}));
47388
+ } else {
47389
+ return $dara.cast<ModifyDBClusterServerlessConfResponse>(await this.execute(params, req, runtime), new ModifyDBClusterServerlessConfResponse({}));
47390
+ }
47391
+
46420
47392
  }
46421
47393
 
46422
47394
  /**
@@ -46482,7 +47454,12 @@ export default class Client extends OpenApi {
46482
47454
  reqBodyType: "formData",
46483
47455
  bodyType: "json",
46484
47456
  });
46485
- return $dara.cast<ModifyDBClusterStoragePerformanceResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterStoragePerformanceResponse({}));
47457
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47458
+ return $dara.cast<ModifyDBClusterStoragePerformanceResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterStoragePerformanceResponse({}));
47459
+ } else {
47460
+ return $dara.cast<ModifyDBClusterStoragePerformanceResponse>(await this.execute(params, req, runtime), new ModifyDBClusterStoragePerformanceResponse({}));
47461
+ }
47462
+
46486
47463
  }
46487
47464
 
46488
47465
  /**
@@ -46560,7 +47537,12 @@ export default class Client extends OpenApi {
46560
47537
  reqBodyType: "formData",
46561
47538
  bodyType: "json",
46562
47539
  });
46563
- return $dara.cast<ModifyDBClusterStorageSpaceResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterStorageSpaceResponse({}));
47540
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47541
+ return $dara.cast<ModifyDBClusterStorageSpaceResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterStorageSpaceResponse({}));
47542
+ } else {
47543
+ return $dara.cast<ModifyDBClusterStorageSpaceResponse>(await this.execute(params, req, runtime), new ModifyDBClusterStorageSpaceResponse({}));
47544
+ }
47545
+
46564
47546
  }
46565
47547
 
46566
47548
  /**
@@ -46642,7 +47624,12 @@ export default class Client extends OpenApi {
46642
47624
  reqBodyType: "formData",
46643
47625
  bodyType: "json",
46644
47626
  });
46645
- return $dara.cast<ModifyDBClusterTDEResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterTDEResponse({}));
47627
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47628
+ return $dara.cast<ModifyDBClusterTDEResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterTDEResponse({}));
47629
+ } else {
47630
+ return $dara.cast<ModifyDBClusterTDEResponse>(await this.execute(params, req, runtime), new ModifyDBClusterTDEResponse({}));
47631
+ }
47632
+
46646
47633
  }
46647
47634
 
46648
47635
  /**
@@ -46712,7 +47699,12 @@ export default class Client extends OpenApi {
46712
47699
  reqBodyType: "formData",
46713
47700
  bodyType: "json",
46714
47701
  });
46715
- return $dara.cast<ModifyDBDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyDBDescriptionResponse({}));
47702
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47703
+ return $dara.cast<ModifyDBDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyDBDescriptionResponse({}));
47704
+ } else {
47705
+ return $dara.cast<ModifyDBDescriptionResponse>(await this.execute(params, req, runtime), new ModifyDBDescriptionResponse({}));
47706
+ }
47707
+
46716
47708
  }
46717
47709
 
46718
47710
  /**
@@ -46794,7 +47786,12 @@ export default class Client extends OpenApi {
46794
47786
  reqBodyType: "formData",
46795
47787
  bodyType: "json",
46796
47788
  });
46797
- return $dara.cast<ModifyDBEndpointAddressResponse>(await this.callApi(params, req, runtime), new ModifyDBEndpointAddressResponse({}));
47789
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47790
+ return $dara.cast<ModifyDBEndpointAddressResponse>(await this.callApi(params, req, runtime), new ModifyDBEndpointAddressResponse({}));
47791
+ } else {
47792
+ return $dara.cast<ModifyDBEndpointAddressResponse>(await this.execute(params, req, runtime), new ModifyDBEndpointAddressResponse({}));
47793
+ }
47794
+
46798
47795
  }
46799
47796
 
46800
47797
  /**
@@ -46884,7 +47881,12 @@ export default class Client extends OpenApi {
46884
47881
  reqBodyType: "formData",
46885
47882
  bodyType: "json",
46886
47883
  });
46887
- return $dara.cast<ModifyDBNodeClassResponse>(await this.callApi(params, req, runtime), new ModifyDBNodeClassResponse({}));
47884
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47885
+ return $dara.cast<ModifyDBNodeClassResponse>(await this.callApi(params, req, runtime), new ModifyDBNodeClassResponse({}));
47886
+ } else {
47887
+ return $dara.cast<ModifyDBNodeClassResponse>(await this.execute(params, req, runtime), new ModifyDBNodeClassResponse({}));
47888
+ }
47889
+
46888
47890
  }
46889
47891
 
46890
47892
  /**
@@ -46950,7 +47952,12 @@ export default class Client extends OpenApi {
46950
47952
  reqBodyType: "formData",
46951
47953
  bodyType: "json",
46952
47954
  });
46953
- return $dara.cast<ModifyDBNodeHotReplicaModeResponse>(await this.callApi(params, req, runtime), new ModifyDBNodeHotReplicaModeResponse({}));
47955
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47956
+ return $dara.cast<ModifyDBNodeHotReplicaModeResponse>(await this.callApi(params, req, runtime), new ModifyDBNodeHotReplicaModeResponse({}));
47957
+ } else {
47958
+ return $dara.cast<ModifyDBNodeHotReplicaModeResponse>(await this.execute(params, req, runtime), new ModifyDBNodeHotReplicaModeResponse({}));
47959
+ }
47960
+
46954
47961
  }
46955
47962
 
46956
47963
  /**
@@ -47036,7 +48043,12 @@ export default class Client extends OpenApi {
47036
48043
  reqBodyType: "formData",
47037
48044
  bodyType: "json",
47038
48045
  });
47039
- return $dara.cast<ModifyDBNodesClassResponse>(await this.callApi(params, req, runtime), new ModifyDBNodesClassResponse({}));
48046
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48047
+ return $dara.cast<ModifyDBNodesClassResponse>(await this.callApi(params, req, runtime), new ModifyDBNodesClassResponse({}));
48048
+ } else {
48049
+ return $dara.cast<ModifyDBNodesClassResponse>(await this.execute(params, req, runtime), new ModifyDBNodesClassResponse({}));
48050
+ }
48051
+
47040
48052
  }
47041
48053
 
47042
48054
  /**
@@ -47118,7 +48130,12 @@ export default class Client extends OpenApi {
47118
48130
  reqBodyType: "formData",
47119
48131
  bodyType: "json",
47120
48132
  });
47121
- return $dara.cast<ModifyDBNodesParametersResponse>(await this.callApi(params, req, runtime), new ModifyDBNodesParametersResponse({}));
48133
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48134
+ return $dara.cast<ModifyDBNodesParametersResponse>(await this.callApi(params, req, runtime), new ModifyDBNodesParametersResponse({}));
48135
+ } else {
48136
+ return $dara.cast<ModifyDBNodesParametersResponse>(await this.execute(params, req, runtime), new ModifyDBNodesParametersResponse({}));
48137
+ }
48138
+
47122
48139
  }
47123
48140
 
47124
48141
  /**
@@ -47192,7 +48209,12 @@ export default class Client extends OpenApi {
47192
48209
  reqBodyType: "formData",
47193
48210
  bodyType: "json",
47194
48211
  });
47195
- return $dara.cast<ModifyGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new ModifyGlobalDatabaseNetworkResponse({}));
48212
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48213
+ return $dara.cast<ModifyGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new ModifyGlobalDatabaseNetworkResponse({}));
48214
+ } else {
48215
+ return $dara.cast<ModifyGlobalDatabaseNetworkResponse>(await this.execute(params, req, runtime), new ModifyGlobalDatabaseNetworkResponse({}));
48216
+ }
48217
+
47196
48218
  }
47197
48219
 
47198
48220
  /**
@@ -47270,7 +48292,12 @@ export default class Client extends OpenApi {
47270
48292
  reqBodyType: "formData",
47271
48293
  bodyType: "json",
47272
48294
  });
47273
- return $dara.cast<ModifyGlobalSecurityIPGroupResponse>(await this.callApi(params, req, runtime), new ModifyGlobalSecurityIPGroupResponse({}));
48295
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48296
+ return $dara.cast<ModifyGlobalSecurityIPGroupResponse>(await this.callApi(params, req, runtime), new ModifyGlobalSecurityIPGroupResponse({}));
48297
+ } else {
48298
+ return $dara.cast<ModifyGlobalSecurityIPGroupResponse>(await this.execute(params, req, runtime), new ModifyGlobalSecurityIPGroupResponse({}));
48299
+ }
48300
+
47274
48301
  }
47275
48302
 
47276
48303
  /**
@@ -47344,7 +48371,12 @@ export default class Client extends OpenApi {
47344
48371
  reqBodyType: "formData",
47345
48372
  bodyType: "json",
47346
48373
  });
47347
- return $dara.cast<ModifyGlobalSecurityIPGroupNameResponse>(await this.callApi(params, req, runtime), new ModifyGlobalSecurityIPGroupNameResponse({}));
48374
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48375
+ return $dara.cast<ModifyGlobalSecurityIPGroupNameResponse>(await this.callApi(params, req, runtime), new ModifyGlobalSecurityIPGroupNameResponse({}));
48376
+ } else {
48377
+ return $dara.cast<ModifyGlobalSecurityIPGroupNameResponse>(await this.execute(params, req, runtime), new ModifyGlobalSecurityIPGroupNameResponse({}));
48378
+ }
48379
+
47348
48380
  }
47349
48381
 
47350
48382
  /**
@@ -47418,7 +48450,12 @@ export default class Client extends OpenApi {
47418
48450
  reqBodyType: "formData",
47419
48451
  bodyType: "json",
47420
48452
  });
47421
- return $dara.cast<ModifyGlobalSecurityIPGroupRelationResponse>(await this.callApi(params, req, runtime), new ModifyGlobalSecurityIPGroupRelationResponse({}));
48453
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48454
+ return $dara.cast<ModifyGlobalSecurityIPGroupRelationResponse>(await this.callApi(params, req, runtime), new ModifyGlobalSecurityIPGroupRelationResponse({}));
48455
+ } else {
48456
+ return $dara.cast<ModifyGlobalSecurityIPGroupRelationResponse>(await this.execute(params, req, runtime), new ModifyGlobalSecurityIPGroupRelationResponse({}));
48457
+ }
48458
+
47422
48459
  }
47423
48460
 
47424
48461
  /**
@@ -47488,7 +48525,12 @@ export default class Client extends OpenApi {
47488
48525
  reqBodyType: "formData",
47489
48526
  bodyType: "json",
47490
48527
  });
47491
- return $dara.cast<ModifyLogBackupPolicyResponse>(await this.callApi(params, req, runtime), new ModifyLogBackupPolicyResponse({}));
48528
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48529
+ return $dara.cast<ModifyLogBackupPolicyResponse>(await this.callApi(params, req, runtime), new ModifyLogBackupPolicyResponse({}));
48530
+ } else {
48531
+ return $dara.cast<ModifyLogBackupPolicyResponse>(await this.execute(params, req, runtime), new ModifyLogBackupPolicyResponse({}));
48532
+ }
48533
+
47492
48534
  }
47493
48535
 
47494
48536
  /**
@@ -47520,6 +48562,10 @@ export default class Client extends OpenApi {
47520
48562
  query["Enable"] = request.enable;
47521
48563
  }
47522
48564
 
48565
+ if (!$dara.isNull(request.interfaceVersion)) {
48566
+ query["InterfaceVersion"] = request.interfaceVersion;
48567
+ }
48568
+
47523
48569
  if (!$dara.isNull(request.ruleConfig)) {
47524
48570
  query["RuleConfig"] = request.ruleConfig;
47525
48571
  }
@@ -47550,7 +48596,12 @@ export default class Client extends OpenApi {
47550
48596
  reqBodyType: "formData",
47551
48597
  bodyType: "json",
47552
48598
  });
47553
- return $dara.cast<ModifyMaskingRulesResponse>(await this.callApi(params, req, runtime), new ModifyMaskingRulesResponse({}));
48599
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48600
+ return $dara.cast<ModifyMaskingRulesResponse>(await this.callApi(params, req, runtime), new ModifyMaskingRulesResponse({}));
48601
+ } else {
48602
+ return $dara.cast<ModifyMaskingRulesResponse>(await this.execute(params, req, runtime), new ModifyMaskingRulesResponse({}));
48603
+ }
48604
+
47554
48605
  }
47555
48606
 
47556
48607
  /**
@@ -47624,7 +48675,12 @@ export default class Client extends OpenApi {
47624
48675
  reqBodyType: "formData",
47625
48676
  bodyType: "json",
47626
48677
  });
47627
- return $dara.cast<ModifyPendingMaintenanceActionResponse>(await this.callApi(params, req, runtime), new ModifyPendingMaintenanceActionResponse({}));
48678
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48679
+ return $dara.cast<ModifyPendingMaintenanceActionResponse>(await this.callApi(params, req, runtime), new ModifyPendingMaintenanceActionResponse({}));
48680
+ } else {
48681
+ return $dara.cast<ModifyPendingMaintenanceActionResponse>(await this.execute(params, req, runtime), new ModifyPendingMaintenanceActionResponse({}));
48682
+ }
48683
+
47628
48684
  }
47629
48685
 
47630
48686
  /**
@@ -47702,7 +48758,12 @@ export default class Client extends OpenApi {
47702
48758
  reqBodyType: "formData",
47703
48759
  bodyType: "json",
47704
48760
  });
47705
- return $dara.cast<OpenAITaskResponse>(await this.callApi(params, req, runtime), new OpenAITaskResponse({}));
48761
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48762
+ return $dara.cast<OpenAITaskResponse>(await this.callApi(params, req, runtime), new OpenAITaskResponse({}));
48763
+ } else {
48764
+ return $dara.cast<OpenAITaskResponse>(await this.execute(params, req, runtime), new OpenAITaskResponse({}));
48765
+ }
48766
+
47706
48767
  }
47707
48768
 
47708
48769
  /**
@@ -47760,7 +48821,12 @@ export default class Client extends OpenApi {
47760
48821
  reqBodyType: "formData",
47761
48822
  bodyType: "json",
47762
48823
  });
47763
- return $dara.cast<RefreshDBClusterStorageUsageResponse>(await this.callApi(params, req, runtime), new RefreshDBClusterStorageUsageResponse({}));
48824
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48825
+ return $dara.cast<RefreshDBClusterStorageUsageResponse>(await this.callApi(params, req, runtime), new RefreshDBClusterStorageUsageResponse({}));
48826
+ } else {
48827
+ return $dara.cast<RefreshDBClusterStorageUsageResponse>(await this.execute(params, req, runtime), new RefreshDBClusterStorageUsageResponse({}));
48828
+ }
48829
+
47764
48830
  }
47765
48831
 
47766
48832
  /**
@@ -47829,7 +48895,12 @@ export default class Client extends OpenApi {
47829
48895
  reqBodyType: "formData",
47830
48896
  bodyType: "json",
47831
48897
  });
47832
- return $dara.cast<RemoveDBClusterFromGDNResponse>(await this.callApi(params, req, runtime), new RemoveDBClusterFromGDNResponse({}));
48898
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48899
+ return $dara.cast<RemoveDBClusterFromGDNResponse>(await this.callApi(params, req, runtime), new RemoveDBClusterFromGDNResponse({}));
48900
+ } else {
48901
+ return $dara.cast<RemoveDBClusterFromGDNResponse>(await this.execute(params, req, runtime), new RemoveDBClusterFromGDNResponse({}));
48902
+ }
48903
+
47833
48904
  }
47834
48905
 
47835
48906
  /**
@@ -47902,7 +48973,12 @@ export default class Client extends OpenApi {
47902
48973
  reqBodyType: "formData",
47903
48974
  bodyType: "json",
47904
48975
  });
47905
- return $dara.cast<ResetAccountResponse>(await this.callApi(params, req, runtime), new ResetAccountResponse({}));
48976
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48977
+ return $dara.cast<ResetAccountResponse>(await this.callApi(params, req, runtime), new ResetAccountResponse({}));
48978
+ } else {
48979
+ return $dara.cast<ResetAccountResponse>(await this.execute(params, req, runtime), new ResetAccountResponse({}));
48980
+ }
48981
+
47906
48982
  }
47907
48983
 
47908
48984
  /**
@@ -47976,7 +49052,12 @@ export default class Client extends OpenApi {
47976
49052
  reqBodyType: "formData",
47977
49053
  bodyType: "json",
47978
49054
  });
47979
- return $dara.cast<ResetGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new ResetGlobalDatabaseNetworkResponse({}));
49055
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49056
+ return $dara.cast<ResetGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new ResetGlobalDatabaseNetworkResponse({}));
49057
+ } else {
49058
+ return $dara.cast<ResetGlobalDatabaseNetworkResponse>(await this.execute(params, req, runtime), new ResetGlobalDatabaseNetworkResponse({}));
49059
+ }
49060
+
47980
49061
  }
47981
49062
 
47982
49063
  /**
@@ -48038,7 +49119,12 @@ export default class Client extends OpenApi {
48038
49119
  reqBodyType: "formData",
48039
49120
  bodyType: "json",
48040
49121
  });
48041
- return $dara.cast<RestartDBLinkResponse>(await this.callApi(params, req, runtime), new RestartDBLinkResponse({}));
49122
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49123
+ return $dara.cast<RestartDBLinkResponse>(await this.callApi(params, req, runtime), new RestartDBLinkResponse({}));
49124
+ } else {
49125
+ return $dara.cast<RestartDBLinkResponse>(await this.execute(params, req, runtime), new RestartDBLinkResponse({}));
49126
+ }
49127
+
48042
49128
  }
48043
49129
 
48044
49130
  /**
@@ -48096,7 +49182,12 @@ export default class Client extends OpenApi {
48096
49182
  reqBodyType: "formData",
48097
49183
  bodyType: "json",
48098
49184
  });
48099
- return $dara.cast<RestartDBNodeResponse>(await this.callApi(params, req, runtime), new RestartDBNodeResponse({}));
49185
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49186
+ return $dara.cast<RestartDBNodeResponse>(await this.callApi(params, req, runtime), new RestartDBNodeResponse({}));
49187
+ } else {
49188
+ return $dara.cast<RestartDBNodeResponse>(await this.execute(params, req, runtime), new RestartDBNodeResponse({}));
49189
+ }
49190
+
48100
49191
  }
48101
49192
 
48102
49193
  /**
@@ -48170,7 +49261,12 @@ export default class Client extends OpenApi {
48170
49261
  reqBodyType: "formData",
48171
49262
  bodyType: "json",
48172
49263
  });
48173
- return $dara.cast<RestoreTableResponse>(await this.callApi(params, req, runtime), new RestoreTableResponse({}));
49264
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49265
+ return $dara.cast<RestoreTableResponse>(await this.callApi(params, req, runtime), new RestoreTableResponse({}));
49266
+ } else {
49267
+ return $dara.cast<RestoreTableResponse>(await this.execute(params, req, runtime), new RestoreTableResponse({}));
49268
+ }
49269
+
48174
49270
  }
48175
49271
 
48176
49272
  /**
@@ -48236,7 +49332,12 @@ export default class Client extends OpenApi {
48236
49332
  reqBodyType: "formData",
48237
49333
  bodyType: "json",
48238
49334
  });
48239
- return $dara.cast<RevokeAccountPrivilegeResponse>(await this.callApi(params, req, runtime), new RevokeAccountPrivilegeResponse({}));
49335
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49336
+ return $dara.cast<RevokeAccountPrivilegeResponse>(await this.callApi(params, req, runtime), new RevokeAccountPrivilegeResponse({}));
49337
+ } else {
49338
+ return $dara.cast<RevokeAccountPrivilegeResponse>(await this.execute(params, req, runtime), new RevokeAccountPrivilegeResponse({}));
49339
+ }
49340
+
48240
49341
  }
48241
49342
 
48242
49343
  /**
@@ -48312,7 +49413,12 @@ export default class Client extends OpenApi {
48312
49413
  reqBodyType: "formData",
48313
49414
  bodyType: "json",
48314
49415
  });
48315
- return $dara.cast<SwitchOverGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new SwitchOverGlobalDatabaseNetworkResponse({}));
49416
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49417
+ return $dara.cast<SwitchOverGlobalDatabaseNetworkResponse>(await this.callApi(params, req, runtime), new SwitchOverGlobalDatabaseNetworkResponse({}));
49418
+ } else {
49419
+ return $dara.cast<SwitchOverGlobalDatabaseNetworkResponse>(await this.execute(params, req, runtime), new SwitchOverGlobalDatabaseNetworkResponse({}));
49420
+ }
49421
+
48316
49422
  }
48317
49423
 
48318
49424
  /**
@@ -48380,7 +49486,12 @@ export default class Client extends OpenApi {
48380
49486
  reqBodyType: "formData",
48381
49487
  bodyType: "json",
48382
49488
  });
48383
- return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
49489
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49490
+ return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
49491
+ } else {
49492
+ return $dara.cast<TagResourcesResponse>(await this.execute(params, req, runtime), new TagResourcesResponse({}));
49493
+ }
49494
+
48384
49495
  }
48385
49496
 
48386
49497
  /**
@@ -48458,7 +49569,12 @@ export default class Client extends OpenApi {
48458
49569
  reqBodyType: "formData",
48459
49570
  bodyType: "json",
48460
49571
  });
48461
- return $dara.cast<TempModifyDBNodeResponse>(await this.callApi(params, req, runtime), new TempModifyDBNodeResponse({}));
49572
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49573
+ return $dara.cast<TempModifyDBNodeResponse>(await this.callApi(params, req, runtime), new TempModifyDBNodeResponse({}));
49574
+ } else {
49575
+ return $dara.cast<TempModifyDBNodeResponse>(await this.execute(params, req, runtime), new TempModifyDBNodeResponse({}));
49576
+ }
49577
+
48462
49578
  }
48463
49579
 
48464
49580
  /**
@@ -48546,7 +49662,12 @@ export default class Client extends OpenApi {
48546
49662
  reqBodyType: "formData",
48547
49663
  bodyType: "json",
48548
49664
  });
48549
- return $dara.cast<TransformDBClusterPayTypeResponse>(await this.callApi(params, req, runtime), new TransformDBClusterPayTypeResponse({}));
49665
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49666
+ return $dara.cast<TransformDBClusterPayTypeResponse>(await this.callApi(params, req, runtime), new TransformDBClusterPayTypeResponse({}));
49667
+ } else {
49668
+ return $dara.cast<TransformDBClusterPayTypeResponse>(await this.execute(params, req, runtime), new TransformDBClusterPayTypeResponse({}));
49669
+ }
49670
+
48550
49671
  }
48551
49672
 
48552
49673
  /**
@@ -48626,7 +49747,12 @@ export default class Client extends OpenApi {
48626
49747
  reqBodyType: "formData",
48627
49748
  bodyType: "json",
48628
49749
  });
48629
- return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
49750
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49751
+ return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
49752
+ } else {
49753
+ return $dara.cast<UntagResourcesResponse>(await this.execute(params, req, runtime), new UntagResourcesResponse({}));
49754
+ }
49755
+
48630
49756
  }
48631
49757
 
48632
49758
  /**
@@ -48720,7 +49846,12 @@ export default class Client extends OpenApi {
48720
49846
  reqBodyType: "formData",
48721
49847
  bodyType: "json",
48722
49848
  });
48723
- return $dara.cast<UpgradeDBClusterVersionResponse>(await this.callApi(params, req, runtime), new UpgradeDBClusterVersionResponse({}));
49849
+ if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49850
+ return $dara.cast<UpgradeDBClusterVersionResponse>(await this.callApi(params, req, runtime), new UpgradeDBClusterVersionResponse({}));
49851
+ } else {
49852
+ return $dara.cast<UpgradeDBClusterVersionResponse>(await this.execute(params, req, runtime), new UpgradeDBClusterVersionResponse({}));
49853
+ }
49854
+
48724
49855
  }
48725
49856
 
48726
49857
  /**