tencentcloud-sdk-nodejs-redis 4.0.577 → 4.0.578

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.
@@ -963,6 +963,31 @@ export interface BigKeyInfo {
963
963
  */
964
964
  Updatetime: number;
965
965
  }
966
+ /**
967
+ * DescribeBandwidthRange返回参数结构体
968
+ */
969
+ export interface DescribeBandwidthRangeResponse {
970
+ /**
971
+ * 标准带宽。指购买实例时,系统为每个节点分配的带宽。
972
+ */
973
+ BaseBandwidth: number;
974
+ /**
975
+ * 指实例的附加带宽。标准带宽不满足需求的情况下,用户可自行增加的带宽。<ul><li>开启副本只读时,实例总带宽 = 附加带宽 * 分片数 + 标准带宽 * 分片数 * Max ([只读副本数量, 1]),标准架构的分片数 = 1。</li><li>没有开启副本只读时,实例总带宽 = 附加带宽 * 分片数 + 标准带宽 * 分片数,标准架构的分片数 = 1。</li></ul>
976
+ */
977
+ AddBandwidth: number;
978
+ /**
979
+ * 附加带宽设置下限。
980
+ */
981
+ MinAddBandwidth: number;
982
+ /**
983
+ * 附加带宽设置上限。
984
+ */
985
+ MaxAddBandwidth: number;
986
+ /**
987
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
988
+ */
989
+ RequestId?: string;
990
+ }
966
991
  /**
967
992
  * DescribeParamTemplates请求参数结构体
968
993
  */
@@ -1010,6 +1035,23 @@ export interface UpgradeVersionToMultiAvailabilityZonesResponse {
1010
1035
  */
1011
1036
  RequestId?: string;
1012
1037
  }
1038
+ /**
1039
+ * DescribeInstanceBackups返回参数结构体
1040
+ */
1041
+ export interface DescribeInstanceBackupsResponse {
1042
+ /**
1043
+ * 备份总数。
1044
+ */
1045
+ TotalCount?: number;
1046
+ /**
1047
+ * 实例的备份数组。
1048
+ */
1049
+ BackupSet?: Array<RedisBackupSet>;
1050
+ /**
1051
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1052
+ */
1053
+ RequestId?: string;
1054
+ }
1013
1055
  /**
1014
1056
  * DescribeInstanceParamRecords返回参数结构体
1015
1057
  */
@@ -1914,21 +1956,13 @@ export interface DescribeInstanceMonitorTookDistResponse {
1914
1956
  RequestId?: string;
1915
1957
  }
1916
1958
  /**
1917
- * DescribeInstanceBackups返回参数结构体
1959
+ * DescribeBandwidthRange请求参数结构体
1918
1960
  */
