tencentcloud-sdk-nodejs-postgres 4.1.247 → 4.1.248

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.247",
3
+ "version": "4.1.248",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -496,9 +496,13 @@ export interface DescribeAvailableRecoveryTimeResponse {
496
496
  */
497
497
  export interface CreateBaseBackupRequest {
498
498
  /**
499
- * 实例ID。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取
499
+ * <p>实例ID。可通过<a href="https://cloud.tencent.com/document/api/409/16773">DescribeDBInstances</a>接口获取</p>
500
500
  */
501
501
  DBInstanceId: string;
502
+ /**
503
+ * <p>备份方式</p><p>枚举值:</p><ul><li>physical: 物理备份</li><li>logical: 逻辑备份</li><li>snapshot: 快照备份</li></ul>
504
+ */
505
+ BackupMethod?: string;
502
506
  }
503
507
  /**
504
508
  * ModifyDBInstanceReadOnlyGroup返回参数结构体
@@ -1318,7 +1322,7 @@ export interface ModifyDBInstancesProjectResponse {
1318
1322
  */
1319
1323
  export interface CreateBaseBackupResponse {
1320
1324
  /**
1321
- * 数据备份集ID
1325
+ * <p>数据备份集ID</p>
1322
1326
  */
1323
1327
  BaseBackupId?: string;
1324
1328
  /**
@@ -5122,37 +5126,41 @@ export interface DescribeDBErrlogsResponse {
5122
5126
  */
5123
5127
  export interface ModifyBackupPlanRequest {
5124
5128
  /**
5125
- * 实例ID。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取
5129
+ * <p>实例ID。可通过<a href="https://cloud.tencent.com/document/api/409/16773">DescribeDBInstances</a>接口获取</p>
5126
5130
  */
5127
5131
  DBInstanceId: string;
5128
5132
  /**
5129
- * 实例最早开始备份时间
5133
+ * <p>实例最早开始备份时间</p>
5130
5134
  */
5131
5135
  MinBackupStartTime?: string;
5132
5136
  /**
5133
- * 实例最晚开始备份时间
5137
+ * <p>实例最晚开始备份时间</p>
5134
5138
  */
5135
5139
  MaxBackupStartTime?: string;
5136
5140
  /**
5137
- * 实例备份保留时长,取值范围为7-1830,单位是天
5141
+ * <p>实例备份保留时长,取值范围为7-1830,单位是天</p>
5138
5142
  */
5139
5143
  BaseBackupRetentionPeriod?: number;
5140
5144
  /**
5141
- * 实例备份周期,若是星期维度,格式为小写星期英文单词,且至少设置两天备份;若是按月维度,格式为数字字符,如["1","2"]
5145
+ * <p>实例备份周期,若是星期维度,格式为小写星期英文单词,且至少设置两天备份;若是按月维度,格式为数字字符,如[&quot;1&quot;,&quot;2&quot;]。</p>
5142
5146
  */
5143
5147
  BackupPeriod?: Array<string>;
5144
5148
  /**
5145
- * 实例日志备份保留时长,取值范围为7-1830,单位是天
5149
+ * <p>实例日志备份保留时长,取值范围为7-1830,单位是天</p>
5146
5150
  */
5147
5151
  LogBackupRetentionPeriod?: number;
5148
5152
  /**
5149
- * 备份计划ID,用于指明要修改哪个备份计划,不传则是修改默认备份计划。
5153
+ * <p>备份计划ID,用于指明要修改哪个备份计划,不传则是修改默认备份计划。</p>
5150
5154
  */
5151
5155
  PlanId?: string;
5152
5156
  /**
5153
- * 要修改的备份计划名称。
5157
+ * <p>要修改的备份计划名称。</p>
5154
5158
  */
5155
5159
  PlanName?: string;
5160
+ /**
5161
+ * <p>备份方式</p><p>枚举值:</p><ul><li>physical: 物理备份</li><li>logical: 逻辑备份</li><li>snapshot: 快照备份</li></ul>
5162
+ */
5163
+ BackupMethod?: string;
5156
5164
  }
5157
5165
  /**
5158
5166
  * DeleteBaseBackup请求参数结构体