tencentcloud-sdk-nodejs-postgres 4.1.127 → 4.1.128

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-postgres",
3
- "version": "4.1.127",
3
+ "version": "4.1.128",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -25,8 +25,8 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
25
25
  DescribeDBErrlogs(req: DescribeDBErrlogsRequest, cb?: (error: string, rep: DescribeDBErrlogsResponse) => void): Promise<DescribeDBErrlogsResponse>;
26
26
  /**
27
27
  * 本接口(DescribeDBInstanceHAConfig)用于查询实例HA配置信息。其中HA配置信息包括:
28
- <li>允许备节点切换为主节点的条件配置
29
- <li>半同步实例使用同步复制或异步复制的条件配置
28
+ <li>允许备节点切换为主节点的条件配置</li>
29
+ <li>半同步实例使用同步复制或异步复制的条件配置</li>
30
30
  */
31
31
  DescribeDBInstanceHAConfig(req: DescribeDBInstanceHAConfigRequest, cb?: (error: string, rep: DescribeDBInstanceHAConfigResponse) => void): Promise<DescribeDBInstanceHAConfigResponse>;
32
32
  /**
@@ -55,8 +55,8 @@ class Client extends TencentCloudCommon.AbstractClient {
55
55
  }
56
56
  /**
57
57
  * 本接口(DescribeDBInstanceHAConfig)用于查询实例HA配置信息。其中HA配置信息包括:
58
- <li>允许备节点切换为主节点的条件配置
59
- <li>半同步实例使用同步复制或异步复制的条件配置
58
+ <li>允许备节点切换为主节点的条件配置</li>
59
+ <li>半同步实例使用同步复制或异步复制的条件配置</li>
60
60
  */
61
61
  async DescribeDBInstanceHAConfig(req, cb) {
62
62
  return this.request("DescribeDBInstanceHAConfig", req, cb);
@@ -2988,7 +2988,7 @@ export interface RestartDBInstanceRequest {
2988
2988
  */
2989
2989
  export interface DescribeDBInstanceHAConfigRequest {
2990
2990
  /**
2991
- * 实例ID
2991
+ * 实例ID。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取
2992
2992
  */
2993
2993
  DBInstanceId: string;
2994
2994
  }
@@ -3218,20 +3218,20 @@ export interface InquiryPriceUpgradeDBInstanceRequest {
3218
3218
  export interface DescribeDBInstanceHAConfigResponse {
3219
3219
  /**
3220
3220
  * 主从同步方式:
3221
- <li>Semi-sync:半同步
3222
- <li>Async:异步
3221
+ <li>Semi-sync:半同步</li>
3222
+ <li>Async:异步</li>
3223
3223
  */
3224
3224
  SyncMode?: string;
3225
3225
  /**
3226
3226
  * 高可用备机最大延迟数据量。备节点延迟数据量小于等于该值,且备节点延迟时间小于等于MaxStandbyLag时,可以切换为主节点。
3227
- <li>单位:byte
3228
- <li>参数范围:[1073741824, 322122547200]
3227
+ <li>单位:byte</li>
3228
+ <li>参数范围:[1073741824, 322122547200]</li>
3229
3229
  */
3230
3230
  MaxStandbyLatency?: number;
3231
3231
  /**
3232
3232
  * 高可用备机最大延迟时间。备节点延迟时间小于等于该值,且备节点延迟数据量小于等于MaxStandbyLatency时,可以切换为主节点。
3233
- <li>单位:s
3234
- <li>参数范围:[5, 10]
3233
+ <li>单位:s</li>
3234
+ <li>参数范围:[5, 10]</li>
3235
3235
  */
3236
3236
  MaxStandbyLag?: number;
3237
3237
  /**