tencentcloud-sdk-nodejs-tdmq 4.0.584 → 4.0.586
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 +481 -0
- package/SERVICE_CHANGELOG.md +669 -7
- package/package.json +1 -1
- package/products.md +35 -35
- package/src/services/tdmq/v20200217/tdmq_client.ts +30 -2
- package/src/services/tdmq/v20200217/tdmq_models.ts +299 -16
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +9 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +12 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +252 -15
|
@@ -425,6 +425,19 @@ export interface CreateAMQPExchangeRequest {
|
|
|
425
425
|
*/
|
|
426
426
|
DelayedType?: string;
|
|
427
427
|
}
|
|
428
|
+
/**
|
|
429
|
+
* RocketMQtopic分布情况
|
|
430
|
+
*/
|
|
431
|
+
export interface RocketMQTopicDistribution {
|
|
432
|
+
/**
|
|
433
|
+
* topic类型
|
|
434
|
+
*/
|
|
435
|
+
TopicType: string;
|
|
436
|
+
/**
|
|
437
|
+
* topic数量
|
|
438
|
+
*/
|
|
439
|
+
Count: number;
|
|
440
|
+
}
|
|
428
441
|
/**
|
|
429
442
|
* DescribeRocketMQNamespaces返回参数结构体
|
|
430
443
|
*/
|
|
@@ -1356,6 +1369,23 @@ export interface Topic {
|
|
|
1356
1369
|
*/
|
|
1357
1370
|
PulsarTopicType: number;
|
|
1358
1371
|
}
|
|
1372
|
+
/**
|
|
1373
|
+
* SendCmqMsg返回参数结构体
|
|
1374
|
+
*/
|
|
1375
|
+
export interface SendCmqMsgResponse {
|
|
1376
|
+
/**
|
|
1377
|
+
* true表示发送成功
|
|
1378
|
+
*/
|
|
1379
|
+
Result: boolean;
|
|
1380
|
+
/**
|
|
1381
|
+
* 消息id
|
|
1382
|
+
*/
|
|
1383
|
+
MsgId: string;
|
|
1384
|
+
/**
|
|
1385
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1386
|
+
*/
|
|
1387
|
+
RequestId?: string;
|
|
1388
|
+
}
|
|
1359
1389
|
/**
|
|
1360
1390
|
* exchange使用配额信息
|
|
1361
1391
|
*/
|
|
@@ -2221,6 +2251,23 @@ export interface DescribeAMQPVHostsRequest {
|
|
|
2221
2251
|
*/
|
|
2222
2252
|
VHostIdList?: Array<string>;
|
|
2223
2253
|
}
|
|
2254
|
+
/**
|
|
2255
|
+
* DescribePulsarProInstances请求参数结构体
|
|
2256
|
+
*/
|
|
2257
|
+
export interface DescribePulsarProInstancesRequest {
|
|
2258
|
+
/**
|
|
2259
|
+
* 查询条件过滤器
|
|
2260
|
+
*/
|
|
2261
|
+
Filters?: Array<Filter>;
|
|
2262
|
+
/**
|
|
2263
|
+
* 查询数目上限,默认20
|
|
2264
|
+
*/
|
|
2265
|
+
Limit?: number;
|
|
2266
|
+
/**
|
|
2267
|
+
* 查询起始位置
|
|
2268
|
+
*/
|
|
2269
|
+
Offset?: number;
|
|
2270
|
+
}
|
|
2224
2271
|
/**
|
|
2225
2272
|
* ModifyCluster请求参数结构体
|
|
2226
2273
|
*/
|
|
@@ -3374,6 +3421,23 @@ export interface TopicRecord {
|
|
|
3374
3421
|
*/
|
|
3375
3422
|
TopicName: string;
|
|
3376
3423
|
}
|
|
3424
|
+
/**
|
|
3425
|
+
* DescribePulsarProInstances返回参数结构体
|
|
3426
|
+
*/
|
|
3427
|
+
export interface DescribePulsarProInstancesResponse {
|
|
3428
|
+
/**
|
|
3429
|
+
* 未分页的总数目
|
|
3430
|
+
*/
|
|
3431
|
+
TotalCount: number;
|
|
3432
|
+
/**
|
|
3433
|
+
* 实例信息列表
|
|
3434
|
+
*/
|
|
3435
|
+
Instances: Array<PulsarProInstance>;
|
|
3436
|
+
/**
|
|
3437
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3438
|
+
*/
|
|
3439
|
+
RequestId?: string;
|
|
3440
|
+
}
|
|
3377
3441
|
/**
|
|
3378
3442
|
* CreateRocketMQGroup返回参数结构体
|
|
3379
3443
|
*/
|
|
@@ -3635,6 +3699,79 @@ export interface CreateCmqQueueResponse {
|
|
|
3635
3699
|
*/
|
|
3636
3700
|
RequestId?: string;
|
|
3637
3701
|
}
|
|
3702
|
+
/**
|
|
3703
|
+
* Pulsar专业版实例信息
|
|
3704
|
+
*/
|
|
3705
|
+
export interface PulsarProInstance {
|
|
3706
|
+
/**
|
|
3707
|
+
* 实例id
|
|
3708
|
+
*/
|
|
3709
|
+
InstanceId: string;
|
|
3710
|
+
/**
|
|
3711
|
+
* 实例名称
|
|
3712
|
+
*/
|
|
3713
|
+
InstanceName: string;
|
|
3714
|
+
/**
|
|
3715
|
+
* 实例版本
|
|
3716
|
+
*/
|
|
3717
|
+
InstanceVersion: string;
|
|
3718
|
+
/**
|
|
3719
|
+
* 实例状态,0-创建中,1-正常,2-隔离中,3-已销毁,4 - 异常, 5 - 发货失败,6-变配中,7-变配失败
|
|
3720
|
+
*/
|
|
3721
|
+
Status: number;
|
|
3722
|
+
/**
|
|
3723
|
+
* 实例配置规格名称
|
|
3724
|
+
*/
|
|
3725
|
+
ConfigDisplay: string;
|
|
3726
|
+
/**
|
|
3727
|
+
* 峰值TPS
|
|
3728
|
+
*/
|
|
3729
|
+
MaxTps: number;
|
|
3730
|
+
/**
|
|
3731
|
+
* 存储容量,GB为单位
|
|
3732
|
+
*/
|
|
3733
|
+
MaxStorage: number;
|
|
3734
|
+
/**
|
|
3735
|
+
* 实例到期时间,毫秒为单位
|
|
3736
|
+
*/
|
|
3737
|
+
ExpireTime: number;
|
|
3738
|
+
/**
|
|
3739
|
+
* 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置)
|
|
3740
|
+
*/
|
|
3741
|
+
AutoRenewFlag: number;
|
|
3742
|
+
/**
|
|
3743
|
+
* 0-后付费,1-预付费
|
|
3744
|
+
*/
|
|
3745
|
+
PayMode: number;
|
|
3746
|
+
/**
|
|
3747
|
+
* 备注信息
|
|
3748
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3749
|
+
*/
|
|
3750
|
+
Remark: string;
|
|
3751
|
+
/**
|
|
3752
|
+
* 实例配置ID
|
|
3753
|
+
*/
|
|
3754
|
+
SpecName: string;
|
|
3755
|
+
/**
|
|
3756
|
+
* 规格外弹性TPS
|
|
3757
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3758
|
+
*/
|
|
3759
|
+
ScalableTps: number;
|
|
3760
|
+
/**
|
|
3761
|
+
* VPC的id
|
|
3762
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3763
|
+
*/
|
|
3764
|
+
VpcId: string;
|
|
3765
|
+
/**
|
|
3766
|
+
* 子网id
|
|
3767
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3768
|
+
*/
|
|
3769
|
+
SubnetId: string;
|
|
3770
|
+
/**
|
|
3771
|
+
* 峰值带宽。单位:mbps
|
|
3772
|
+
*/
|
|
3773
|
+
MaxBandWidth: number;
|
|
3774
|
+
}
|
|
3638
3775
|
/**
|
|
3639
3776
|
* 分区topic
|
|
3640
3777
|
*/
|
|
@@ -4336,6 +4473,36 @@ export interface DescribeRabbitMQVipInstanceRequest {
|
|
|
4336
4473
|
*/
|
|
4337
4474
|
ClusterId: string;
|
|
4338
4475
|
}
|
|
4476
|
+
/**
|
|
4477
|
+
* Pulsar专业版集群规格信息
|
|
4478
|
+
*/
|
|
4479
|
+
export interface PulsarProClusterSpecInfo {
|
|
4480
|
+
/**
|
|
4481
|
+
* 集群规格名称
|
|
4482
|
+
*/
|
|
4483
|
+
SpecName: string;
|
|
4484
|
+
/**
|
|
4485
|
+
* 峰值tps
|
|
4486
|
+
*/
|
|
4487
|
+
MaxTps: number;
|
|
4488
|
+
/**
|
|
4489
|
+
* 峰值带宽。单位:mbps
|
|
4490
|
+
*/
|
|
4491
|
+
MaxBandWidth: number;
|
|
4492
|
+
/**
|
|
4493
|
+
* 最大命名空间个数
|
|
4494
|
+
*/
|
|
4495
|
+
MaxNamespaces: number;
|
|
4496
|
+
/**
|
|
4497
|
+
* 最大主题分区数
|
|
4498
|
+
*/
|
|
4499
|
+
MaxTopics: number;
|
|
4500
|
+
/**
|
|
4501
|
+
* 规格外弹性TPS
|
|
4502
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4503
|
+
*/
|
|
4504
|
+
ScalableTps: number;
|
|
4505
|
+
}
|
|
4339
4506
|
/**
|
|
4340
4507
|
* DescribeCmqTopics请求参数结构体
|
|
4341
4508
|
*/
|
|
@@ -4956,6 +5123,44 @@ export interface CreateRocketMQClusterResponse {
|
|
|
4956
5123
|
* DescribeAMQPCreateQuota请求参数结构体
|
|
4957
5124
|
*/
|
|
4958
5125
|
export declare type DescribeAMQPCreateQuotaRequest = null;
|
|
5126
|
+
/**
|
|
5127
|
+
* Pulsar专业版集群信息
|
|
5128
|
+
*/
|
|
5129
|
+
export interface PulsarProClusterInfo {
|
|
5130
|
+
/**
|
|
5131
|
+
* 集群Id。
|
|
5132
|
+
*/
|
|
5133
|
+
ClusterId: string;
|
|
5134
|
+
/**
|
|
5135
|
+
* 集群名称。
|
|
5136
|
+
*/
|
|
5137
|
+
ClusterName: string;
|
|
5138
|
+
/**
|
|
5139
|
+
* 说明信息。
|
|
5140
|
+
*/
|
|
5141
|
+
Remark: string;
|
|
5142
|
+
/**
|
|
5143
|
+
* 创建时间
|
|
5144
|
+
*/
|
|
5145
|
+
CreateTime: string;
|
|
5146
|
+
/**
|
|
5147
|
+
* 集群状态,0:创建中,1:正常,2:隔离
|
|
5148
|
+
*/
|
|
5149
|
+
Status: number;
|
|
5150
|
+
/**
|
|
5151
|
+
* 集群版本
|
|
5152
|
+
*/
|
|
5153
|
+
Version: string;
|
|
5154
|
+
/**
|
|
5155
|
+
* 节点分布情况
|
|
5156
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5157
|
+
*/
|
|
5158
|
+
NodeDistribution: Array<InstanceNodeDistribution>;
|
|
5159
|
+
/**
|
|
5160
|
+
* 最大储存容量,单位:MB
|
|
5161
|
+
*/
|
|
5162
|
+
MaxStorage: number;
|
|
5163
|
+
}
|
|
4959
5164
|
/**
|
|
4960
5165
|
* AMQP 队列信息
|
|
4961
5166
|
*/
|
|
@@ -5584,17 +5789,13 @@ export interface DescribeRocketMQClustersResponse {
|
|
|
5584
5789
|
RequestId?: string;
|
|
5585
5790
|
}
|
|
5586
5791
|
/**
|
|
5587
|
-
*
|
|
5792
|
+
* DescribePulsarProInstanceDetail请求参数结构体
|
|
5588
5793
|
*/
|
|
5589
|
-
export interface
|
|
5794
|
+
export interface DescribePulsarProInstanceDetailRequest {
|
|
5590
5795
|
/**
|
|
5591
|
-
*
|
|
5592
|
-
*/
|
|
5593
|
-
TopicType: string;
|
|
5594
|
-
/**
|
|
5595
|
-
* topic数量
|
|
5796
|
+
* 集群ID
|
|
5596
5797
|
*/
|
|
5597
|
-
|
|
5798
|
+
ClusterId: string;
|
|
5598
5799
|
}
|
|
5599
5800
|
/**
|
|
5600
5801
|
* 排序器
|
|
@@ -5626,6 +5827,36 @@ export interface CreateRoleRequest {
|
|
|
5626
5827
|
*/
|
|
5627
5828
|
ClusterId?: string;
|
|
5628
5829
|
}
|
|
5830
|
+
/**
|
|
5831
|
+
* Pulsar 网络接入点信息
|
|
5832
|
+
*/
|
|
5833
|
+
export interface PulsarNetworkAccessPointInfo {
|
|
5834
|
+
/**
|
|
5835
|
+
* vpc的id,支撑网和公网接入点,该字段为空
|
|
5836
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5837
|
+
*/
|
|
5838
|
+
VpcId: string;
|
|
5839
|
+
/**
|
|
5840
|
+
* 子网id,支撑网和公网接入点,该字段为空
|
|
5841
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5842
|
+
*/
|
|
5843
|
+
SubnetId: string;
|
|
5844
|
+
/**
|
|
5845
|
+
* 接入地址
|
|
5846
|
+
*/
|
|
5847
|
+
Endpoint: string;
|
|
5848
|
+
/**
|
|
5849
|
+
* 实例id
|
|
5850
|
+
*/
|
|
5851
|
+
InstanceId: string;
|
|
5852
|
+
/**
|
|
5853
|
+
* 接入点类型:
|
|
5854
|
+
0:支撑网接入点
|
|
5855
|
+
1:VPC接入点
|
|
5856
|
+
2:公网接入点
|
|
5857
|
+
*/
|
|
5858
|
+
RouteType: number;
|
|
5859
|
+
}
|
|
5629
5860
|
/**
|
|
5630
5861
|
* ModifyEnvironmentRole请求参数结构体
|
|
5631
5862
|
*/
|
|
@@ -5911,17 +6142,23 @@ export interface DeleteAMQPRouteRelationRequest {
|
|
|
5911
6142
|
RouteRelationId: string;
|
|
5912
6143
|
}
|
|
5913
6144
|
/**
|
|
5914
|
-
*
|
|
6145
|
+
* DescribePulsarProInstanceDetail返回参数结构体
|
|
5915
6146
|
*/
|
|
5916
|
-
export interface
|
|
6147
|
+
export interface DescribePulsarProInstanceDetailResponse {
|
|
5917
6148
|
/**
|
|
5918
|
-
*
|
|
6149
|
+
* 集群信息
|
|
5919
6150
|
*/
|
|
5920
|
-
|
|
6151
|
+
ClusterInfo: PulsarProClusterInfo;
|
|
5921
6152
|
/**
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
6153
|
+
* 集群网络接入点信息
|
|
6154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6155
|
+
*/
|
|
6156
|
+
NetworkAccessPointInfos: Array<PulsarNetworkAccessPointInfo>;
|
|
6157
|
+
/**
|
|
6158
|
+
* 集群规格信息
|
|
6159
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6160
|
+
*/
|
|
6161
|
+
ClusterSpecInfo: PulsarProClusterSpecInfo;
|
|
5925
6162
|
/**
|
|
5926
6163
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5927
6164
|
*/
|