tencentcloud-sdk-nodejs-tdmq 4.0.720 → 4.0.722
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 +313 -0
- package/SERVICE_CHANGELOG.md +298 -42
- package/package.json +1 -1
- package/products.md +17 -17
- package/src/services/tdmq/v20200217/tdmq_client.ts +61 -32
- package/src/services/tdmq/v20200217/tdmq_models.ts +339 -108
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +20 -12
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +27 -15
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +330 -108
|
@@ -461,17 +461,31 @@ export interface DeleteClusterResponse {
|
|
|
461
461
|
}
|
|
462
462
|
|
|
463
463
|
/**
|
|
464
|
-
*
|
|
464
|
+
* ResetRocketMQConsumerOffSet返回参数结构体
|
|
465
465
|
*/
|
|
466
|
-
export interface
|
|
466
|
+
export interface ResetRocketMQConsumerOffSetResponse {
|
|
467
467
|
/**
|
|
468
|
-
*
|
|
468
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
469
469
|
*/
|
|
470
|
-
|
|
470
|
+
RequestId?: string
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
/**
|
|
474
|
+
* DescribeTopicMsgs返回参数结构体
|
|
475
|
+
*/
|
|
476
|
+
export interface DescribeTopicMsgsResponse {
|
|
471
477
|
/**
|
|
472
|
-
*
|
|
478
|
+
* 总记录数。
|
|
473
479
|
*/
|
|
474
|
-
|
|
480
|
+
TotalCount: number
|
|
481
|
+
/**
|
|
482
|
+
* 消息日志列表。
|
|
483
|
+
*/
|
|
484
|
+
TopicMsgLogSets: Array<MsgLog>
|
|
485
|
+
/**
|
|
486
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
487
|
+
*/
|
|
488
|
+
RequestId?: string
|
|
475
489
|
}
|
|
476
490
|
|
|
477
491
|
/**
|
|
@@ -579,9 +593,13 @@ export interface DescribeRocketMQMigratingTopicListRequest {
|
|
|
579
593
|
}
|
|
580
594
|
|
|
581
595
|
/**
|
|
582
|
-
*
|
|
596
|
+
* ModifyCluster返回参数结构体
|
|
583
597
|
*/
|
|
584
|
-
export interface
|
|
598
|
+
export interface ModifyClusterResponse {
|
|
599
|
+
/**
|
|
600
|
+
* Pulsar 集群的ID
|
|
601
|
+
*/
|
|
602
|
+
ClusterId: string
|
|
585
603
|
/**
|
|
586
604
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
587
605
|
*/
|
|
@@ -2615,6 +2633,80 @@ export interface DescribeCmqSubscriptionDetailResponse {
|
|
|
2615
2633
|
RequestId?: string
|
|
2616
2634
|
}
|
|
2617
2635
|
|
|
2636
|
+
/**
|
|
2637
|
+
* Pulsar专业版实例信息
|
|
2638
|
+
*/
|
|
2639
|
+
export interface PulsarProInstance {
|
|
2640
|
+
/**
|
|
2641
|
+
* 实例id
|
|
2642
|
+
*/
|
|
2643
|
+
InstanceId: string
|
|
2644
|
+
/**
|
|
2645
|
+
* 实例名称
|
|
2646
|
+
*/
|
|
2647
|
+
InstanceName: string
|
|
2648
|
+
/**
|
|
2649
|
+
* 实例版本
|
|
2650
|
+
*/
|
|
2651
|
+
InstanceVersion: string
|
|
2652
|
+
/**
|
|
2653
|
+
* 实例状态,0-创建中,1-正常,2-隔离中,3-已销毁,4 - 异常, 5 - 发货失败,6-变配中,7-变配失败
|
|
2654
|
+
*/
|
|
2655
|
+
Status: number
|
|
2656
|
+
/**
|
|
2657
|
+
* 实例配置规格名称
|
|
2658
|
+
*/
|
|
2659
|
+
ConfigDisplay: string
|
|
2660
|
+
/**
|
|
2661
|
+
* 峰值TPS
|
|
2662
|
+
*/
|
|
2663
|
+
MaxTps: number
|
|
2664
|
+
/**
|
|
2665
|
+
* 存储容量,GB为单位
|
|
2666
|
+
*/
|
|
2667
|
+
MaxStorage: number
|
|
2668
|
+
/**
|
|
2669
|
+
* 实例到期时间,毫秒为单位
|
|
2670
|
+
*/
|
|
2671
|
+
ExpireTime: number
|
|
2672
|
+
/**
|
|
2673
|
+
* 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置)
|
|
2674
|
+
*/
|
|
2675
|
+
AutoRenewFlag: number
|
|
2676
|
+
/**
|
|
2677
|
+
* 0-后付费,1-预付费
|
|
2678
|
+
*/
|
|
2679
|
+
PayMode: number
|
|
2680
|
+
/**
|
|
2681
|
+
* 备注信息
|
|
2682
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2683
|
+
*/
|
|
2684
|
+
Remark: string
|
|
2685
|
+
/**
|
|
2686
|
+
* 实例配置ID
|
|
2687
|
+
*/
|
|
2688
|
+
SpecName: string
|
|
2689
|
+
/**
|
|
2690
|
+
* 规格外弹性TPS
|
|
2691
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2692
|
+
*/
|
|
2693
|
+
ScalableTps: number
|
|
2694
|
+
/**
|
|
2695
|
+
* VPC的id
|
|
2696
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2697
|
+
*/
|
|
2698
|
+
VpcId: string
|
|
2699
|
+
/**
|
|
2700
|
+
* 子网id
|
|
2701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2702
|
+
*/
|
|
2703
|
+
SubnetId: string
|
|
2704
|
+
/**
|
|
2705
|
+
* 峰值带宽。单位:mbps
|
|
2706
|
+
*/
|
|
2707
|
+
MaxBandWidth: number
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2618
2710
|
/**
|
|
2619
2711
|
* vcp绑定记录
|
|
2620
2712
|
*/
|
|
@@ -2985,6 +3077,20 @@ export interface DeleteEnvironmentRolesResponse {
|
|
|
2985
3077
|
RequestId?: string
|
|
2986
3078
|
}
|
|
2987
3079
|
|
|
3080
|
+
/**
|
|
3081
|
+
* RocketMQtopic分布情况
|
|
3082
|
+
*/
|
|
3083
|
+
export interface RocketMQTopicDistribution {
|
|
3084
|
+
/**
|
|
3085
|
+
* topic类型
|
|
3086
|
+
*/
|
|
3087
|
+
TopicType: string
|
|
3088
|
+
/**
|
|
3089
|
+
* topic数量
|
|
3090
|
+
*/
|
|
3091
|
+
Count: number
|
|
3092
|
+
}
|
|
3093
|
+
|
|
2988
3094
|
/**
|
|
2989
3095
|
* DescribeClusterDetail请求参数结构体
|
|
2990
3096
|
*/
|
|
@@ -3066,22 +3172,25 @@ export interface DeleteRocketMQTopicResponse {
|
|
|
3066
3172
|
}
|
|
3067
3173
|
|
|
3068
3174
|
/**
|
|
3069
|
-
*
|
|
3175
|
+
* 消息日志
|
|
3070
3176
|
*/
|
|
3071
|
-
export interface
|
|
3177
|
+
export interface MsgLog {
|
|
3072
3178
|
/**
|
|
3073
|
-
*
|
|
3179
|
+
* 消息ID。
|
|
3074
3180
|
*/
|
|
3075
|
-
|
|
3181
|
+
MsgId: string
|
|
3076
3182
|
/**
|
|
3077
|
-
*
|
|
3078
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3183
|
+
* 生产者名称。
|
|
3079
3184
|
*/
|
|
3080
|
-
|
|
3185
|
+
ProducerName: string
|
|
3081
3186
|
/**
|
|
3082
|
-
*
|
|
3187
|
+
* 生产时间。
|
|
3083
3188
|
*/
|
|
3084
|
-
|
|
3189
|
+
ProduceTime: string
|
|
3190
|
+
/**
|
|
3191
|
+
* 生产客户端地址。
|
|
3192
|
+
*/
|
|
3193
|
+
ProducerAddr: string
|
|
3085
3194
|
}
|
|
3086
3195
|
|
|
3087
3196
|
/**
|
|
@@ -3832,6 +3941,25 @@ export interface DescribeCmqTopicsResponse {
|
|
|
3832
3941
|
RequestId?: string
|
|
3833
3942
|
}
|
|
3834
3943
|
|
|
3944
|
+
/**
|
|
3945
|
+
* SendRocketMQMessage返回参数结构体
|
|
3946
|
+
*/
|
|
3947
|
+
export interface SendRocketMQMessageResponse {
|
|
3948
|
+
/**
|
|
3949
|
+
* 发送结果
|
|
3950
|
+
*/
|
|
3951
|
+
Result: boolean
|
|
3952
|
+
/**
|
|
3953
|
+
* 消息ID
|
|
3954
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3955
|
+
*/
|
|
3956
|
+
MsgId: string
|
|
3957
|
+
/**
|
|
3958
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3959
|
+
*/
|
|
3960
|
+
RequestId?: string
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3835
3963
|
/**
|
|
3836
3964
|
* DescribeCmqTopicDetail请求参数结构体
|
|
3837
3965
|
*/
|
|
@@ -3963,6 +4091,36 @@ export interface UnbindCmqDeadLetterResponse {
|
|
|
3963
4091
|
RequestId?: string
|
|
3964
4092
|
}
|
|
3965
4093
|
|
|
4094
|
+
/**
|
|
4095
|
+
* 环境角色集合
|
|
4096
|
+
*/
|
|
4097
|
+
export interface EnvironmentRole {
|
|
4098
|
+
/**
|
|
4099
|
+
* 环境(命名空间)。
|
|
4100
|
+
*/
|
|
4101
|
+
EnvironmentId: string
|
|
4102
|
+
/**
|
|
4103
|
+
* 角色名称。
|
|
4104
|
+
*/
|
|
4105
|
+
RoleName: string
|
|
4106
|
+
/**
|
|
4107
|
+
* 授权项,最多只能包含produce、consume两项的非空字符串数组。
|
|
4108
|
+
*/
|
|
4109
|
+
Permissions: Array<string>
|
|
4110
|
+
/**
|
|
4111
|
+
* 角色描述。
|
|
4112
|
+
*/
|
|
4113
|
+
RoleDescribe: string
|
|
4114
|
+
/**
|
|
4115
|
+
* 创建时间。
|
|
4116
|
+
*/
|
|
4117
|
+
CreateTime: string
|
|
4118
|
+
/**
|
|
4119
|
+
* 更新时间。
|
|
4120
|
+
*/
|
|
4121
|
+
UpdateTime: string
|
|
4122
|
+
}
|
|
4123
|
+
|
|
3966
4124
|
/**
|
|
3967
4125
|
* ModifyRocketMQNamespace返回参数结构体
|
|
3968
4126
|
*/
|
|
@@ -4138,17 +4296,19 @@ export interface DescribeRocketMQClustersRequest {
|
|
|
4138
4296
|
}
|
|
4139
4297
|
|
|
4140
4298
|
/**
|
|
4141
|
-
*
|
|
4299
|
+
* 消费信息
|
|
4142
4300
|
*/
|
|
4143
|
-
export interface
|
|
4301
|
+
export interface ConsumerLogs {
|
|
4144
4302
|
/**
|
|
4145
|
-
*
|
|
4303
|
+
* 记录数。
|
|
4304
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4146
4305
|
*/
|
|
4147
|
-
|
|
4306
|
+
TotalCount: number
|
|
4148
4307
|
/**
|
|
4149
|
-
*
|
|
4308
|
+
* 消费日志。
|
|
4309
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4150
4310
|
*/
|
|
4151
|
-
|
|
4311
|
+
ConsumerLogSets: Array<ConsumerLog>
|
|
4152
4312
|
}
|
|
4153
4313
|
|
|
4154
4314
|
/**
|
|
@@ -4814,77 +4974,28 @@ export interface CreateCmqQueueResponse {
|
|
|
4814
4974
|
}
|
|
4815
4975
|
|
|
4816
4976
|
/**
|
|
4817
|
-
*
|
|
4977
|
+
* DescribeMsgTrace返回参数结构体
|
|
4818
4978
|
*/
|
|
4819
|
-
export interface
|
|
4820
|
-
/**
|
|
4821
|
-
* 实例id
|
|
4822
|
-
*/
|
|
4823
|
-
InstanceId: string
|
|
4824
|
-
/**
|
|
4825
|
-
* 实例名称
|
|
4826
|
-
*/
|
|
4827
|
-
InstanceName: string
|
|
4828
|
-
/**
|
|
4829
|
-
* 实例版本
|
|
4830
|
-
*/
|
|
4831
|
-
InstanceVersion: string
|
|
4832
|
-
/**
|
|
4833
|
-
* 实例状态,0-创建中,1-正常,2-隔离中,3-已销毁,4 - 异常, 5 - 发货失败,6-变配中,7-变配失败
|
|
4834
|
-
*/
|
|
4835
|
-
Status: number
|
|
4836
|
-
/**
|
|
4837
|
-
* 实例配置规格名称
|
|
4838
|
-
*/
|
|
4839
|
-
ConfigDisplay: string
|
|
4840
|
-
/**
|
|
4841
|
-
* 峰值TPS
|
|
4842
|
-
*/
|
|
4843
|
-
MaxTps: number
|
|
4844
|
-
/**
|
|
4845
|
-
* 存储容量,GB为单位
|
|
4846
|
-
*/
|
|
4847
|
-
MaxStorage: number
|
|
4848
|
-
/**
|
|
4849
|
-
* 实例到期时间,毫秒为单位
|
|
4850
|
-
*/
|
|
4851
|
-
ExpireTime: number
|
|
4852
|
-
/**
|
|
4853
|
-
* 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置)
|
|
4854
|
-
*/
|
|
4855
|
-
AutoRenewFlag: number
|
|
4856
|
-
/**
|
|
4857
|
-
* 0-后付费,1-预付费
|
|
4858
|
-
*/
|
|
4859
|
-
PayMode: number
|
|
4979
|
+
export interface DescribeMsgTraceResponse {
|
|
4860
4980
|
/**
|
|
4861
|
-
*
|
|
4981
|
+
* 生产信息。
|
|
4862
4982
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4863
4983
|
*/
|
|
4864
|
-
|
|
4865
|
-
/**
|
|
4866
|
-
* 实例配置ID
|
|
4867
|
-
*/
|
|
4868
|
-
SpecName: string
|
|
4984
|
+
ProducerLog: ProducerLog
|
|
4869
4985
|
/**
|
|
4870
|
-
*
|
|
4986
|
+
* 服务方信息。
|
|
4871
4987
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4872
4988
|
*/
|
|
4873
|
-
|
|
4989
|
+
ServerLog: ServerLog
|
|
4874
4990
|
/**
|
|
4875
|
-
*
|
|
4991
|
+
* 消费信息。
|
|
4876
4992
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4877
4993
|
*/
|
|
4878
|
-
|
|
4994
|
+
ConsumerLogs: ConsumerLogs
|
|
4879
4995
|
/**
|
|
4880
|
-
*
|
|
4881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4882
|
-
*/
|
|
4883
|
-
SubnetId: string
|
|
4884
|
-
/**
|
|
4885
|
-
* 峰值带宽。单位:mbps
|
|
4996
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4886
4997
|
*/
|
|
4887
|
-
|
|
4998
|
+
RequestId?: string
|
|
4888
4999
|
}
|
|
4889
5000
|
|
|
4890
5001
|
/**
|
|
@@ -5324,33 +5435,33 @@ export interface DescribeRabbitMQVipInstanceResponse {
|
|
|
5324
5435
|
/**
|
|
5325
5436
|
* 集群信息
|
|
5326
5437
|
*/
|
|
5327
|
-
ClusterInfo
|
|
5438
|
+
ClusterInfo?: RabbitMQClusterInfo
|
|
5328
5439
|
/**
|
|
5329
5440
|
* 集群规格信息
|
|
5330
5441
|
*/
|
|
5331
|
-
ClusterSpecInfo
|
|
5442
|
+
ClusterSpecInfo?: RabbitMQClusterSpecInfo
|
|
5332
5443
|
/**
|
|
5333
5444
|
* 集群访问
|
|
5334
5445
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5335
5446
|
*/
|
|
5336
|
-
ClusterNetInfo
|
|
5447
|
+
ClusterNetInfo?: RabbitMQClusterAccessInfo
|
|
5337
5448
|
/**
|
|
5338
5449
|
* 集群白名单
|
|
5339
5450
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5340
5451
|
*/
|
|
5341
|
-
ClusterWhiteListInfo
|
|
5452
|
+
ClusterWhiteListInfo?: RabbitMQClusterWhiteListInfo
|
|
5342
5453
|
/**
|
|
5343
5454
|
* vhost配额信息
|
|
5344
5455
|
*/
|
|
5345
|
-
VirtualHostQuota
|
|
5456
|
+
VirtualHostQuota?: VirtualHostQuota
|
|
5346
5457
|
/**
|
|
5347
5458
|
* exchange配额信息
|
|
5348
5459
|
*/
|
|
5349
|
-
ExchangeQuota
|
|
5460
|
+
ExchangeQuota?: ExchangeQuota
|
|
5350
5461
|
/**
|
|
5351
5462
|
* queue配额信息
|
|
5352
5463
|
*/
|
|
5353
|
-
QueueQuota
|
|
5464
|
+
QueueQuota?: QueueQuota
|
|
5354
5465
|
/**
|
|
5355
5466
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5356
5467
|
*/
|
|
@@ -5830,17 +5941,37 @@ export interface DescribeRocketMQSubscriptionsRequest {
|
|
|
5830
5941
|
}
|
|
5831
5942
|
|
|
5832
5943
|
/**
|
|
5833
|
-
*
|
|
5944
|
+
* 消费日志
|
|
5834
5945
|
*/
|
|
5835
|
-
export interface
|
|
5946
|
+
export interface ConsumerLog {
|
|
5836
5947
|
/**
|
|
5837
|
-
*
|
|
5948
|
+
* 消息ID。
|
|
5838
5949
|
*/
|
|
5839
|
-
|
|
5950
|
+
MsgId: string
|
|
5840
5951
|
/**
|
|
5841
|
-
*
|
|
5952
|
+
* 消费组。
|
|
5842
5953
|
*/
|
|
5843
|
-
|
|
5954
|
+
ConsumerGroup: string
|
|
5955
|
+
/**
|
|
5956
|
+
* 消费组名称。
|
|
5957
|
+
*/
|
|
5958
|
+
ConsumerName: string
|
|
5959
|
+
/**
|
|
5960
|
+
* 消费时间。
|
|
5961
|
+
*/
|
|
5962
|
+
ConsumeTime: string
|
|
5963
|
+
/**
|
|
5964
|
+
* 消费者客户端地址。
|
|
5965
|
+
*/
|
|
5966
|
+
ConsumerAddr: string
|
|
5967
|
+
/**
|
|
5968
|
+
* 消费耗时(毫秒)。
|
|
5969
|
+
*/
|
|
5970
|
+
ConsumeUseTime: number
|
|
5971
|
+
/**
|
|
5972
|
+
* 消费状态。
|
|
5973
|
+
*/
|
|
5974
|
+
Status: string
|
|
5844
5975
|
}
|
|
5845
5976
|
|
|
5846
5977
|
/**
|
|
@@ -6062,6 +6193,20 @@ export interface DeleteCmqSubscribeRequest {
|
|
|
6062
6193
|
SubscriptionName: string
|
|
6063
6194
|
}
|
|
6064
6195
|
|
|
6196
|
+
/**
|
|
6197
|
+
* 服务方信息
|
|
6198
|
+
*/
|
|
6199
|
+
export interface ServerLog {
|
|
6200
|
+
/**
|
|
6201
|
+
* 存储时间。
|
|
6202
|
+
*/
|
|
6203
|
+
SaveTime: string
|
|
6204
|
+
/**
|
|
6205
|
+
* 状态。
|
|
6206
|
+
*/
|
|
6207
|
+
Status: string
|
|
6208
|
+
}
|
|
6209
|
+
|
|
6065
6210
|
/**
|
|
6066
6211
|
* DescribeAMQPClusters返回参数结构体
|
|
6067
6212
|
*/
|
|
@@ -6720,6 +6865,20 @@ export interface QueueQuota {
|
|
|
6720
6865
|
UsedQueue?: number
|
|
6721
6866
|
}
|
|
6722
6867
|
|
|
6868
|
+
/**
|
|
6869
|
+
* 排序器
|
|
6870
|
+
*/
|
|
6871
|
+
export interface Sort {
|
|
6872
|
+
/**
|
|
6873
|
+
* 排序字段
|
|
6874
|
+
*/
|
|
6875
|
+
Name: string
|
|
6876
|
+
/**
|
|
6877
|
+
* 升序ASC,降序DESC
|
|
6878
|
+
*/
|
|
6879
|
+
Order: string
|
|
6880
|
+
}
|
|
6881
|
+
|
|
6723
6882
|
/**
|
|
6724
6883
|
* CreateRole返回参数结构体
|
|
6725
6884
|
*/
|
|
@@ -7042,33 +7201,41 @@ export interface CreateRabbitMQVirtualHostRequest {
|
|
|
7042
7201
|
}
|
|
7043
7202
|
|
|
7044
7203
|
/**
|
|
7045
|
-
*
|
|
7204
|
+
* DescribeTopicMsgs请求参数结构体
|
|
7046
7205
|
*/
|
|
7047
|
-
export interface
|
|
7206
|
+
export interface DescribeTopicMsgsRequest {
|
|
7048
7207
|
/**
|
|
7049
|
-
*
|
|
7208
|
+
* 环境(命名空间)名称。
|
|
7050
7209
|
*/
|
|
7051
7210
|
EnvironmentId: string
|
|
7052
7211
|
/**
|
|
7053
|
-
*
|
|
7212
|
+
* 主题名。
|
|
7054
7213
|
*/
|
|
7055
|
-
|
|
7214
|
+
TopicName: string
|
|
7056
7215
|
/**
|
|
7057
|
-
*
|
|
7216
|
+
* 开始时间。
|
|
7058
7217
|
*/
|
|
7059
|
-
|
|
7218
|
+
StartTime: string
|
|
7060
7219
|
/**
|
|
7061
|
-
*
|
|
7220
|
+
* 结束时间。
|
|
7062
7221
|
*/
|
|
7063
|
-
|
|
7222
|
+
EndTime: string
|
|
7064
7223
|
/**
|
|
7065
|
-
*
|
|
7224
|
+
* 起始下标,不填默认为0。
|
|
7066
7225
|
*/
|
|
7067
|
-
|
|
7226
|
+
Offset?: number
|
|
7068
7227
|
/**
|
|
7069
|
-
*
|
|
7228
|
+
* 返回数量,不填则默认为10,最大值为20。
|
|
7070
7229
|
*/
|
|
7071
|
-
|
|
7230
|
+
Limit?: number
|
|
7231
|
+
/**
|
|
7232
|
+
* 消息ID。
|
|
7233
|
+
*/
|
|
7234
|
+
MsgId?: string
|
|
7235
|
+
/**
|
|
7236
|
+
* Pulsar 集群的ID
|
|
7237
|
+
*/
|
|
7238
|
+
ClusterId?: string
|
|
7072
7239
|
}
|
|
7073
7240
|
|
|
7074
7241
|
/**
|
|
@@ -7401,6 +7568,40 @@ export interface DescribeRocketMQTopicMsgsRequest {
|
|
|
7401
7568
|
QueryDeadLetterMessage?: boolean
|
|
7402
7569
|
}
|
|
7403
7570
|
|
|
7571
|
+
/**
|
|
7572
|
+
* DescribeMsgTrace请求参数结构体
|
|
7573
|
+
*/
|
|
7574
|
+
export interface DescribeMsgTraceRequest {
|
|
7575
|
+
/**
|
|
7576
|
+
* 环境(命名空间)。
|
|
7577
|
+
*/
|
|
7578
|
+
EnvironmentId: string
|
|
7579
|
+
/**
|
|
7580
|
+
* 消息ID。
|
|
7581
|
+
*/
|
|
7582
|
+
MsgId: string
|
|
7583
|
+
/**
|
|
7584
|
+
* 消息生产时间。
|
|
7585
|
+
*/
|
|
7586
|
+
ProduceTime: string
|
|
7587
|
+
/**
|
|
7588
|
+
* 起始下标,不填默认为0。
|
|
7589
|
+
*/
|
|
7590
|
+
Offset?: number
|
|
7591
|
+
/**
|
|
7592
|
+
* 返回数量,不填则默认为10,最大值为20。
|
|
7593
|
+
*/
|
|
7594
|
+
Limit?: number
|
|
7595
|
+
/**
|
|
7596
|
+
* 消费组名称模糊匹配。
|
|
7597
|
+
*/
|
|
7598
|
+
SubscriptionName?: string
|
|
7599
|
+
/**
|
|
7600
|
+
* Pulsar 集群的ID
|
|
7601
|
+
*/
|
|
7602
|
+
ClusterId?: string
|
|
7603
|
+
}
|
|
7604
|
+
|
|
7404
7605
|
/**
|
|
7405
7606
|
* ImportRocketMQConsumerGroups返回参数结构体
|
|
7406
7607
|
*/
|
|
@@ -8122,6 +8323,36 @@ export interface TraceResult {
|
|
|
8122
8323
|
Data: string
|
|
8123
8324
|
}
|
|
8124
8325
|
|
|
8326
|
+
/**
|
|
8327
|
+
* 消息生产信息
|
|
8328
|
+
*/
|
|
8329
|
+
export interface ProducerLog {
|
|
8330
|
+
/**
|
|
8331
|
+
* 消息ID。
|
|
8332
|
+
*/
|
|
8333
|
+
MsgId: string
|
|
8334
|
+
/**
|
|
8335
|
+
* 生产者名称。
|
|
8336
|
+
*/
|
|
8337
|
+
ProducerName: string
|
|
8338
|
+
/**
|
|
8339
|
+
* 消息生产时间。
|
|
8340
|
+
*/
|
|
8341
|
+
ProduceTime: string
|
|
8342
|
+
/**
|
|
8343
|
+
* 生产者客户端。
|
|
8344
|
+
*/
|
|
8345
|
+
ProducerAddr: string
|
|
8346
|
+
/**
|
|
8347
|
+
* 生产耗时(秒)。
|
|
8348
|
+
*/
|
|
8349
|
+
ProduceUseTime: number
|
|
8350
|
+
/**
|
|
8351
|
+
* 状态。
|
|
8352
|
+
*/
|
|
8353
|
+
Status: string
|
|
8354
|
+
}
|
|
8355
|
+
|
|
8125
8356
|
/**
|
|
8126
8357
|
* DeleteRabbitMQVipInstance请求参数结构体
|
|
8127
8358
|
*/
|