tencentcloud-sdk-nodejs-cdb 4.1.55 → 4.1.56

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.55",
3
+ "version": "4.1.56",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1546,17 +1546,17 @@ export interface AssociateSecurityGroupsResponse {
1546
1546
  */
1547
1547
  export interface DescribeCPUExpandStrategyInfoResponse {
1548
1548
  /**
1549
- * 策略类型。可选值 auto、manual。如果返回为NULL说明尚未开通弹性扩容策略
1549
+ * 策略类型。输出值 auto、manual。如果返回为 NULL 说明尚未开通弹性扩容策略。
1550
1550
  注意:此字段可能返回 null,表示取不到有效值。
1551
1551
  */
1552
1552
  Type?: string;
1553
1553
  /**
1554
- * 手动扩容的 CPU 。Type为 manual 时有效。
1554
+ * 手动扩容的 CPU 。Type 为 manual 时有效。
1555
1555
  注意:此字段可能返回 null,表示取不到有效值。
1556
1556
  */
1557
1557
  ExpandCpu?: number;
1558
1558
  /**
1559
- * 自动扩容策略。Type 为 auto 时有效
1559
+ * 自动扩容策略。Type 为 auto 时有效。
1560
1560
  注意:此字段可能返回 null,表示取不到有效值。
1561
1561
  */
1562
1562
  AutoStrategy?: AutoStrategy;
@@ -1565,7 +1565,7 @@ export interface DescribeCPUExpandStrategyInfoResponse {
1565
1565
  */
1566
1566
  PeriodStrategy?: PeriodStrategy;
1567
1567
  /**
1568
- * 按时间段扩容策略
1568
+ * 按时间段扩容策略。
1569
1569
  */
1570
1570
  TimeIntervalStrategy?: TimeIntervalStrategy;
1571
1571
  /**
@@ -2433,11 +2433,13 @@ export interface DescribeBinlogsRequest {
2433
2433
  */
2434
2434
  export interface TimeIntervalStrategy {
2435
2435
  /**
2436
- * 开始扩容时间
2436
+ * 开始扩容时间。
2437
+ 说明:此值的格式为 Integer 的时间戳。
2437
2438
  */
2438
2439
  StartTime?: number;
2439
2440
  /**
2440
- * 结束扩容时间
2441
+ * 结束扩容时间。
2442
+ 说明:此值的格式为 Integer 的时间戳。
2441
2443
  */
2442
2444
  EndTime?: number;
2443
2445
  }
@@ -3185,7 +3187,7 @@ export interface DescribeSlowLogsResponse {
3185
3187
  */
3186
3188
  export interface DescribeCPUExpandStrategyInfoRequest {
3187
3189
  /**
3188
- * 实例 ID
3190
+ * 实例 ID。
3189
3191
  */
3190
3192
  InstanceId: string;
3191
3193
  }
@@ -7488,11 +7490,12 @@ export interface DescribeTagsOfInstanceIdsRequest {
7488
7490
  */
7489
7491
  export interface StartCpuExpandRequest {
7490
7492
  /**
7491
- * 实例 ID
7493
+ * 实例 ID。
7492
7494
  */
7493
7495
  InstanceId: string;
7494
7496
  /**
7495
- * 扩容类型。auto 自动 manual 立即生效 timeInterval 按时间段 period 按周期
7497
+ * 扩容类型。auto 自动 manual 立即生效 timeInterval 按时间段 period 按周期。
7498
+
7496
7499
  */
7497
7500
  Type: string;
7498
7501
  /**
@@ -7505,11 +7508,11 @@ export interface StartCpuExpandRequest {
7505
7508
  */
7506
7509
  AutoStrategy?: AutoStrategy;
7507
7510
  /**
7508
- * 按时间段扩容策略
7511
+ * 按时间段扩容策略。
7509
7512
  */
7510
7513
  TimeIntervalStrategy?: TimeIntervalStrategy;
7511
7514
  /**
7512
- * 按周期扩容策略
7515
+ * 按周期扩容策略。
7513
7516
  */
7514
7517
  PeriodStrategy?: PeriodStrategy;
7515
7518
  }
@@ -8243,11 +8246,11 @@ export interface DeleteParamTemplateResponse {
8243
8246
  */
8244
8247
  export interface TimeInterval {
8245
8248
  /**
8246
- * 开始时间
8249
+ * 开始时间。
8247
8250
  */
8248
8251
  StartTime?: string;
8249
8252
  /**
8250
- * 结束时间
8253
+ * 结束时间。
8251
8254
  */
8252
8255
  EndTime?: string;
8253
8256
  }
@@ -9172,31 +9175,38 @@ export interface DescribeDBFeaturesRequest {
9172
9175
  */
9173
9176
  export interface TImeCycle {
9174
9177
  /**
9175
- * 周一的扩容时间段
9178
+ * 按周期扩容时,是否选择周一扩容。
9179
+ 说明:取值 true,表示选择,取值 false,表示不选择。
9176
9180
  */
9177
9181
  Monday?: boolean;
9178
9182
  /**
9179
- * 周二的扩容时间段
9183
+ * 按周期扩容时,是否选择周二扩容。
9184
+ 说明:取值 true,表示选择,取值 false,表示不选择。
9180
9185
  */
9181
9186
  Tuesday?: boolean;
9182
9187
  /**
9183
- * 周三的扩容时间段
9188
+ * 按周期扩容时,是否选择周三扩容。
9189
+ 说明:取值 true,表示选择,取值 false,表示不选择。
9184
9190
  */
9185
9191
  Wednesday?: boolean;
9186
9192
  /**
9187
- * 周四的扩容时间段
9193
+ * 按周期扩容时,是否选择周四扩容。
9194
+ 说明:取值 true,表示选择,取值 false,表示不选择。
9188
9195
  */
9189
9196
  Thursday?: boolean;
9190
9197
  /**
9191
- * 周五的扩容时间段
9198
+ * 按周期扩容时,是否选择周五扩容。
9199
+ 说明:取值 true,表示选择,取值 false,表示不选择。
9192
9200
  */
9193
9201
  Friday?: boolean;
9194
9202
  /**
9195
- * 周六的扩容时间段
9203
+ * 按周期扩容时,是否选择周六扩容。
9204
+ 说明:取值 true,表示选择,取值 false,表示不选择。
9196
9205
  */
9197
9206
  Saturday?: boolean;
9198
9207
  /**
9199
- * 周日的扩容时间段
9208
+ * 按周期扩容时,是否选择周日扩容。
9209
+ 说明:取值 true,表示选择,取值 false,表示不选择。
9200
9210
  */
9201
9211
  Sunday?: boolean;
9202
9212
  }