@alicloud/rds20140815 9.0.0 → 9.2.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/dist/client.d.ts CHANGED
@@ -8159,6 +8159,155 @@ export declare class CreateRCDiskResponse extends $tea.Model {
8159
8159
  [key: string]: any;
8160
8160
  });
8161
8161
  }
8162
+ export declare class CreateRCNodePoolRequest extends $tea.Model {
8163
+ amount?: number;
8164
+ autoPay?: boolean;
8165
+ autoRenew?: boolean;
8166
+ clientToken?: string;
8167
+ /**
8168
+ * @remarks
8169
+ * This parameter is required.
8170
+ */
8171
+ clusterId?: string;
8172
+ createMode?: string;
8173
+ dataDisk?: CreateRCNodePoolRequestDataDisk[];
8174
+ deploymentSetId?: string;
8175
+ description?: string;
8176
+ dryRun?: boolean;
8177
+ hostName?: string;
8178
+ imageId?: string;
8179
+ instanceChargeType?: string;
8180
+ instanceName?: string;
8181
+ /**
8182
+ * @remarks
8183
+ * This parameter is required.
8184
+ */
8185
+ instanceType?: string;
8186
+ internetChargeType?: string;
8187
+ internetMaxBandwidthOut?: number;
8188
+ ioOptimized?: string;
8189
+ keyPairName?: string;
8190
+ nodePoolName?: string;
8191
+ password?: string;
8192
+ period?: number;
8193
+ periodUnit?: string;
8194
+ /**
8195
+ * @remarks
8196
+ * This parameter is required.
8197
+ */
8198
+ regionId?: string;
8199
+ resourceGroupId?: string;
8200
+ securityEnhancementStrategy?: string;
8201
+ securityGroupId?: string;
8202
+ spotStrategy?: string;
8203
+ systemDisk?: CreateRCNodePoolRequestSystemDisk;
8204
+ tag?: CreateRCNodePoolRequestTag[];
8205
+ /**
8206
+ * @remarks
8207
+ * This parameter is required.
8208
+ */
8209
+ vSwitchId?: string;
8210
+ zoneId?: string;
8211
+ static names(): {
8212
+ [key: string]: string;
8213
+ };
8214
+ static types(): {
8215
+ [key: string]: any;
8216
+ };
8217
+ constructor(map?: {
8218
+ [key: string]: any;
8219
+ });
8220
+ }
8221
+ export declare class CreateRCNodePoolShrinkRequest extends $tea.Model {
8222
+ amount?: number;
8223
+ autoPay?: boolean;
8224
+ autoRenew?: boolean;
8225
+ clientToken?: string;
8226
+ /**
8227
+ * @remarks
8228
+ * This parameter is required.
8229
+ */
8230
+ clusterId?: string;
8231
+ createMode?: string;
8232
+ dataDiskShrink?: string;
8233
+ deploymentSetId?: string;
8234
+ description?: string;
8235
+ dryRun?: boolean;
8236
+ hostName?: string;
8237
+ imageId?: string;
8238
+ instanceChargeType?: string;
8239
+ instanceName?: string;
8240
+ /**
8241
+ * @remarks
8242
+ * This parameter is required.
8243
+ */
8244
+ instanceType?: string;
8245
+ internetChargeType?: string;
8246
+ internetMaxBandwidthOut?: number;
8247
+ ioOptimized?: string;
8248
+ keyPairName?: string;
8249
+ nodePoolName?: string;
8250
+ password?: string;
8251
+ period?: number;
8252
+ periodUnit?: string;
8253
+ /**
8254
+ * @remarks
8255
+ * This parameter is required.
8256
+ */
8257
+ regionId?: string;
8258
+ resourceGroupId?: string;
8259
+ securityEnhancementStrategy?: string;
8260
+ securityGroupId?: string;
8261
+ spotStrategy?: string;
8262
+ systemDiskShrink?: string;
8263
+ tag?: CreateRCNodePoolShrinkRequestTag[];
8264
+ /**
8265
+ * @remarks
8266
+ * This parameter is required.
8267
+ */
8268
+ vSwitchId?: string;
8269
+ zoneId?: string;
8270
+ static names(): {
8271
+ [key: string]: string;
8272
+ };
8273
+ static types(): {
8274
+ [key: string]: any;
8275
+ };
8276
+ constructor(map?: {
8277
+ [key: string]: any;
8278
+ });
8279
+ }
8280
+ export declare class CreateRCNodePoolResponseBody extends $tea.Model {
8281
+ instanceIdSets?: string[];
8282
+ nodePoolId?: string;
8283
+ orderId?: string;
8284
+ requestId?: string;
8285
+ static names(): {
8286
+ [key: string]: string;
8287
+ };
8288
+ static types(): {
8289
+ [key: string]: any;
8290
+ };
8291
+ constructor(map?: {
8292
+ [key: string]: any;
8293
+ });
8294
+ }
8295
+ export declare class CreateRCNodePoolResponse extends $tea.Model {
8296
+ headers?: {
8297
+ [key: string]: string;
8298
+ };
8299
+ statusCode?: number;
8300
+ body?: CreateRCNodePoolResponseBody;
8301
+ static names(): {
8302
+ [key: string]: string;
8303
+ };
8304
+ static types(): {
8305
+ [key: string]: any;
8306
+ };
8307
+ constructor(map?: {
8308
+ [key: string]: any;
8309
+ });
8310
+ }
8162
8311
  export declare class CreateRCSnapshotRequest extends $tea.Model {
8163
8312
  /**
8164
8313
  * @remarks
@@ -11078,6 +11227,60 @@ export declare class DeleteRCInstancesResponse extends $tea.Model {
11078
11227
  [key: string]: any;
11079
11228
  });
11080
11229
  }
11230
+ export declare class DeleteRCNodePoolRequest extends $tea.Model {
11231
+ /**
11232
+ * @remarks
11233
+ * This parameter is required.
11234
+ */
11235
+ clusterId?: string;
11236
+ /**
11237
+ * @remarks
11238
+ * This parameter is required.
11239
+ */
11240
+ nodePoolId?: string;
11241
+ /**
11242
+ * @remarks
11243
+ * This parameter is required.
11244
+ */
11245
+ regionId?: string;
11246
+ static names(): {
11247
+ [key: string]: string;
11248
+ };
11249
+ static types(): {
11250
+ [key: string]: any;
11251
+ };
11252
+ constructor(map?: {
11253
+ [key: string]: any;
11254
+ });
11255
+ }
11256
+ export declare class DeleteRCNodePoolResponseBody extends $tea.Model {
11257
+ requestId?: string;
11258
+ static names(): {
11259
+ [key: string]: string;
11260
+ };
11261
+ static types(): {
11262
+ [key: string]: any;
11263
+ };
11264
+ constructor(map?: {
11265
+ [key: string]: any;
11266
+ });
11267
+ }
11268
+ export declare class DeleteRCNodePoolResponse extends $tea.Model {
11269
+ headers?: {
11270
+ [key: string]: string;
11271
+ };
11272
+ statusCode?: number;
11273
+ body?: DeleteRCNodePoolResponseBody;
11274
+ static names(): {
11275
+ [key: string]: string;
11276
+ };
11277
+ static types(): {
11278
+ [key: string]: any;
11279
+ };
11280
+ constructor(map?: {
11281
+ [key: string]: any;
11282
+ });
11283
+ }
11081
11284
  export declare class DeleteRCSnapshotRequest extends $tea.Model {
11082
11285
  /**
11083
11286
  * @remarks
@@ -25095,6 +25298,7 @@ export declare class DescribeRCClusterNodesResponse extends $tea.Model {
25095
25298
  });
25096
25299
  }
25097
25300
  export declare class DescribeRCClustersRequest extends $tea.Model {
25301
+ profile?: string;
25098
25302
  /**
25099
25303
  * @remarks
25100
25304
  * The region ID.
@@ -26315,6 +26519,49 @@ export declare class DescribeRCMetricListResponse extends $tea.Model {
26315
26519
  [key: string]: any;
26316
26520
  });
26317
26521
  }
26522
+ export declare class DescribeRCNodePoolRequest extends $tea.Model {
26523
+ clusterId?: string;
26524
+ nodePoolId?: string;
26525
+ regionId?: string;
26526
+ static names(): {
26527
+ [key: string]: string;
26528
+ };
26529
+ static types(): {
26530
+ [key: string]: any;
26531
+ };
26532
+ constructor(map?: {
26533
+ [key: string]: any;
26534
+ });
26535
+ }
26536
+ export declare class DescribeRCNodePoolResponseBody extends $tea.Model {
26537
+ nodePoolList?: DescribeRCNodePoolResponseBodyNodePoolList[];
26538
+ requestId?: string;
26539
+ static names(): {
26540
+ [key: string]: string;
26541
+ };
26542
+ static types(): {
26543
+ [key: string]: any;
26544
+ };
26545
+ constructor(map?: {
26546
+ [key: string]: any;
26547
+ });
26548
+ }
26549
+ export declare class DescribeRCNodePoolResponse extends $tea.Model {
26550
+ headers?: {
26551
+ [key: string]: string;
26552
+ };
26553
+ statusCode?: number;
26554
+ body?: DescribeRCNodePoolResponseBody;
26555
+ static names(): {
26556
+ [key: string]: string;
26557
+ };
26558
+ static types(): {
26559
+ [key: string]: any;
26560
+ };
26561
+ constructor(map?: {
26562
+ [key: string]: any;
26563
+ });
26564
+ }
26318
26565
  export declare class DescribeRCSnapshotsRequest extends $tea.Model {
26319
26566
  /**
26320
26567
  * @remarks
@@ -34898,6 +35145,7 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
34898
35145
  * true
34899
35146
  */
34900
35147
  coldDataEnabled?: boolean;
35148
+ compressionMode?: string;
34901
35149
  /**
34902
35150
  * @remarks
34903
35151
  * The new instance type of the instance. For more information, see [Primary ApsaraDB RDS instance types](https://help.aliyun.com/document_detail/26312.html). You can also call the DescribeAvailableClasses operation to query the instance types that are supported by an instance.
@@ -35224,6 +35472,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
35224
35472
  * true
35225
35473
  */
35226
35474
  coldDataEnabled?: boolean;
35475
+ compressionMode?: string;
35227
35476
  /**
35228
35477
  * @remarks
35229
35478
  * The new instance type of the instance. For more information, see [Primary ApsaraDB RDS instance types](https://help.aliyun.com/document_detail/26312.html). You can also call the DescribeAvailableClasses operation to query the instance types that are supported by an instance.
@@ -41384,11 +41633,35 @@ export declare class RenewInstanceResponse extends $tea.Model {
41384
41633
  });
41385
41634
  }
41386
41635
  export declare class ReplaceRCInstanceSystemDiskRequest extends $tea.Model {
41636
+ /**
41637
+ * @example
41638
+ * m-2zec4lvlhcdkyd13****
41639
+ */
41387
41640
  imageId?: string;
41641
+ /**
41642
+ * @example
41643
+ * rc-m5ei7b1w38w2l91x****
41644
+ */
41388
41645
  instanceId?: string;
41646
+ /**
41647
+ * @example
41648
+ * None
41649
+ */
41389
41650
  isLocalDisk?: boolean;
41651
+ /**
41652
+ * @example
41653
+ * testKeyPairName
41654
+ */
41390
41655
  keyPairName?: string;
41656
+ /**
41657
+ * @example
41658
+ * testPassword
41659
+ */
41391
41660
  password?: string;
41661
+ /**
41662
+ * @example
41663
+ * cn-beijing
41664
+ */
41392
41665
  regionId?: string;
41393
41666
  static names(): {
41394
41667
  [key: string]: string;
@@ -41401,6 +41674,10 @@ export declare class ReplaceRCInstanceSystemDiskRequest extends $tea.Model {
41401
41674
  });
41402
41675
  }
