tencentcloud-sdk-nodejs-redis 4.0.454 → 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.
@@ -371,17 +371,17 @@ TypeId为标准架构时,MemSize是实例总内存容量;TypeId为集群架
371
371
  */
372
372
  export interface CreateReplicationGroupRequest {
373
373
  /**
374
- * 实例ID
374
+ * 指定复制组中的主实例ID
375
375
  */
376
376
  InstanceId: string
377
377
 
378
378
  /**
379
- * 复制组名称
379
+ * 复制组名称。
380
380
  */
381
381
  GroupName?: string
382
382
 
383
383
  /**
384
- * 备注信息
384
+ * 备注信息。
385
385
  */
386
386
  Remark?: string
387
387
  }
@@ -411,6 +411,21 @@ export interface DescribeInstanceZoneInfoRequest {
411
411
  InstanceId?: string
412
412
  }
413
413
 
414
+ /**
415
+ * ModifyConnectionConfig返回参数结构体
416
+ */
417
+ export interface ModifyConnectionConfigResponse {
418
+ /**
419
+ * 任务ID
420
+ */
421
+ TaskId: number
422
+
423
+ /**
424
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
425
+ */
426
+ RequestId?: string
427
+ }
428
+
414
429
  /**
415
430
  * ModifyNetworkConfig返回参数结构体
416
431
  */
