tencentcloud-sdk-nodejs-tdmq 4.0.542 → 4.0.543

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.
@@ -167,6 +167,23 @@ export interface DescribeSubscriptionsRequest {
167
167
  */
168
168
  ClusterId?: string;
169
169
  }
170
+ /**
171
+ * 实例节点分布信息
172
+ */
173
+ export interface InstanceNodeDistribution {
174
+ /**
175
+ * 可用区
176
+ */
177
+ ZoneName: string;
178
+ /**
179
+ * 可用区id
180
+ */
181
+ ZoneId: string;
182
+ /**
183
+ * 节点数
184
+ */
185
+ NodeCount: number;
186
+ }
170
187
  /**
171
188
  * CreateRocketMQGroup请求参数结构体
172
189
  */
@@ -653,6 +670,55 @@ export interface DescribeNamespaceBundlesOptResponse {
653
670
  */
654
671
  RequestId?: string;
655
672
  }
673
+ /**
674
+ * RocketMQ专享集群实例配置
675
+ */
676
+ export interface RocketMQInstanceConfig {
677
+ /**
678
+ * 单命名空间TPS上线
679
+ */
680
+ MaxTpsPerNamespace: number;
681
+ /**
682
+ * 最大命名空间数量
683
+ */
684
+ MaxNamespaceNum: number;
685
+ /**
686
+ * 已使用命名空间数量
687
+ */
688
+ UsedNamespaceNum: number;
689
+ /**
690
+ * 最大Topic数量
691
+ */
692
+ MaxTopicNum: number;
693
+ /**
694
+ * 已使用Topic数量
695
+ */
696
+ UsedTopicNum: number;
697
+ /**
698
+ * 最大Group数量
699
+ */
700
+ MaxGroupNum: number;
701
+ /**
702
+ * 已使用Group数量
703
+ */
704
+ UsedGroupNum: number;
705
+ /**
706
+ * 集群类型
707
+ */
708
+ ConfigDisplay: string;
709
+ /**
710
+ * 集群节点数
711
+ */
712
+ NodeCount: number;
713
+ /**
714
+ * 节点分布情况
715
+ */
716
+ NodeDistribution: Array<InstanceNodeDistribution>;
717
+ /**
718
+ * topic分布情况
719
+ */
720
+ TopicDistribution: Array<RocketMQTopicDistribution>;
721
+ }
656
722
  /**
657
723
  * DescribeBindVpcs返回参数结构体
658
724
  */
@@ -909,6 +975,15 @@ export interface AMQPClusterRecentStats {
909
975
  */
910
976
  ExchangeNum: number;
911
977
  }
978
+ /**
979
+ * DescribeRocketMQVipInstanceDetail请求参数结构体
980
+ */
981
+ export interface DescribeRocketMQVipInstanceDetailRequest {
982
+ /**
983
+ * 集群ID
984
+ */
985
+ ClusterId: string;
986
+ }
912
987
  /**
913
988
  * DeleteCmqTopic返回参数结构体
914
989
  */
@@ -2143,17 +2218,17 @@ export interface DeleteAMQPClusterRequest {
2143
2218
  ClusterId: string;
2144
2219
  }
2145
2220
  /**
2146
- * DescribeTopics返回参数结构体
2221
+ * DescribeRocketMQVipInstanceDetail返回参数结构体
2147
2222
  */
2148
- export interface DescribeTopicsResponse {
2223
+ export interface DescribeRocketMQVipInstanceDetailResponse {
2149
2224
  /**
2150
- * 主题集合数组。
2225
+ * 集群信息
2151
2226
  */
2152
- TopicSets: Array<Topic>;
2227
+ ClusterInfo: RocketMQClusterInfo;
2153
2228
  /**
2154
- * 主题数量。
2229
+ * 集群配置
2155
2230
  */
2156
- TotalCount: number;
2231
+ InstanceConfig: RocketMQInstanceConfig;
2157
2232
  /**
2158
2233
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2159
2234
  */
@@ -5126,6 +5201,32 @@ export interface DescribeRocketMQClustersResponse {
5126
5201
  */
5127
5202
  RequestId?: string;
5128
5203
  }
5204
+ /**
5205
+ * RocketMQtopic分布情况
5206
+ */
5207
+ export interface RocketMQTopicDistribution {
5208
+ /**
5209
+ * topic类型
5210
+ */
5211
+ TopicType: string;
5212
+ /**
5213
+ * topic数量
5214
+ */
5215
+ Count: number;
5216
+ }
5217
+ /**
5218
+ * 排序器
5219
+ */
5220
+ export interface Sort {
5221
+ /**
5222
+ * 排序字段
5223
+ */
5224
+ Name: string;
5225
+ /**
5226
+ * 升序ASC,降序DESC
5227
+ */
5228
+ Order: string;
5229
+ }
5129
5230
  /**
5130
5231
  * CreateRole请求参数结构体
5131
5232
  */
@@ -5240,17 +5341,21 @@ export interface ModifyAMQPClusterResponse {
5240
5341
  RequestId?: string;
5241
5342
  }
5242
5343
  /**
5243
- * 排序器
5344
+ * DescribeTopics返回参数结构体
5244
5345
  */
5245
- export interface Sort {
5346
+ export interface DescribeTopicsResponse {
5246
5347
  /**
5247
- * 排序字段
5348
+ * 主题集合数组。
5248
5349
  */
5249
- Name: string;
5350
+ TopicSets: Array<Topic>;
5250
5351
  /**
5251
- * 升序ASC,降序DESC
5352
+ * 主题数量。
5252
5353
  */
5253
- Order: string;
5354
+ TotalCount: number;
5355
+ /**
5356
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5357
+ */
5358
+ RequestId?: string;
5254
5359
  }
5255
5360
  /**
5256
5361
  * AMQP集群配置