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.
- package/CHANGELOG.md +317 -0
- package/SERVICE_CHANGELOG.md +363 -57
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/services/redis/v20180412/redis_client.ts +499 -475
- package/src/services/redis/v20180412/redis_models.ts +78 -22
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +171 -163
- package/tencentcloud/services/redis/v20180412/redis_client.js +255 -243
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +71 -22
|
@@ -296,15 +296,15 @@ export interface CreateInstancesRequest {
|
|
|
296
296
|
*/
|
|
297
297
|
export interface CreateReplicationGroupRequest {
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
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
|
*/
|
|
@@ -520,11 +533,11 @@ export interface RenewInstanceResponse {
|
|
|
520
533
|
*/
|
|
521
534
|
export interface DescribeSlowLogResponse {
|
|
522
535
|
/**
|
|
523
|
-
*
|
|
536
|
+
* 慢查询总数。
|
|
524
537
|
*/
|
|
525
538
|
TotalCount: number;
|
|
526
539
|
/**
|
|
527
|
-
*
|
|
540
|
+
* 慢查询详情。
|
|
528
541
|
*/
|
|
529
542
|
InstanceSlowlogDetail: Array<InstanceSlowlogDetail>;
|
|
530
543
|
/**
|
|
@@ -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
|
-
|
|
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
|
*/
|
|
@@ -3128,29 +3151,33 @@ export interface ModfiyInstancePasswordRequest {
|
|
|
3128
3151
|
*/
|
|
3129
3152
|
export interface DescribeSlowLogRequest {
|
|
3130
3153
|
/**
|
|
3131
|
-
* 实例Id
|
|
3154
|
+
* 实例Id。
|
|
3132
3155
|
*/
|
|
3133
3156
|
InstanceId: string;
|
|
3134
3157
|
/**
|
|
3135
|
-
*
|
|
3158
|
+
* 开始时间。
|
|
3136
3159
|
*/
|
|
3137
3160
|
BeginTime: string;
|
|
3138
3161
|
/**
|
|
3139
|
-
*
|
|
3162
|
+
* 结束时间。
|
|
3140
3163
|
*/
|
|
3141
3164
|
EndTime: string;
|
|
3142
3165
|
/**
|
|
3143
|
-
*
|
|
3166
|
+
* 慢查询平均执行时间阈值(单位:微秒)。
|
|
3144
3167
|
*/
|
|
3145
3168
|
MinQueryTime?: number;
|
|
3146
3169
|
/**
|
|
3147
|
-
*
|
|
3170
|
+
* 每个页面展示的慢查询条数,默认值为20。
|
|
3148
3171
|
*/
|
|
3149
3172
|
Limit?: number;
|
|
3150
3173
|
/**
|
|
3151
|
-
*
|
|
3174
|
+
* 慢查询条数的偏移量,取Limit整数倍。
|
|
3152
3175
|
*/
|
|
3153
3176
|
Offset?: number;
|
|
3177
|
+
/**
|
|
3178
|
+
* 节点所属角色。<ul><li>master:主节点。</li><li>slave:从节点。</li></ul>
|
|
3179
|
+
*/
|
|
3180
|
+
Role?: string;
|
|
3154
3181
|
}
|
|
3155
3182
|
/**
|
|
3156
3183
|
* DeleteParamTemplate请求参数结构体
|
|
@@ -3556,11 +3583,11 @@ export interface InquiryPriceRenewInstanceRequest {
|
|
|
3556
3583
|
InstanceId: string;
|
|
3557
3584
|
}
|
|
3558
3585
|
/**
|
|
3559
|
-
*
|
|
3586
|
+
* CloseSSL返回参数结构体
|
|
3560
3587
|
*/
|
|
3561
|
-
export interface
|
|
3588
|
+
export interface CloseSSLResponse {
|
|
3562
3589
|
/**
|
|
3563
|
-
* 任务ID
|
|
3590
|
+
* 任务ID。
|
|
3564
3591
|
*/
|
|
3565
3592
|
TaskId: number;
|
|
3566
3593
|
/**
|
|
@@ -3586,7 +3613,7 @@ export interface ModifyMaintenanceWindowResponse {
|
|
|
3586
3613
|
*/
|
|
3587
3614
|
export interface CreateReplicationGroupResponse {
|
|
3588
3615
|
/**
|
|
3589
|
-
* 异步流程ID
|
|
3616
|
+
* 异步流程ID。
|
|
3590
3617
|
*/
|
|
3591
3618
|
TaskId: number;
|
|
3592
3619
|
/**
|
|
@@ -3726,6 +3753,15 @@ export interface ModifyInstanceParamsRequest {
|
|
|
3726
3753
|
*/
|
|
3727
3754
|
InstanceParams: Array<InstanceParam>;
|
|
3728
3755
|
}
|
|
3756
|
+
/**
|
|
3757
|
+
* OpenSSL请求参数结构体
|
|
3758
|
+
*/
|
|
3759
|
+
export interface OpenSSLRequest {
|
|
3760
|
+
/**
|
|
3761
|
+
* 实例ID。
|
|
3762
|
+
*/
|
|
3763
|
+
InstanceId: string;
|
|
3764
|
+
}
|
|
3729
3765
|
/**
|
|
3730
3766
|
* 备份文件下载信息
|
|
3731
3767
|
*/
|
|
@@ -3799,15 +3835,15 @@ export interface DescribeMaintenanceWindowRequest {
|
|
|
3799
3835
|
*/
|
|
3800
3836
|
export interface AddReplicationInstanceRequest {
|
|
3801
3837
|
/**
|
|
3802
|
-
* 复制组ID
|
|
3838
|
+
* 复制组ID。
|
|
3803
3839
|
*/
|
|
3804
3840
|
GroupId: string;
|
|
3805
3841
|
/**
|
|
3806
|
-
* 实例ID
|
|
3842
|
+
* 实例ID。
|
|
3807
3843
|
*/
|
|
3808
3844
|
InstanceId: string;
|
|
3809
3845
|
/**
|
|
3810
|
-
*
|
|
3846
|
+
* 给复制组添加的实例分配角色。<ul><li>rw:可读写。</li><li>r:只读。</li></ul>
|
|
3811
3847
|
*/
|
|
3812
3848
|
InstanceRole: string;
|
|
3813
3849
|
}
|
|
@@ -4312,6 +4348,19 @@ export interface InstanceClusterShard {
|
|
|
4312
4348
|
*/
|
|
4313
4349
|
Connected: number;
|
|
4314
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
|
+
}
|
|
4315
4364
|
/**
|
|
4316
4365
|
* Tendis慢查询详情
|
|
4317
4366
|
*/
|