tencentcloud-sdk-nodejs-postgres 4.1.248 → 4.1.257

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.248",
3
+ "version": "4.1.257",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -585,47 +585,51 @@ export interface DescribeDBInstanceSecurityGroupsResponse {
585
585
  */
586
586
  export interface BackupPlan {
587
587
  /**
588
- * 备份周期
588
+ * <p>备份周期</p>
589
589
  */
590
590
  BackupPeriod?: string;
591
591
  /**
592
- * 数据备份保留时长。单位:天
592
+ * <p>数据备份保留时长。单位:天</p>
593
593
  */
594
594
  BaseBackupRetentionPeriod?: number;
595
595
  /**
596
- * 开始备份的最早时间
596
+ * <p>开始备份的最早时间</p>
597
597
  */
598
598
  MinBackupStartTime?: string;
599
599
  /**
600
- * 开始备份的最晚时间
600
+ * <p>开始备份的最晚时间</p>
601
601
  */
602
602
  MaxBackupStartTime?: string;
603
603
  /**
604
- * 备份计划ID
604
+ * <p>备份类型</p><p>枚举值:</p><ul><li>physical: 物理备份</li><li>logical: 逻辑备份</li><li>snapshot: 快照备份</li></ul>
605
+ */
606
+ BackupMethod?: string;
607
+ /**
608
+ * <p>备份计划ID</p>
605
609
  */
606
610
  PlanId?: string;
607
611
  /**
608
- * 备份计划自定义名称。
612
+ * <p>备份计划自定义名称。</p>
609
613
  */
610
614
  PlanName?: string;
611
615
  /**
612
- * 日志备份保留时长。单位:天
616
+ * <p>日志备份保留时长。单位:天</p>
613
617
  */
614
618
  LogBackupRetentionPeriod?: number;
615
619
  /**
616
- * 创建时间。
620
+ * <p>创建时间。</p>
617
621
  */
618
622
  CreatedTime?: string;
619
623
  /**
620
- * 最近一次的修改时间。
624
+ * <p>最近一次的修改时间。</p>
621
625
  */
622
626
  UpdatedTime?: string;
623
627
  /**
624
- * 备份计划类型。系统默认创建的为default,自定义的为custom
628
+ * <p>备份计划类型。系统默认创建的为default,自定义的为custom。</p>
625
629
  */
626
630
  PlanType?: string;
627
631
  /**
628
- * 备份周期类型。当前支持week、month
632
+ * <p>备份周期类型。当前支持week、month。</p>
629
633
  */
630
634
  BackupPeriodType?: string;
631
635
  }