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
|
@@ -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
|
-
*
|
|
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
|
-
*
|
|
628
|
+
* <p>备份计划类型。系统默认创建的为default,自定义的为custom。</p>
|
|
625
629
|
*/
|
|
626
630
|
PlanType?: string;
|
|
627
631
|
/**
|
|
628
|
-
*
|
|
632
|
+
* <p>备份周期类型。当前支持week、month。</p>
|
|
629
633
|
*/
|
|
630
634
|
BackupPeriodType?: string;
|
|
631
635
|
}
|