tencentcloud-sdk-nodejs-redis 4.0.275 → 4.0.279
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 +665 -0
- package/SERVICE_CHANGELOG.md +674 -217
- package/package.json +1 -1
- package/products.md +42 -42
- package/src/services/redis/v20180412/redis_client.ts +42 -6
- package/src/services/redis/v20180412/redis_models.ts +105 -0
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +15 -3
- package/tencentcloud/services/redis/v20180412/redis_client.js +21 -3
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +90 -0
|
@@ -280,6 +280,23 @@ export interface CreateInstancesRequest {
|
|
|
280
280
|
*/
|
|
281
281
|
TemplateId?: string;
|
|
282
282
|
}
|
|
283
|
+
/**
|
|
284
|
+
* CreateReplicationGroup请求参数结构体
|
|
285
|
+
*/
|
|
286
|
+
export interface CreateReplicationGroupRequest {
|
|
287
|
+
/**
|
|
288
|
+
* 实例ID
|
|
289
|
+
*/
|
|
290
|
+
InstanceId: string;
|
|
291
|
+
/**
|
|
292
|
+
* 复制组名称
|
|
293
|
+
*/
|
|
294
|
+
GroupName?: string;
|
|
295
|
+
/**
|
|
296
|
+
* 备注信息
|
|
297
|
+
*/
|
|
298
|
+
Remark?: string;
|
|
299
|
+
}
|
|
283
300
|
/**
|
|
284
301
|
* DescribeInstanceZoneInfo请求参数结构体
|
|
285
302
|
*/
|
|
@@ -1145,6 +1162,19 @@ export interface DescribeInstanceDTSInfoResponse {
|
|
|
1145
1162
|
*/
|
|
1146
1163
|
RequestId?: string;
|
|
1147
1164
|
}
|
|
1165
|
+
/**
|
|
1166
|
+
* AddReplicationInstance返回参数结构体
|
|
1167
|
+
*/
|
|
1168
|
+
export interface AddReplicationInstanceResponse {
|
|
1169
|
+
/**
|
|
1170
|
+
* 异步流程ID
|
|
1171
|
+
*/
|
|
1172
|
+
TaskId: number;
|
|
1173
|
+
/**
|
|
1174
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1175
|
+
*/
|
|
1176
|
+
RequestId?: string;
|
|
1177
|
+
}
|
|
1148
1178
|
/**
|
|
1149
1179
|
* DestroyPostpaidInstance返回参数结构体
|
|
1150
1180
|
*/
|
|
@@ -1691,6 +1721,23 @@ export interface DescribeInstanceMonitorTookDistRequest {
|
|
|
1691
1721
|
*/
|
|
1692
1722
|
SpanType: number;
|
|
1693
1723
|
}
|
|
1724
|
+
/**
|
|
1725
|
+
* DeleteReplicationInstance请求参数结构体
|
|
1726
|
+
*/
|
|
1727
|
+
export interface DeleteReplicationInstanceRequest {
|
|
1728
|
+
/**
|
|
1729
|
+
* 复制组ID
|
|
1730
|
+
*/
|
|
1731
|
+
GroupId: string;
|
|
1732
|
+
/**
|
|
1733
|
+
* 实例ID
|
|
1734
|
+
*/
|
|
1735
|
+
InstanceId: string;
|
|
1736
|
+
/**
|
|
1737
|
+
* 数据同步类型,true:需要数据强同步,false:不需要强同步,仅限删除主实例
|
|
1738
|
+
*/
|
|
1739
|
+
SyncType: boolean;
|
|
1740
|
+
}
|
|
1694
1741
|
/**
|
|
1695
1742
|
* KillMasterGroup请求参数结构体
|
|
1696
1743
|
*/
|
|
@@ -2632,6 +2679,19 @@ export interface DescribeInstanceMonitorBigKeyTypeDistResponse {
|
|
|
2632
2679
|
*/
|
|
2633
2680
|
RequestId?: string;
|
|
2634
2681
|
}
|
|
2682
|
+
/**
|
|
2683
|
+
* DeleteReplicationInstance返回参数结构体
|
|
2684
|
+
*/
|
|
2685
|
+
export interface DeleteReplicationInstanceResponse {
|
|
2686
|
+
/**
|
|
2687
|
+
* 异步任务ID
|
|
2688
|
+
*/
|
|
2689
|
+
TaskId: number;
|
|
2690
|
+
/**
|
|
2691
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2692
|
+
*/
|
|
2693
|
+
RequestId?: string;
|
|
2694
|
+
}
|
|
2635
2695
|
/**
|
|
2636
2696
|
* CleanUpInstance请求参数结构体
|
|
2637
2697
|
*/
|
|
@@ -3175,6 +3235,19 @@ export interface ModifyMaintenanceWindowResponse {
|
|
|
3175
3235
|
*/
|
|
3176
3236
|
RequestId?: string;
|
|
3177
3237
|
}
|
|
3238
|
+
/**
|
|
3239
|
+
* CreateReplicationGroup返回参数结构体
|
|
3240
|
+
*/
|
|
3241
|
+
export interface CreateReplicationGroupResponse {
|
|
3242
|
+
/**
|
|
3243
|
+
* 异步流程ID
|
|
3244
|
+
*/
|
|
3245
|
+
TaskId: number;
|
|
3246
|
+
/**
|
|
3247
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3248
|
+
*/
|
|
3249
|
+
RequestId?: string;
|
|
3250
|
+
}
|
|
3178
3251
|
/**
|
|
3179
3252
|
* DescribeInstanceMonitorBigKeyTypeDist请求参数结构体
|
|
3180
3253
|
*/
|
|
@@ -3358,6 +3431,23 @@ export interface DescribeMaintenanceWindowRequest {
|
|
|
3358
3431
|
*/
|
|
3359
3432
|
InstanceId: string;
|
|
3360
3433
|
}
|
|
3434
|
+
/**
|
|
3435
|
+
* AddReplicationInstance请求参数结构体
|
|
3436
|
+
*/
|
|
3437
|
+
export interface AddReplicationInstanceRequest {
|
|
3438
|
+
/**
|
|
3439
|
+
* 复制组ID
|
|
3440
|
+
*/
|
|
3441
|
+
GroupId: string;
|
|
3442
|
+
/**
|
|
3443
|
+
* 实例ID
|
|
3444
|
+
*/
|
|
3445
|
+
InstanceId: string;
|
|
3446
|
+
/**
|
|
3447
|
+
* 实例角色,rw可读写,r只读
|
|
3448
|
+
*/
|
|
3449
|
+
InstanceRole: string;
|
|
3450
|
+
}
|
|
3361
3451
|
/**
|
|
3362
3452
|
* 实例节点类型
|
|
3363
3453
|
*/
|