tencentcloud-sdk-nodejs-tdmq 4.0.653 → 4.0.654
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 +305 -0
- package/SERVICE_CHANGELOG.md +448 -88
- package/package.json +1 -1
- package/products.md +19 -19
- package/src/services/tdmq/v20200217/tdmq_client.ts +24 -11
- package/src/services/tdmq/v20200217/tdmq_models.ts +102 -36
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +7 -3
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +9 -3
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +99 -36
|
@@ -1151,6 +1151,19 @@ export interface RocketMQGroup {
|
|
|
1151
1151
|
*/
|
|
1152
1152
|
RetryMaxTimes?: number;
|
|
1153
1153
|
}
|
|
1154
|
+
/**
|
|
1155
|
+
* vpc信息(由UniqVpcId和UniqSubnetId组成)
|
|
1156
|
+
*/
|
|
1157
|
+
export interface VpcInfo {
|
|
1158
|
+
/**
|
|
1159
|
+
* vpc信息
|
|
1160
|
+
*/
|
|
1161
|
+
VpcId: string;
|
|
1162
|
+
/**
|
|
1163
|
+
* 子网信息
|
|
1164
|
+
*/
|
|
1165
|
+
SubnetId: string;
|
|
1166
|
+
}
|
|
1154
1167
|
/**
|
|
1155
1168
|
* ModifyRabbitMQUser请求参数结构体
|
|
1156
1169
|
*/
|
|
@@ -2332,9 +2345,13 @@ export interface ModifyRocketMQClusterRequest {
|
|
|
2332
2345
|
PublicAccessEnabled?: boolean;
|
|
2333
2346
|
}
|
|
2334
2347
|
/**
|
|
2335
|
-
*
|
|
2348
|
+
* CreateRocketMQVipInstance返回参数结构体
|
|
2336
2349
|
*/
|
|
2337
|
-
export interface
|
|
2350
|
+
export interface CreateRocketMQVipInstanceResponse {
|
|
2351
|
+
/**
|
|
2352
|
+
* 集群ID
|
|
2353
|
+
*/
|
|
2354
|
+
ClusterId?: string;
|
|
2338
2355
|
/**
|
|
2339
2356
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2340
2357
|
*/
|
|
@@ -3463,6 +3480,24 @@ export interface DescribeEnvironmentRolesRequest {
|
|
|
3463
3480
|
*/
|
|
3464
3481
|
Filters?: Array<Filter>;
|
|
3465
3482
|
}
|
|
3483
|
+
/**
|
|
3484
|
+
* DescribeRocketMQClusters返回参数结构体
|
|
3485
|
+
*/
|
|
3486
|
+
export interface DescribeRocketMQClustersResponse {
|
|
3487
|
+
/**
|
|
3488
|
+
* 集群信息
|
|
3489
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3490
|
+
*/
|
|
3491
|
+
ClusterList: Array<RocketMQClusterDetail>;
|
|
3492
|
+
/**
|
|
3493
|
+
* 总条数
|
|
3494
|
+
*/
|
|
3495
|
+
TotalCount: number;
|
|
3496
|
+
/**
|
|
3497
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3498
|
+
*/
|
|
3499
|
+
RequestId?: string;
|
|
3500
|
+
}
|
|
3466
3501
|
/**
|
|
3467
3502
|
* DeleteRoles返回参数结构体
|
|
3468
3503
|
*/
|
|
@@ -4321,6 +4356,23 @@ export interface ModifyRocketMQInstanceSpecResponse {
|
|
|
4321
4356
|
*/
|
|
4322
4357
|
RequestId?: string;
|
|
4323
4358
|
}
|
|
4359
|
+
/**
|
|
4360
|
+
* DescribePulsarProInstances请求参数结构体
|
|
4361
|
+
*/
|
|
4362
|
+
export interface DescribePulsarProInstancesRequest {
|
|
4363
|
+
/**
|
|
4364
|
+
* 查询条件过滤器
|
|
4365
|
+
*/
|
|
4366
|
+
Filters?: Array<Filter>;
|
|
4367
|
+
/**
|
|
4368
|
+
* 查询数目上限,默认20
|
|
4369
|
+
*/
|
|
4370
|
+
Limit?: number;
|
|
4371
|
+
/**
|
|
4372
|
+
* 查询起始位置
|
|
4373
|
+
*/
|
|
4374
|
+
Offset?: number;
|
|
4375
|
+
}
|
|
4324
4376
|
/**
|
|
4325
4377
|
* DescribeRocketMQVipInstances请求参数结构体
|
|
4326
4378
|
*/
|
|
@@ -4350,17 +4402,41 @@ export interface DescribeRocketMQVipInstanceDetailRequest {
|
|
|
4350
4402
|
ClusterId: string;
|
|
4351
4403
|
}
|
|
4352
4404
|
/**
|
|
4353
|
-
*
|
|
4405
|
+
* CreateRocketMQVipInstance请求参数结构体
|
|
4354
4406
|
*/
|
|
4355
|
-
export interface
|
|
4407
|
+
export interface CreateRocketMQVipInstanceRequest {
|
|
4356
4408
|
/**
|
|
4357
|
-
*
|
|
4409
|
+
* 实例名称
|
|
4358
4410
|
*/
|
|
4359
|
-
|
|
4411
|
+
Name: string;
|
|
4360
4412
|
/**
|
|
4361
|
-
*
|
|
4413
|
+
* 实例规格:
|
|
4414
|
+
基础型,rocket-vip-basic-1
|
|
4415
|
+
标准型,rocket-vip-basic-2
|
|
4416
|
+
高阶Ⅰ型,rocket-vip-basic-3
|
|
4417
|
+
高阶Ⅱ型,rocket-vip-basic-4
|
|
4362
4418
|
*/
|
|
4363
|
-
|
|
4419
|
+
Spec: string;
|
|
4420
|
+
/**
|
|
4421
|
+
* 节点数量,最小2,最大20
|
|
4422
|
+
*/
|
|
4423
|
+
NodeCount: number;
|
|
4424
|
+
/**
|
|
4425
|
+
* 单节点存储空间,GB为单位,最低200GB
|
|
4426
|
+
*/
|
|
4427
|
+
StorageSize: number;
|
|
4428
|
+
/**
|
|
4429
|
+
* 节点部署的区域ID列表,如广州一区,则是100001,具体可查询腾讯云官网
|
|
4430
|
+
*/
|
|
4431
|
+
ZoneIds: Array<string>;
|
|
4432
|
+
/**
|
|
4433
|
+
* VPC信息
|
|
4434
|
+
*/
|
|
4435
|
+
VpcInfo: VpcInfo;
|
|
4436
|
+
/**
|
|
4437
|
+
* 购买时长,月为单位
|
|
4438
|
+
*/
|
|
4439
|
+
TimeSpan: number;
|
|
4364
4440
|
}
|
|
4365
4441
|
/**
|
|
4366
4442
|
* DeleteRocketMQCluster返回参数结构体
|
|
@@ -5273,21 +5349,17 @@ export interface DescribeCmqQueueDetailRequest {
|
|
|
5273
5349
|
QueueName: string;
|
|
5274
5350
|
}
|
|
5275
5351
|
/**
|
|
5276
|
-
*
|
|
5352
|
+
* DeleteRabbitMQVirtualHost请求参数结构体
|
|
5277
5353
|
*/
|
|
5278
|
-
export interface
|
|
5279
|
-
/**
|
|
5280
|
-
* 查询条件过滤器
|
|
5281
|
-
*/
|
|
5282
|
-
Filters?: Array<Filter>;
|
|
5354
|
+
export interface DeleteRabbitMQVirtualHostRequest {
|
|
5283
5355
|
/**
|
|
5284
|
-
*
|
|
5356
|
+
* 集群实例Id
|
|
5285
5357
|
*/
|
|
5286
|
-
|
|
5358
|
+
InstanceId: string;
|
|
5287
5359
|
/**
|
|
5288
|
-
*
|
|
5360
|
+
* vhost名
|
|
5289
5361
|
*/
|
|
5290
|
-
|
|
5362
|
+
VirtualHost: string;
|
|
5291
5363
|
}
|
|
5292
5364
|
/**
|
|
5293
5365
|
* CreateRocketMQTopic请求参数结构体
|
|
@@ -5430,9 +5502,14 @@ export interface DescribeNodeHealthOptRequest {
|
|
|
5430
5502
|
InstanceId: string;
|
|
5431
5503
|
}
|
|
5432
5504
|
/**
|
|
5433
|
-
*
|
|
5505
|
+
* DeleteRabbitMQVirtualHost返回参数结构体
|
|
5434
5506
|
*/
|
|
5435
|
-
export
|
|
5507
|
+
export interface DeleteRabbitMQVirtualHostResponse {
|
|
5508
|
+
/**
|
|
5509
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5510
|
+
*/
|
|
5511
|
+
RequestId?: string;
|
|
5512
|
+
}
|
|
5436
5513
|
/**
|
|
5437
5514
|
* CreateRocketMQTopic返回参数结构体
|
|
5438
5515
|
*/
|
|
@@ -5611,23 +5688,9 @@ export interface DescribeRabbitMQVirtualHostListResponse {
|
|
|
5611
5688
|
RequestId?: string;
|
|
5612
5689
|
}
|
|
5613
5690
|
/**
|
|
5614
|
-
*
|
|
5691
|
+
* DescribeBindClusters请求参数结构体
|
|
5615
5692
|
*/
|
|
5616
|
-
export
|
|
5617
|
-
/**
|
|
5618
|
-
* 集群信息
|
|
5619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5620
|
-
*/
|
|
5621
|
-
ClusterList: Array<RocketMQClusterDetail>;
|
|
5622
|
-
/**
|
|
5623
|
-
* 总条数
|
|
5624
|
-
*/
|
|
5625
|
-
TotalCount: number;
|
|
5626
|
-
/**
|
|
5627
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5628
|
-
*/
|
|
5629
|
-
RequestId?: string;
|
|
5630
|
-
}
|
|
5693
|
+
export declare type DescribeBindClustersRequest = null;
|
|
5631
5694
|
/**
|
|
5632
5695
|
* DescribePulsarProInstanceDetail请求参数结构体
|
|
5633
5696
|
*/
|