tencentcloud-sdk-nodejs-redis 4.0.569 → 4.0.571
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 +508 -0
- package/SERVICE_CHANGELOG.md +602 -73
- package/package.json +1 -1
- package/products.md +190 -190
- package/src/services/redis/v20180412/redis_models.ts +35 -12
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +35 -12
|
@@ -2411,7 +2411,7 @@ export interface DescribeReplicationGroupRequest {
|
|
|
2411
2411
|
*/
|
|
2412
2412
|
GroupId?: string;
|
|
2413
2413
|
/**
|
|
2414
|
-
*
|
|
2414
|
+
* 模糊查询的关键字,可以设置为复制组ID或复制组名称进行模糊查询。
|
|
2415
2415
|
*/
|
|
2416
2416
|
SearchKey?: string;
|
|
2417
2417
|
}
|
|
@@ -3229,33 +3229,56 @@ export interface Groups {
|
|
|
3229
3229
|
*/
|
|
3230
3230
|
AppId: number;
|
|
3231
3231
|
/**
|
|
3232
|
-
|
|
3233
|
-
|
|
3232
|
+
* 地域ID 。
|
|
3233
|
+
- 1:广州
|
|
3234
|
+
- 4:上海
|
|
3235
|
+
- 5:中国香港
|
|
3236
|
+
- 6:多伦多
|
|
3237
|
+
- 7:上海金融
|
|
3238
|
+
- 8:北京
|
|
3239
|
+
- 9:新加坡
|
|
3240
|
+
- 11:深圳金融
|
|
3241
|
+
- 15:美西(硅谷)
|
|
3242
|
+
- 16:成都
|
|
3243
|
+
- 17:德国
|
|
3244
|
+
- 18:韩国
|
|
3245
|
+
- 19:重庆
|
|
3246
|
+
- 21:印度
|
|
3247
|
+
- 22:美东(弗吉尼亚)
|
|
3248
|
+
- 23:泰国
|
|
3249
|
+
- 24:俄罗斯
|
|
3250
|
+
- 25:日本
|
|
3251
|
+
*/
|
|
3234
3252
|
RegionId: number;
|
|
3235
3253
|
/**
|
|
3236
|
-
*
|
|
3254
|
+
* 复制组 ID。
|
|
3237
3255
|
*/
|
|
3238
3256
|
GroupId: string;
|
|
3239
3257
|
/**
|
|
3240
|
-
*
|
|
3258
|
+
* 复制组名称。
|
|
3241
3259
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3242
3260
|
*/
|
|
3243
3261
|
GroupName: string;
|
|
3244
3262
|
/**
|
|
3245
|
-
|
|
3246
|
-
|
|
3263
|
+
* 复制组状态。
|
|
3264
|
+
- 37:绑定复制组中。
|
|
3265
|
+
- 38:复制组重连中。
|
|
3266
|
+
- 51:解绑复制组中。
|
|
3267
|
+
- 52:复制组实例切主中。
|
|
3268
|
+
- 53:角色变更中。
|
|
3269
|
+
*/
|
|
3247
3270
|
Status: number;
|
|
3248
3271
|
/**
|
|
3249
|
-
*
|
|
3272
|
+
* 复制组数量。
|
|
3250
3273
|
*/
|
|
3251
3274
|
InstanceCount: number;
|
|
3252
3275
|
/**
|
|
3253
|
-
*
|
|
3276
|
+
* 复制组中的实例信息。
|
|
3254
3277
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3255
3278
|
*/
|
|
3256
3279
|
Instances: Array<Instances>;
|
|
3257
3280
|
/**
|
|
3258
|
-
*
|
|
3281
|
+
* 备注信息。
|
|
3259
3282
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3260
3283
|
*/
|
|
3261
3284
|
Remark: string;
|
|
@@ -3595,11 +3618,11 @@ export interface DescribeReplicationGroupResponse {
|
|
|
3595
3618
|
/**
|
|
3596
3619
|
* 复制组数量。
|
|
3597
3620
|
*/
|
|
3598
|
-
TotalCount
|
|
3621
|
+
TotalCount?: number;
|
|
3599
3622
|
/**
|
|
3600
3623
|
* 复制组信息。
|
|
3601
3624
|
*/
|
|
3602
|
-
Groups
|
|
3625
|
+
Groups?: Array<Groups>;
|
|
3603
3626
|
/**
|
|
3604
3627
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3605
3628
|
*/
|