tencentcloud-sdk-nodejs-cynosdb 4.1.305 → 4.1.307

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.305",
3
+ "version": "4.1.307",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -761,7 +761,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
761
761
  /**
762
762
  * 本接口(TransferStoragePrepayToPostpay)用于将预付费存储转为后付费存储
763
763
  */
764
- TransferStoragePrepayToPostpay(req?: TransferStoragePrepayToPostpayRequest, cb?: (error: string, rep: TransferStoragePrepayToPostpayResponse) => void): Promise<TransferStoragePrepayToPostpayResponse>;
764
+ TransferStoragePrepayToPostpay(req: TransferStoragePrepayToPostpayRequest, cb?: (error: string, rep: TransferStoragePrepayToPostpayResponse) => void): Promise<TransferStoragePrepayToPostpayResponse>;
765
765
  /**
766
766
  * 本接口(ModifyAccountDescription)用于修改数据库账号描述信息。
767
767
  */
@@ -662,19 +662,19 @@ export interface DescribeProxiesResponse {
662
662
  */
663
663
  export interface DescribeClusterDetailDatabasesRequest {
664
664
  /**
665
- * 集群ID
665
+ * <p>集群ID</p>
666
666
  */
667
667
  ClusterId: string;
668
668
  /**
669
- * 偏移量,默认0
669
+ * <p>偏移量,默认0</p>
670
670
  */
671
671
  Offset?: number;
672
672
  /**
673
- * 返回数量,默认20,最大100
673
+ * <p>返回数量,默认20,最大100</p>
674
674
  */
675
675
  Limit?: number;
676
676
  /**
677
- * 数据库名称
677
+ * <p>数据库名称,通过该字段进行子串匹配</p>
678
678
  */
679
679
  DbName?: string;
680
680
  }
@@ -2540,7 +2540,7 @@ export interface DescribeInstanceSpecsRequest {
2540
2540
  */
2541
2541
  DeviceType?: string;
2542
2542
  /**
2543
- * <p>集群级别,可空。例如 P0, P1</p>
2543
+ * <p>集群级别。例如 P0, P1。若未指定可用区,针对于不支持亲和性的可用区将降级查询非亲和性资源。</p>
2544
2544
  */
2545
2545
  ClusterLevel?: string;
2546
2546
  }
@@ -5263,11 +5263,11 @@ export interface ModifyBackupDownloadRestrictionRequest {
5263
5263
  */
5264
5264
  export interface DescribeClusterDetailDatabasesResponse {
5265
5265
  /**
5266
- * 数据库信息
5266
+ * <p>数据库信息</p>
5267
5267
  */
5268
5268
  DbInfos?: Array<DbInfo>;
5269
5269
  /**
5270
- * 总数
5270
+ * <p>总数</p>
5271
5271
  */
5272
5272
  TotalCount?: number;
5273
5273
  /**
@@ -5895,6 +5895,10 @@ export interface RestartLibraDBInstanceRequest {
5895
5895
  * DeleteAccounts返回参数结构体
5896
5896
  */
5897
5897
  export interface DeleteAccountsResponse {
5898
+ /**
5899
+ * <p>任务 ID</p>
5900
+ */
5901
+ TaskId?: number;
5898
5902
  /**
5899
5903
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5900
5904
  */
@@ -7528,7 +7532,7 @@ export interface AddInstancesRequest {
7528
7532
  */
7529
7533
  DeviceType?: string;
7530
7534
  /**
7531
- * <p>实例组ID,在已有RO组中新增实例时使用,不传则新增RO组。当前版本不建议传输该值。</p>
7535
+ * <p>当前字段已废弃。当前版本不再传输该值。</p>
7532
7536
  * @deprecated
7533
7537
  */
7534
7538
  InstanceGrpId?: string;
@@ -14217,7 +14221,12 @@ export interface SwitchClusterLogBin {
14217
14221
  /**
14218
14222
  * TransferStoragePrepayToPostpay请求参数结构体
14219
14223
  */
14220
- export type TransferStoragePrepayToPostpayRequest = null;
14224
+ export interface TransferStoragePrepayToPostpayRequest {
14225
+ /**
14226
+ * <p>集群id</p>
14227
+ */
14228
+ ClusterId: string;
14229
+ }
14221
14230
  /**
14222
14231
  * ModifyVault请求参数结构体
14223
14232
  */
@@ -14788,6 +14797,26 @@ export interface ParamInfo {
14788
14797
  * TransferStoragePrepayToPostpay返回参数结构体
14789
14798
  */
14790
14799
  export interface TransferStoragePrepayToPostpayResponse {
14800
+ /**
14801
+ * <p>预付费总订单号</p>
14802
+ 注意:此字段可能返回 null,表示取不到有效值。
14803
+ */
14804
+ BigDealIds?: Array<string>;
14805
+ /**
14806
+ * <p>订单号</p>
14807
+ 注意:此字段可能返回 null,表示取不到有效值。
14808
+ */
14809
+ DealNames?: Array<string>;
14810
+ /**
14811
+ * <p>资源id</p>
14812
+ 注意:此字段可能返回 null,表示取不到有效值。
14813
+ */
14814
+ ResourceIds?: Array<string>;
14815
+ /**
14816
+ * <p>集群id</p>
14817
+ 注意:此字段可能返回 null,表示取不到有效值。
14818
+ */
14819
+ ClusterIds?: Array<string>;
14791
14820
  /**
14792
14821
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14793
14822
  */