tencentcloud-sdk-nodejs-redis 4.0.455 → 4.0.456

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.
@@ -296,15 +296,15 @@ export interface CreateInstancesRequest {
296
296
  */
297
297
  export interface CreateReplicationGroupRequest {
298
298
  /**
299
- * 实例ID
299
+ * 指定复制组中的主实例ID
300
300
  */
301
301
  InstanceId: string;
302
302
  /**
303
- * 复制组名称
303
+ * 复制组名称。
304
304
  */
305
305
  GroupName?: string;
306
306
  /**
307
- * 备注信息
307
+ * 备注信息。
308
308
  */
309
309
  Remark?: string;
310
310
  }
@@ -330,6 +330,19 @@ export interface DescribeInstanceZoneInfoRequest {
330
330
  */
331
331
  InstanceId?: string;
332
332
  }
333
+ /**
334
+ * ModifyConnectionConfig返回参数结构体
335
+ */
336
+ export interface ModifyConnectionConfigResponse {
337
+ /**
338
+ * 任务ID
339
+ */
340
+ TaskId: number;
341
+ /**
342
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
343
+ */
344
+ RequestId?: string;
345
+ }
333
346
  /**
334
347
  * ModifyNetworkConfig返回参数结构体
335
348
  */
@@ -1279,7 +1292,7 @@ export interface ChangeMasterInstanceResponse {
1279
1292
  */
1280
1293
  export interface AddReplicationInstanceResponse {
1281
1294
  /**
1282
- * 异步流程ID
1295
+ * 异步流程ID
1283
1296
  */
1284
1297
  TaskId: number;
1285
1298
  /**
@@ -1825,12 +1838,13 @@ export interface InstanceIntegerParam {
1825
1838
  */
1826
1839
  export interface UpgradeVersionToMultiAvailabilityZonesRequest {
1827
1840
  /**
1828
- * 实例ID
1841
+ * 实例ID
1829
1842
  */
1830
1843
  InstanceId: string;
1831
1844
  /**
1832
- * 是否升级proxy和redis内核版本,升级后可支持就近接入
1833
- */
1845
+ * 升级多可用区之后是否支持就近访问功能。
1846
+ <ul><li>true:支持就近访问功能。升级过程,需同时升级 Proxy 版本和 Redis 内核小版本,涉及数据搬迁,可能会长达数小时。</li><li>false:无需支持就近访问功能。升级多可用区仅涉及管理元数据迁移,对服务没有影响,升级过程通常在3分钟内完成。</li></ul>
1847
+ */
1834
1848
  UpgradeProxyAndRedisServer?: boolean;
1835
1849
  }
1836
1850
  /**
@@ -1978,6 +1992,15 @@ export interface DescribeInstanceMonitorTopNCmdTookResponse {
1978
1992
  */
1979
1993
  RequestId?: string;
1980
1994
  }
1995
+ /**
1996
+ * CloseSSL请求参数结构体
1997
+ */
1998
+ export interface CloseSSLRequest {
1999
+ /**
2000
+ * 实例ID。
2001
+ */
2002
+ InstanceId: string;
2003
+ }
1981
2004
  /**
1982
2005
  * DescribeInstanceMonitorBigKeySizeDist请求参数结构体
1983
2006
  */
@@ -3560,11 +3583,11 @@ export interface InquiryPriceRenewInstanceRequest {
3560
3583
  InstanceId: string;
3561
3584
  }
3562
3585
  /**
3563
- * ModifyConnectionConfig返回参数结构体
3586
+ * CloseSSL返回参数结构体
3564
3587
  */
3565
- export interface ModifyConnectionConfigResponse {
3588
+ export interface CloseSSLResponse {
3566
3589
  /**
3567
- * 任务ID
3590
+ * 任务ID
3568
3591
  */
3569
3592
  TaskId: number;
3570
3593
  /**
@@ -3590,7 +3613,7 @@ export interface ModifyMaintenanceWindowResponse {
3590
3613
  */
3591
3614
  export interface CreateReplicationGroupResponse {
3592
3615
  /**
3593
- * 异步流程ID
3616
+ * 异步流程ID
3594
3617
  */
3595
3618
  TaskId: number;
3596
3619
  /**
@@ -3730,6 +3753,15 @@ export interface ModifyInstanceParamsRequest {
3730
3753
  */
3731
3754
  InstanceParams: Array<InstanceParam>;
3732
3755
  }
3756
+ /**
3757
+ * OpenSSL请求参数结构体
3758
+ */
3759
+ export interface OpenSSLRequest {
3760
+ /**
3761
+ * 实例ID。
3762
+ */
3763
+ InstanceId: string;
3764
+ }
3733
3765
  /**
3734
3766
  * 备份文件下载信息
3735
3767
  */
@@ -3803,15 +3835,15 @@ export interface DescribeMaintenanceWindowRequest {
3803
3835
  */
3804
3836
  export interface AddReplicationInstanceRequest {
3805
3837
  /**
3806
- * 复制组ID
3838
+ * 复制组ID
3807
3839
  */
3808
3840
  GroupId: string;
3809
3841
  /**
3810
- * 实例ID
3842
+ * 实例ID
3811
3843
  */
3812
3844
  InstanceId: string;
3813
3845
  /**
3814
- * 实例角色,rw可读写,r只读
3846
+ * 给复制组添加的实例分配角色。<ul><li>rw:可读写。</li><li>r:只读。</li></ul>
3815
3847
  */
3816
3848
  InstanceRole: string;
3817
3849
  }
@@ -4316,6 +4348,19 @@ export interface InstanceClusterShard {
4316
4348
  */
4317
4349
  Connected: number;
4318
4350
  }
4351
+ /**
4352
+ * OpenSSL返回参数结构体
4353
+ */
4354
+ export interface OpenSSLResponse {
4355
+ /**
4356
+ * 任务ID。
4357
+ */
4358
+ TaskId: number;
4359
+ /**
4360
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4361
+ */
4362
+ RequestId?: string;
4363
+ }
4319
4364
  /**
4320
4365
  * Tendis慢查询详情
4321
4366
  */