@@ -636,12 +651,12 @@ export interface RenewInstanceResponse {
636
651
  */
637
652
  export interface DescribeSlowLogResponse {
638
653
  /**
639
- * 慢查询总数
654
+ * 慢查询总数。
640
655
  */
641
656
  TotalCount: number
642
657
 
643
658
  /**
644
- * 慢查询详情
659
+ * 慢查询详情。
645
660
  */
646
661
  InstanceSlowlogDetail: Array<InstanceSlowlogDetail>
647
662
 
@@ -1533,7 +1548,7 @@ export interface ChangeMasterInstanceResponse {
1533
1548
  */
1534
1549
  export interface AddReplicationInstanceResponse {
1535
1550
  /**
1536
- * 异步流程ID
1551
+ * 异步流程ID
1537
1552
  */
1538
1553
  TaskId: number
1539
1554
 
@@ -2175,13 +2190,14 @@ export interface InstanceIntegerParam {
2175
2190
  */
2176
2191
  export interface UpgradeVersionToMultiAvailabilityZonesRequest {
2177
2192
  /**
2178
- * 实例ID
2193
+ * 实例ID
2179
2194
  */
2180
2195
  InstanceId: string
2181
2196
 
2182
2197
  /**
2183
- * 是否升级proxy和redis内核版本,升级后可支持就近接入
2184
- */
2198
+ * 升级多可用区之后是否支持就近访问功能。
2199
+ <ul><li>true:支持就近访问功能。升级过程,需同时升级 Proxy 版本和 Redis 内核小版本,涉及数据搬迁,可能会长达数小时。</li><li>false:无需支持就近访问功能。升级多可用区仅涉及管理元数据迁移,对服务没有影响,升级过程通常在3分钟内完成。</li></ul>
2200
+ */
2185
2201
  UpgradeProxyAndRedisServer?: boolean
2186
2202
  }
2187
2203
 
@@ -2356,6 +2372,16 @@ export interface DescribeInstanceMonitorTopNCmdTookResponse {
2356
2372
  RequestId?: string
2357
2373
  }
2358
2374
 
2375
+ /**
2376
+ * CloseSSL请求参数结构体
2377
+ */
2378
+ export interface CloseSSLRequest {
2379
+ /**
2380
+ * 实例ID。
2381
+ */
2382
+ InstanceId: string
2383
+ }
2384
+
2359
2385
  /**
2360
2386
  * DescribeInstanceMonitorBigKeySizeDist请求参数结构体
2361
2387
  */
@@ -3722,34 +3748,39 @@ export interface ModfiyInstancePasswordRequest {
3722
3748
  */
3723
3749
  export interface DescribeSlowLogRequest {
3724
3750
  /**
3725
- * 实例Id
3751
+ * 实例Id
3726
3752
  */
3727
3753
  InstanceId: string
3728
3754
 
3729
3755
  /**
3730
- * 开始时间
3756
+ * 开始时间。
3731
3757
  */
3732
3758
  BeginTime: string
3733
3759
 
3734
3760
  /**
3735
- * 结束时间
3761
+ * 结束时间。
3736
3762
  */
3737
3763
  EndTime: string
3738
3764
 
3739
3765
  /**
3740
- * 慢查询阈值(单位:微秒)
3766
+ * 慢查询平均执行时间阈值(单位:微秒)。
3741
3767
  */
3742
3768
  MinQueryTime?: number
3743
3769
 
3744
3770
  /**
3745
- * 页面大小
3771
+ * 每个页面展示的慢查询条数,默认值为20。
3746
3772
  */
3747
3773
  Limit?: number
3748
3774
 
3749
3775
  /**
3750
- * 偏移量,取Limit整数倍
3776
+ * 慢查询条数的偏移量,取Limit整数倍。
3751
3777
  */
3752
3778
  Offset?: number
3779
+
3780
+ /**
3781
+ * 节点所属角色。<ul><li>master:主节点。</li><li>slave:从节点。</li></ul>
3782
+ */
3783
+ Role?: string
3753
3784
  }
3754
3785
 
3755
3786
  /**
@@ -4234,11 +4265,11 @@ export interface InquiryPriceRenewInstanceRequest {
4234
4265
  }
4235
4266
 
4236
4267
  /**
4237
- * ModifyConnectionConfig返回参数结构体
4268
+ * CloseSSL返回参数结构体
4238
4269
  */
4239
- export interface ModifyConnectionConfigResponse {
4270
+ export interface CloseSSLResponse {
4240
4271
  /**
4241
- * 任务ID
4272
+ * 任务ID
4242
4273
  */
4243
4274
  TaskId: number
4244
4275
 
@@ -4268,7 +4299,7 @@ export interface ModifyMaintenanceWindowResponse {
4268
4299
  */
4269
4300
  export interface CreateReplicationGroupResponse {
4270
4301
  /**
4271
- * 异步流程ID
4302
+ * 异步流程ID
4272
4303
  */
4273
4304
  TaskId: number
4274
4305
 
@@ -4434,6 +4465,16 @@ export interface ModifyInstanceParamsRequest {
4434
4465
  InstanceParams: Array<InstanceParam>
4435
4466
  }
4436
4467
 
4468
+ /**
4469
+ * OpenSSL请求参数结构体
4470
+ */
4471
+ export interface OpenSSLRequest {
4472
+ /**
4473
+ * 实例ID。
4474
+ */
4475
+ InstanceId: string
4476
+ }
4477
+
4437
4478
  /**
4438
4479
  * 备份文件下载信息
4439
4480
  */
@@ -4519,17 +4560,17 @@ export interface DescribeMaintenanceWindowRequest {
4519
4560
  */
4520
4561
  export interface AddReplicationInstanceRequest {
4521
4562
  /**
4522
- * 复制组ID
4563
+ * 复制组ID
4523
4564
  */
4524
4565
  GroupId: string
4525
4566
 
4526
4567
  /**
4527
- * 实例ID
4568
+ * 实例ID
4528
4569
  */
4529
4570
  InstanceId: string
4530
4571
 
4531
4572
  /**
4532
- * 实例角色,rw可读写,r只读
4573
+ * 给复制组添加的实例分配角色。<ul><li>rw:可读写。</li><li>r:只读。</li></ul>
4533
4574
  */
4534
4575
  InstanceRole: string
4535
4576
  }
@@ -5132,6 +5173,21 @@ export interface InstanceClusterShard {
5132
5173
  Connected: number
5133
5174
  }
5134
5175
 
5176
+ /**
5177
+ * OpenSSL返回参数结构体
5178
+ */
5179
+ export interface OpenSSLResponse {
5180
+ /**
5181
+ * 任务ID。
5182
+ */
5183
+ TaskId: number
5184
+
5185
+ /**
5186
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5187
+ */
5188
+ RequestId?: string
5189
+ }
5190
+
5135
5191
  /**
5136
5192
  * Tendis慢查询详情
5137
5193
  */