41403
41676
  export declare class ReplaceRCInstanceSystemDiskResponseBody extends $tea.Model {
41677
+ /**
41678
+ * @example
41679
+ * 8B993DA9-5272-5414-94E3-4CA8BA0146C2
41680
+ */
41404
41681
  requestId?: string;
41405
41682
  static names(): {
41406
41683
  [key: string]: string;
@@ -42245,6 +42522,7 @@ export declare class RunRCInstancesRequest extends $tea.Model {
42245
42522
  * ETnLKlblzczshOTUbOCz****
42246
42523
  */
42247
42524
  clientToken?: string;
42525
+ createExtraParam?: string;
42248
42526
  createMode?: string;
42249
42527
  /**
42250
42528
  * @remarks
@@ -42402,6 +42680,7 @@ export declare class RunRCInstancesRequest extends $tea.Model {
42402
42680
  */
42403
42681
  securityGroupId?: string;
42404
42682
  spotStrategy?: string;
42683
+ supportCase?: string;
42405
42684
  /**
42406
42685
  * @remarks
42407
42686
  * The specification of the system disk.
@@ -42485,6 +42764,7 @@ export declare class RunRCInstancesShrinkRequest extends $tea.Model {
42485
42764
  * ETnLKlblzczshOTUbOCz****
42486
42765
  */
42487
42766
  clientToken?: string;
42767
+ createExtraParam?: string;
42488
42768
  createMode?: string;
42489
42769
  /**
42490
42770
  * @remarks
@@ -42642,6 +42922,7 @@ export declare class RunRCInstancesShrinkRequest extends $tea.Model {
42642
42922
  */
42643
42923
  securityGroupId?: string;
42644
42924
  spotStrategy?: string;
42925
+ supportCase?: string;
42645
42926
  /**
42646
42927
  * @remarks
42647
42928
  * The specification of the system disk.
@@ -46019,6 +46300,61 @@ export declare class CreateRCDeploymentSetRequestTag extends $tea.Model {
46019
46300
  [key: string]: any;
46020
46301
  });
46021
46302
  }
46303
+ export declare class CreateRCNodePoolRequestDataDisk extends $tea.Model {
46304
+ category?: string;
46305
+ deleteWithInstance?: boolean;
46306
+ encrypted?: string;
46307
+ performanceLevel?: string;
46308
+ size?: number;
46309
+ static names(): {
46310
+ [key: string]: string;
46311
+ };
46312
+ static types(): {
46313
+ [key: string]: any;
46314
+ };
46315
+ constructor(map?: {
46316
+ [key: string]: any;
46317
+ });
46318
+ }
46319
+ export declare class CreateRCNodePoolRequestSystemDisk extends $tea.Model {
46320
+ category?: string;
46321
+ size?: number;
46322
+ static names(): {
46323
+ [key: string]: string;
46324
+ };
46325
+ static types(): {
46326
+ [key: string]: any;
46327
+ };
46328
+ constructor(map?: {
46329
+ [key: string]: any;
46330
+ });
46331
+ }
46332
+ export declare class CreateRCNodePoolRequestTag extends $tea.Model {
46333
+ key?: string;
46334
+ value?: string;
46335
+ static names(): {
46336
+ [key: string]: string;
46337
+ };
46338
+ static types(): {
46339
+ [key: string]: any;
46340
+ };
46341
+ constructor(map?: {
46342
+ [key: string]: any;
46343
+ });
46344
+ }
46345
+ export declare class CreateRCNodePoolShrinkRequestTag extends $tea.Model {
46346
+ key?: string;
46347
+ value?: string;
46348
+ static names(): {
46349
+ [key: string]: string;
46350
+ };
46351
+ static types(): {
46352
+ [key: string]: any;
46353
+ };
46354
+ constructor(map?: {
46355
+ [key: string]: any;
46356
+ });
46357
+ }
46022
46358
  export declare class DeleteBackupFileResponseBodyDeletedBaksetIds extends $tea.Model {
46023
46359
  deletedBaksetIds?: number[];
46024
46360
  static names(): {
@@ -49102,6 +49438,8 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
49102
49438
  * Chinese_PRC_CI_AS
49103
49439
  */
49104
49440
  collation?: string;
49441
+ compressionMode?: string;
49442
+ compressionRatio?: string;
49105
49443
  /**
49106
49444
  * @remarks
49107
49445
  * The connection mode of the instance. Valid values:
@@ -49622,6 +49960,7 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
49622
49960
  * Disabled
49623
49961
  */
49624
49962
  superPermissionMode?: string;
49963
+ supportCompression?: boolean;
49625
49964
  /**
49626
49965
  * @remarks
49627
49966
  * The ID of the temporary instance that is attached to the primary instance.
@@ -57533,6 +57872,7 @@ export declare class DescribeRCClustersResponseBodyClusters extends $tea.Model {
57533
57872
  * 2024-10-30T02:16:04Z
57534
57873
  */
57535
57874
  createTime?: string;
57875
+ profile?: string;
57536
57876
  /**
57537
57877
  * @remarks
57538
57878
  * The cluster status. Valid values:
@@ -58575,6 +58915,89 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Mod
58575
58915
  [key: string]: any;
58576
58916
  });
58577
58917
  }
58918
+ export declare class DescribeRCNodePoolResponseBodyNodePoolListDataDisk extends $tea.Model {
58919
+ category?: string;
58920
+ deleteWithInstance?: boolean;
58921
+ encrypted?: string;
58922
+ performanceLevel?: string;
58923
+ size?: number;
58924
+ static names(): {
58925
+ [key: string]: string;
58926
+ };
58927
+ static types(): {
58928
+ [key: string]: any;
58929
+ };
58930
+ constructor(map?: {
58931
+ [key: string]: any;
58932
+ });
58933
+ }
58934
+ export declare class DescribeRCNodePoolResponseBodyNodePoolListSystemDisk extends $tea.Model {
58935
+ category?: string;
58936
+ size?: number;
58937
+ static names(): {
58938
+ [key: string]: string;
58939
+ };
58940
+ static types(): {
58941
+ [key: string]: any;
58942
+ };
58943
+ constructor(map?: {
58944
+ [key: string]: any;
58945
+ });
58946
+ }
58947
+ export declare class DescribeRCNodePoolResponseBodyNodePoolListTag extends $tea.Model {
58948
+ key?: string;
58949
+ value?: string;
58950
+ static names(): {
58951
+ [key: string]: string;
58952
+ };
58953
+ static types(): {
58954
+ [key: string]: any;
58955
+ };
58956
+ constructor(map?: {
58957
+ [key: string]: any;
58958
+ });
58959
+ }
58960
+ export declare class DescribeRCNodePoolResponseBodyNodePoolList extends $tea.Model {
58961
+ autoPay?: boolean;
58962
+ autoRenew?: boolean;
58963
+ clusterId?: string;
58964
+ createMode?: string;
58965
+ dataDisk?: DescribeRCNodePoolResponseBodyNodePoolListDataDisk[];
58966
+ deploymentSetId?: string;
58967
+ description?: string;
58968
+ hostName?: string;
58969
+ imageId?: string;
58970
+ instanceChargeType?: string;
58971
+ instanceName?: string;
58972
+ instanceType?: string;
58973
+ internetChargeType?: string;
58974
+ internetMaxBandwidthOut?: number;
58975
+ ioOptimized?: string;
58976
+ keyPairName?: string;
58977
+ nodePoolId?: string;
58978
+ nodePoolName?: string;
58979
+ password?: string;
58980
+ period?: number;
58981
+ periodUnit?: string;
58982
+ regionId?: string;
58983
+ resourceGroupId?: string;
58984
+ securityEnhancementStrategy?: string;
58985
+ securityGroupId?: string;
58986
+ spotStrategy?: string;
58987
+ systemDisk?: DescribeRCNodePoolResponseBodyNodePoolListSystemDisk;
58988
+ tag?: DescribeRCNodePoolResponseBodyNodePoolListTag[];
58989
+ vSwitchId?: string;
58990
+ zoneId?: string;
58991
+ static names(): {
58992
+ [key: string]: string;
58993
+ };
58994
+ static types(): {
58995
+ [key: string]: any;
58996
+ };
58997
+ constructor(map?: {
58998
+ [key: string]: any;
58999
+ });
59000
+ }
58578
59001
  export declare class DescribeRCSnapshotsResponseBodySnapshots extends $tea.Model {
58579
59002
  /**
58580
59003
  * @remarks
@@ -62643,6 +63066,7 @@ export declare class RunRCInstancesRequestSystemDisk extends $tea.Model {
62643
63066
  * cloud_essd
62644
63067
  */
62645
63068
  category?: string;
63069
+ performanceLevel?: string;
62646
63070
  /**
62647
63071
  * @remarks
62648
63072
  * The size of the system disk. Unit: GiB. Only performance level 1 (PL1) ESSDs are supported. Valid values: 20 to 2048.
@@ -64143,6 +64567,21 @@ export default class Client extends OpenApi {
64143
64567
  * @returns CreateRCDiskResponse
64144
64568
  */
64145
64569
  createRCDisk(request: CreateRCDiskRequest): Promise<CreateRCDiskResponse>;
64570
+ /**
64571
+ * 创建RC节点池模版
64572
+ *
64573
+ * @param tmpReq - CreateRCNodePoolRequest
64574
+ * @param runtime - runtime options for this request RuntimeOptions
64575
+ * @returns CreateRCNodePoolResponse
64576
+ */
64577
+ createRCNodePoolWithOptions(tmpReq: CreateRCNodePoolRequest, runtime: $Util.RuntimeOptions): Promise<CreateRCNodePoolResponse>;
64578
+ /**
64579
+ * 创建RC节点池模版
64580
+ *
64581
+ * @param request - CreateRCNodePoolRequest
64582
+ * @returns CreateRCNodePoolResponse
64583
+ */
64584
+ createRCNodePool(request: CreateRCNodePoolRequest): Promise<CreateRCNodePoolResponse>;
64146
64585
  /**
64147
64586
  * Creates a snapshot for a cloud disk.
64148
64587
  *
@@ -64892,6 +65331,21 @@ export default class Client extends OpenApi {
64892
65331
  * @returns DeleteRCInstancesResponse
64893
65332
  */
64894
65333
  deleteRCInstances(request: DeleteRCInstancesRequest): Promise<DeleteRCInstancesResponse>;
65334
+ /**
65335
+ * 删除RC模版
65336
+ *
65337
+ * @param request - DeleteRCNodePoolRequest
65338
+ * @param runtime - runtime options for this request RuntimeOptions
65339
+ * @returns DeleteRCNodePoolResponse
65340
+ */
65341
+ deleteRCNodePoolWithOptions(request: DeleteRCNodePoolRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCNodePoolResponse>;
65342
+ /**
65343
+ * 删除RC模版
65344
+ *
65345
+ * @param request - DeleteRCNodePoolRequest
65346
+ * @returns DeleteRCNodePoolResponse
65347
+ */
65348
+ deleteRCNodePool(request: DeleteRCNodePoolRequest): Promise<DeleteRCNodePoolResponse>;
64895
65349
  /**
64896
65350
  * Deletes a cloud disk snapshot.
64897
65351
  *
@@ -67804,6 +68258,21 @@ export default class Client extends OpenApi {
67804
68258
  * @returns DescribeRCMetricListResponse
67805
68259
  */
67806
68260
  describeRCMetricList(request: DescribeRCMetricListRequest): Promise<DescribeRCMetricListResponse>;
68261
+ /**
68262
+ * 描述RC模版
68263
+ *
68264
+ * @param request - DescribeRCNodePoolRequest
68265
+ * @param runtime - runtime options for this request RuntimeOptions
68266
+ * @returns DescribeRCNodePoolResponse
68267
+ */
68268
+ describeRCNodePoolWithOptions(request: DescribeRCNodePoolRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCNodePoolResponse>;
68269
+ /**
68270
+ * 描述RC模版
68271
+ *
68272
+ * @param request - DescribeRCNodePoolRequest
68273
+ * @returns DescribeRCNodePoolResponse
68274
+ */
68275
+ describeRCNodePool(request: DescribeRCNodePoolRequest): Promise<DescribeRCNodePoolResponse>;
67807
68276
  /**
67808
68277
  * Queries the details of snapshots. The details include the status of the snapshots, the amount of remaining time required to create the snapshots, and the retention period of the automatic snapshots in days.
67809
68278
  *