tencentcloud-sdk-nodejs-cynosdb 4.1.300 → 4.1.302
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-cynosdb",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.302",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"@types/json-bigint": "^1.0.1",
|
|
50
50
|
"@types/node": "^18.0.0",
|
|
51
51
|
"@types/node-fetch": "^2.5.7",
|
|
52
|
-
"@types/uuid": "^9.0.8",
|
|
53
52
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
54
53
|
"@typescript-eslint/parser": "^2.34.0",
|
|
55
54
|
"babel-eslint": "^10.0.2",
|
|
@@ -437,7 +437,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
437
437
|
/**
|
|
438
438
|
* 本接口(TransferClusterPrepayToPostpay)用于将预付费集群转为后付费集群
|
|
439
439
|
*/
|
|
440
|
-
TransferClusterPrepayToPostpay(req
|
|
440
|
+
TransferClusterPrepayToPostpay(req: TransferClusterPrepayToPostpayRequest, cb?: (error: string, rep: TransferClusterPrepayToPostpayResponse) => void): Promise<TransferClusterPrepayToPostpayResponse>;
|
|
441
441
|
/**
|
|
442
442
|
* 本接口(RollbackToNewCluster)用于回档到新集群。
|
|
443
443
|
*/
|
|
@@ -1531,7 +1531,7 @@ export interface CynosdbInstance {
|
|
|
1531
1531
|
*/
|
|
1532
1532
|
Zone?: string;
|
|
1533
1533
|
/**
|
|
1534
|
-
* <p>实例状态</p>
|
|
1534
|
+
* <p>实例状态</p><p>枚举值:</p><ul><li>creating: 创建中</li><li>running: 运行中</li><li>isolating: 隔离中</li><li>isolated: 已隔离</li><li>activating: 从回收站重新恢复</li><li>offlining: 下线中</li><li>offlined: 已下线</li><li>deleting: 删除中</li><li>deleted: 已删除</li></ul>
|
|
1535
1535
|
*/
|
|
1536
1536
|
Status?: string;
|
|
1537
1537
|
/**
|
|
@@ -5570,6 +5570,31 @@ export interface DescribeVaultsResponse {
|
|
|
5570
5570
|
* TransferClusterPrepayToPostpay返回参数结构体
|
|
5571
5571
|
*/
|
|
5572
5572
|
export interface TransferClusterPrepayToPostpayResponse {
|
|
5573
|
+
/**
|
|
5574
|
+
* <p>预付费总订单号</p>
|
|
5575
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5576
|
+
*/
|
|
5577
|
+
BigDealIds?: Array<string>;
|
|
5578
|
+
/**
|
|
5579
|
+
* <p>冻结流水</p>
|
|
5580
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5581
|
+
*/
|
|
5582
|
+
TranId?: string;
|
|
5583
|
+
/**
|
|
5584
|
+
* <p>订单号</p>
|
|
5585
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5586
|
+
*/
|
|
5587
|
+
DealNames?: Array<string>;
|
|
5588
|
+
/**
|
|
5589
|
+
* <p>资源id</p>
|
|
5590
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5591
|
+
*/
|
|
5592
|
+
ResourceIds?: Array<string>;
|
|
5593
|
+
/**
|
|
5594
|
+
* <p>集群id</p>
|
|
5595
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5596
|
+
*/
|
|
5597
|
+
ClusterIds?: Array<string>;
|
|
5573
5598
|
/**
|
|
5574
5599
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5575
5600
|
*/
|
|
@@ -6758,7 +6783,12 @@ export interface RegionInstanceSpecInfo {
|
|
|
6758
6783
|
/**
|
|
6759
6784
|
* TransferClusterPrepayToPostpay请求参数结构体
|
|
6760
6785
|
*/
|
|
6761
|
-
export
|
|
6786
|
+
export interface TransferClusterPrepayToPostpayRequest {
|
|
6787
|
+
/**
|
|
6788
|
+
* <p>集群id</p>
|
|
6789
|
+
*/
|
|
6790
|
+
ClusterId: string;
|
|
6791
|
+
}
|
|
6762
6792
|
/**
|
|
6763
6793
|
* ModifyAccountPrivileges返回参数结构体
|
|
6764
6794
|
*/
|