1919
- export interface DescribeInstanceBackupsResponse {
1920
- /**
1921
- * 备份总数。
1922
- */
1923
- TotalCount?: number;
1924
- /**
1925
- * 实例的备份数组。
1926
- */
1927
- BackupSet?: Array<RedisBackupSet>;
1961
+ export interface DescribeBandwidthRangeRequest {
1928
1962
  /**
1929
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
1963
+ * 实例 ID。
1930
1964
  */
1931
- RequestId?: string;
1965
+ InstanceId: string;
1932
1966
  }
1933
1967
  /**
1934
1968
  * 实例整型参数描述
@@ -2071,11 +2105,11 @@ export interface CloneInstancesResponse {
2071
2105
  /**
2072
2106
  * 请求任务 ID。
2073
2107
  */
2074
- DealId: string;
2108
+ DealId?: string;
2075
2109
  /**
2076
2110
  * 克隆实例的 ID。
2077
2111
  */
2078
- InstanceIds: Array<string>;
2112
+ InstanceIds?: Array<string>;
2079
2113
  /**
2080
2114
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2081
2115
  */
@@ -2305,12 +2339,14 @@ export interface DescribeTaskInfoRequest {
2305
2339
  */
2306
2340
  export interface CloneInstancesRequest {
2307
2341
  /**
2308
- * 当前实例ID。
2342
+ * 指定待克隆的源实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
2309
2343
  */
2310
2344
  InstanceId: string;
2311
2345
  /**
2312
- * 单次克隆实例的数量。包年包月每次购买最大数量为100。按量计费每次购买最大数量为30,每个地域购买数量取值范围为[1,100]。
2313
- */
2346
+ * 单次克隆实例的数量。
2347
+ - 包年包月每次购买最大数量为100。
2348
+ - 按量计费每次购买最大数量为30。
2349
+ */
2314
2350
  GoodsNum: number;
2315
2351
  /**
2316
2352
  * 克隆实例所属的可用区ID。当前所支持的可用区 ID,请参见[地域和可用区](https://cloud.tencent.com/document/product/239/4106) 。
@@ -2337,11 +2373,11 @@ export interface CloneInstancesRequest {
2337
2373
  */
2338
2374
  NoAuth?: boolean;
2339
2375
  /**
2340
- * 私有网络ID。如果未配置该参数,默认选择基础网络。
2376
+ * 配置克隆实例的私有网络ID。如果未配置该参数,默认选择基础网络。
2341
2377
  */
2342
2378
  VpcId?: string;
2343
2379
  /**
2344
- * 私有网络所属子网。基础网络时该参数无需配置。
2380
+ * 配置克隆实例所属私有网络的子网。基础网络时该参数无需配置。
2345
2381
  */
2346
2382
  SubnetId?: string;
2347
2383
  /**
@@ -2353,7 +2389,7 @@ export interface CloneInstancesRequest {
2353
2389
  */
2354
2390
  Password?: string;
2355
2391
  /**
2356
- * 自动续费标识。<ul><li>0:默认状态(手动续费)。</li><li>1:自动续费。</li><li>2:不自动续费,到期自动隔离。</li></ul>
2392
+ * 自动续费标识。<ul><li>0:默认状态,手动续费。</li><li>1:自动续费。</li><li>2:不自动续费,到期自动隔离。</li></ul>
2357
2393
  */
2358
2394
  AutoRenew?: number;
2359
2395
  /**
@@ -2365,7 +2401,7 @@ export interface CloneInstancesRequest {
2365
2401
  */
2366
2402
  NodeSet?: Array<RedisNodeInfo>;
2367
2403
  /**
2368
- * 项目 ID。登录控制台,可在右上角的<b>账号中心</b> > <b>项目管理</b>中查找项目ID。
2404
+ * 项目 ID。登录[Redis 控制台](https://console.cloud.tencent.com/redis#/),可在右上角的<b>账号中心</b> > <b>项目管理</b>中查找项目ID。
2369
2405
  */
2370
2406
  ProjectId?: number;
2371
2407
  /**
@@ -2373,11 +2409,13 @@ export interface CloneInstancesRequest {
2373
2409
  */
2374
2410
  ResourceTags?: Array<ResourceTag>;
2375
2411
  /**
2376
- * 克隆实例需要应用的参数模板ID,请登录 Redis 控制台,在<b>参数模板</b>页面获取。若不配置该参数,则应用默认的参数模板。
2377
- */
2412
+ * 指定克隆实例相关的参数模板 ID
2413
+ - 若不配置该参数,则系统会依据所选择的兼容版本及架构,自动适配对应的默认模板。
2414
+ - 请通过[DescribeParamTemplates](https://cloud.tencent.com/document/product/239/58750)接口,查询实例的参数模板列表,获取模板 ID 编号。
2415
+ */
2378
2416
  TemplateId?: string;
2379
2417
  /**
2380
- * 指定克隆实例的告警策略 ID。请登录控制台,在<b>云监控</b> > <b>告警配置</b> > <b>告警策略</b>页面获取策略 ID 信息。
2418
+ * 指定克隆实例的告警策略 ID。请登录[腾讯云可观测平台控制台](https://console.cloud.tencent.com/monitor/alarm2/policy),在 <b>告警管理</b> > <b>策略管理</b>页面获取策略 ID 信息。
2381
2419
  */
2382
2420
  AlarmPolicyList?: Array<string>;
2383
2421
  }
@@ -2795,6 +2833,23 @@ export interface CreateInstanceAccountRequest {
2795
2833
  */
2796
2834
  Remark?: string;
2797
2835
  }
2836
+ /**
2837
+ * RemoveReplicationInstance请求参数结构体
2838
+ */
2839
+ export interface RemoveReplicationInstanceRequest {
2840
+ /**
2841
+ * 复制组ID
2842
+ */
2843
+ GroupId: string;
2844
+ /**
2845
+ * 实例ID
2846
+ */
2847
+ InstanceId: string;
2848
+ /**
2849
+ * 数据同步类型,true:需要数据强同步,false:不需要强同步,仅限删除主实例
2850
+ */
2851
+ SyncType: boolean;
2852
+ }
2798
2853
  /**
2799
2854
  * EnableReplicaReadonly返回参数结构体
2800
2855
  */
@@ -3414,7 +3469,7 @@ export interface SourceCommand {
3414
3469
  */
3415
3470
  export interface ModfiyInstancePasswordRequest {
3416
3471
  /**
3417
- * 实例 ID。
3472
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
3418
3473
  */
3419
3474
  InstanceId: string;
3420
3475
  /**
@@ -3719,7 +3774,7 @@ export interface InstanceSet {
3719
3774
  */
3720
3775
  Size: number;
3721
3776
  /**
3722
- * 该字段已废弃。可使用云监控 API 接口 [GetMonitorData](https://cloud.tencent.com/document/product/248/31014) 获取实例已使用的内容容量。
3777
+ * 该字段已废弃。请使用腾讯云可观测平台API 接口 [GetMonitorData](https://cloud.tencent.com/document/product/248/31014) 获取实例已使用的内存容量。
3723
3778
  */
3724
3779
  SizeUsed: number;
3725
3780
  /**
@@ -4633,6 +4688,19 @@ export interface DescribeInstanceBackupsRequest {
4633
4688
  */
4634
4689
  InstanceName?: string;
4635
4690
  }
4691
+ /**
4692
+ * RemoveReplicationInstance返回参数结构体
4693
+ */
4694
+ export interface RemoveReplicationInstanceResponse {
4695
+ /**
4696
+ * 异步任务ID
4697
+ */
4698
+ TaskId: number;
4699
+ /**
4700
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4701
+ */
4702
+ RequestId?: string;
4703
+ }
4636
4704
  /**
4637
4705
  * 安全组详情
4638
4706
  */