tencentcloud-sdk-nodejs-cdb 4.1.78 → 4.1.80

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-cdb",
3
- "version": "4.1.78",
3
+ "version": "4.1.80",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -432,7 +432,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
432
432
  */
433
433
  CloseCdbProxyAddress(req: CloseCdbProxyAddressRequest, cb?: (error: string, rep: CloseCdbProxyAddressResponse) => void): Promise<CloseCdbProxyAddressResponse>;
434
434
  /**
435
- * 本接口(DeleteBackup)用于删除数据库备份。本接口只支持删除手动发起的备份。
435
+ * 本接口(DeleteBackup)用于删除数据库备份。本接口只支持删除手动发起的备份。
436
436
  */
437
437
  DeleteBackup(req: DeleteBackupRequest, cb?: (error: string, rep: DeleteBackupResponse) => void): Promise<DeleteBackupResponse>;
438
438
  /**
@@ -646,7 +646,7 @@ class Client extends TencentCloudCommon.AbstractClient {
646
646
  return this.request("CloseCdbProxyAddress", req, cb);
647
647
  }
648
648
  /**
649
- * 本接口(DeleteBackup)用于删除数据库备份。本接口只支持删除手动发起的备份。
649
+ * 本接口(DeleteBackup)用于删除数据库备份。本接口只支持删除手动发起的备份。
650
650
  */
651
651
  async DeleteBackup(req, cb) {
652
652
  return this.request("DeleteBackup", req, cb);
@@ -177,6 +177,14 @@ export interface CdbZoneSellConf {
177
177
  * 可支持的售卖数据库引擎类型
178
178
  */
179
179
  EngineType?: Array<string>;
180
+ /**
181
+ * 集群版实例在当前可用区的售卖状态。可能的返回值为:1-上线;3-停售;4-不展示
182
+ */
183
+ CloudNativeClusterStatus?: number;
184
+ /**
185
+ * 集群版或者单节点基础型支持的磁盘类型。
186
+ */
187
+ DiskTypeConf?: Array<DiskTypeConfigItem>;
180
188
  }
181
189
  /**
182
190
  * CreateDBImportJob请求参数结构体
@@ -4735,6 +4743,19 @@ export interface ModifyBackupConfigRequest {
4735
4743
  */
4736
4744
  BinlogStandbyDays?: number;
4737
4745
  }
4746
+ /**
4747
+ * 磁盘售卖类型
4748
+ */
4749
+ export interface DiskTypeConfigItem {
4750
+ /**
4751
+ * 磁盘对应的实例类型。仅支持单节点基础型和集群版。
4752
+ */
4753
+ DeviceType?: string;
4754
+ /**
4755
+ * 可以选择的磁盘类型列表。
4756
+ */
4757
+ DiskType?: Array<string>;
4758
+ }
4738
4759
  /**
4739
4760
  * DisassociateSecurityGroups返回参数结构体
4740
4761
  */
@@ -4782,17 +4803,17 @@ export interface DeployGroupInfo {
4782
4803
  DevClass?: string;
4783
4804
  }
4784
4805
  /**
4785
- * 本地binlog保留配置
4806
+ * 本地 binlog 保留配置
4786
4807
  */
4787
4808
  export interface LocalBinlogConfig {
4788
4809
  /**
4789
- * 本地binlog保留时长,可取值范围:[72,168]。
4810
+ * 本地 binlog 保留时长,可取值范围:[6,168]。
4790
4811
  */
4791
- SaveHours: number;
4812
+ SaveHours?: number;
4792
4813
  /**
4793
- * 本地binlog空间使用率,可取值范围:[30,50]。
4814
+ * 本地 binlog 空间使用率,可取值范围:[30,50]。
4794
4815
  */
4795
- MaxUsage: number;
4816
+ MaxUsage?: number;
4796
4817
  }
4797
4818
  /**
4798
4819
  * InquiryPriceUpgradeInstances返回参数结构体
@@ -6061,7 +6082,7 @@ export interface SlowLogInfo {
6061
6082
  */
6062
6083
  Size?: number;
6063
6084
  /**
6064
- * 备份快照时间,时间格式:2016-03-17 02:10:37
6085
+ * 备份快照时间,时间格式:2016-03-17
6065
6086
  */
6066
6087
  Date?: string;
6067
6088
  /**
@@ -10156,17 +10177,17 @@ export interface BackupConfig {
10156
10177
  Vport?: number;
10157
10178
  }
10158
10179
  /**
10159
- * 本地binlog保留策略默认配置。
10180
+ * 本地 binlog 保留策略默认配置
10160
10181
  */
10161
10182
  export interface LocalBinlogConfigDefault {
10162
10183
  /**
10163
- * 本地binlog保留时长,可取值范围:[72,168]。
10184
+ * 本地 binlog 保留时长,可取值范围:[6,168]。
10164
10185
  */
10165
- SaveHours: number;
10186
+ SaveHours?: number;
10166
10187
  /**
10167
- * 本地binlog空间使用率,可取值范围:[30,50]。
10188
+ * 本地 binlog 空间使用率,可取值范围:[30,50]。
10168
10189
  */
10169
- MaxUsage: number;
10190
+ MaxUsage?: number;
10170
10191
  }
10171
10192
  /**
10172
10193
  * DescribeSSLStatus请求参数结构体