tencentcloud-sdk-nodejs-redis 4.0.600 → 4.0.602

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.
@@ -63,7 +63,7 @@ export interface RedisBackupSet {
63
63
  BackupId: string;
64
64
  /**
65
65
  * 备份类型。
66
- - 1:凌晨系统发起的备份。
66
+ - 1:凌晨系统发起的自动备份。
67
67
  - 0:用户发起的手动备份。
68
68
  */
69
69
  BackupType: string;
@@ -2786,25 +2786,25 @@ export interface Outbound {
2786
2786
  */
2787
2787
  export interface DescribeAutoBackupConfigResponse {
2788
2788
  /**
2789
- * 备份类型。自动备份类型: 1 “定时回档”
2789
+ * 该参数因兼容性问题暂时保留,请忽略。
2790
2790
  */
2791
- AutoBackupType: number;
2791
+ AutoBackupType?: number;
2792
2792
  /**
2793
- * Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday。
2793
+ * 备份周期,默认为每天自动备份,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday。
2794
2794
  */
2795
- WeekDays: Array<string>;
2795
+ WeekDays?: Array<string>;
2796
2796
  /**
2797
- * 时间段。
2797
+ * 备份任务发起时间段。
2798
2798
  */
2799
- TimePeriod: string;
2799
+ TimePeriod?: string;
2800
2800
  /**
2801
- * 全量备份文件保存天数
2801
+ * 全量备份文件保存天数。默认为7天。如需保存更多天数,请[提交工单](https://console.cloud.tencent.com/workorder/category)申请。
2802
2802
  */
2803
- BackupStorageDays: number;
2803
+ BackupStorageDays?: number;
2804
2804
  /**
2805
- * tendis binlog备份文件保存天数
2805
+ * 该参数不再使用,请忽略。
2806
2806
  */
2807
- BinlogStorageDays: number;
2807
+ BinlogStorageDays?: number;
2808
2808
  /**
2809
2809
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2810
2810
  */
@@ -3673,7 +3673,7 @@ export interface DeleteParamTemplateRequest {
3673
3673
  */
3674
3674
  export interface DescribeAutoBackupConfigRequest {
3675
3675
  /**
3676
- * 实例ID
3676
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
3677
3677
  */
3678
3678
  InstanceId: string;
3679
3679
  }