tencentcloud-sdk-nodejs-cynosdb 4.1.44 → 4.1.48

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.44",
3
+ "version": "4.1.48",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2388,6 +2388,10 @@ export interface DescribeServerlessStrategyResponse {
2388
2388
  * 集群是否允许向下缩容,可选范围<li>yes</li><li>no</li>
2389
2389
  */
2390
2390
  AutoScaleDown?: string;
2391
+ /**
2392
+ * 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
2393
+ */
2394
+ AutoArchive?: string;
2391
2395
  /**
2392
2396
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2393
2397
  */
@@ -3724,7 +3728,7 @@ export interface DescribeParamTemplatesResponse {
3724
3728
  */
3725
3729
  export interface ProxyConfig {
3726
3730
  /**
3727
- * 数据库代理组节点个数(该参数不再建议使用,建议使用ProxyZones)
3731
+ * 数据库代理组节点个数。该参数不再建议使用,建议使用ProxyZones
3728
3732
  */
3729
3733
  ProxyCount?: number;
3730
3734
  /**
@@ -3736,7 +3740,7 @@ export interface ProxyConfig {
3736
3740
  */
3737
3741
  Mem?: number;
3738
3742
  /**
3739
- * 连接池类型:SessionConnectionPool(会话级别连接池 )
3743
+ * 连接池类型:SessionConnectionPool(会话级别连接池 )
3740
3744
  */
3741
3745
  ConnectionPoolType?: string;
3742
3746
  /**
@@ -3744,7 +3748,7 @@ export interface ProxyConfig {
3744
3748
  */
3745
3749
  OpenConnectionPool?: string;
3746
3750
  /**
3747
- * 连接池阈值:单位(秒)
3751
+ * 连接池阈值:单位(秒)
3748
3752
  */
3749
3753
  ConnectionPoolTimeOut?: number;
3750
3754
  /**
@@ -4244,6 +4248,39 @@ export interface ResumeServerlessResponse {
4244
4248
  */
4245
4249
  RequestId?: string;
4246
4250
  }
4251
+ /**
4252
+ * 全球数据库任务信息
4253
+ */
4254
+ export interface GdnTaskInfo {
4255
+ /**
4256
+ * 全球数据库唯一标识
4257
+ */
4258
+ GdnId?: string;
4259
+ /**
4260
+ * 全球数据库唯一别名
4261
+ */
4262
+ GdnName?: string;
4263
+ /**
4264
+ * 主集群ID
4265
+ */
4266
+ PrimaryClusterId?: string;
4267
+ /**
4268
+ * 主集群所在地域
4269
+ */
4270
+ PrimaryClusterRegion?: string;
4271
+ /**
4272
+ * 从集群所在地域
4273
+ */
4274
+ StandbyClusterRegion?: string;
4275
+ /**
4276
+ * 从集群ID
4277
+ */
4278
+ StandbyClusterId?: string;
4279
+ /**
4280
+ * 从集群别名
4281
+ */
4282
+ StandbyClusterName?: string;
4283
+ }
4247
4284
  /**
4248
4285
  * 售卖可用区信息
4249
4286
  */
@@ -5417,6 +5454,10 @@ export interface BizTaskInfo {
5417
5454
  * 任务进度信息
5418
5455
  */
5419
5456
  TaskProgressInfo?: TaskProgressInfo;
5457
+ /**
5458
+ * 全球数据库网络任务
5459
+ */
5460
+ GdnTaskInfo?: GdnTaskInfo;
5420
5461
  }
5421
5462
  /**
5422
5463
  * DescribeRollbackTimeRange请求参数结构体
@@ -6637,6 +6678,10 @@ export interface RollbackToNewClusterRequest {
6637
6678
  * 项目id
6638
6679
  */
6639
6680
  ProjectId?: number;
6681
+ /**
6682
+ * 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
6683
+ */
6684
+ AutoArchive?: string;
6640
6685
  }
6641
6686
  /**
6642
6687
  * Binlog描述
@@ -7837,6 +7882,18 @@ export interface CynosdbClusterDetail {
7837
7882
  如为空,该字段无效
7838
7883
  */
7839
7884
  GdnRole?: string;
7885
+ /**
7886
+ * 二级存储使用量,单位:G
7887
+ */
7888
+ UsedArchiveStorage?: number;
7889
+ /**
7890
+ * 归档状态,枚举值<li>normal:正常</li><li>archiving:归档中</li><li>resuming:恢复中</li><li>archived :已归档</li>
7891
+ */
7892
+ ArchiveStatus?: string;
7893
+ /**
7894
+ * 归档进度,百分比。
7895
+ */
7896
+ ArchiveProgress?: number;
7840
7897
  }
7841
7898
  /**
7842
7899
  * RestartInstance请求参数结构体
@@ -10069,6 +10126,10 @@ export interface ModifyServerlessStrategyRequest {
10069
10126
  * 只读节点最大个数
10070
10127
  */
10071
10128
  MaxRoCount?: number;
10129
+ /**
10130
+ * 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
10131
+ */
10132
+ AutoArchive?: string;
10072
10133
  }
10073
10134
  /**
10074
10135
  * DescribeBinlogConfig返回参数结构体