tencentcloud-sdk-nodejs-tdmq 4.0.248 → 4.0.255
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 +1395 -76
- package/package.json +1 -1
- package/products.md +59 -58
- package/src/services/tdmq/v20200217/tdmq_client.ts +15 -2
- package/src/services/tdmq/v20200217/tdmq_models.ts +556 -146
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +5 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +6 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +434 -94
|
@@ -142,7 +142,28 @@ export interface DescribeNamespaceBundlesOptRequest {
|
|
|
142
142
|
/**
|
|
143
143
|
* RocketMQ命名空间信息
|
|
144
144
|
*/
|
|
145
|
-
export
|
|
145
|
+
export interface RocketMQNamespace {
|
|
146
|
+
/**
|
|
147
|
+
* 命名空间名称,3-64个字符,只能包含字母、数字、“-”及“_”
|
|
148
|
+
*/
|
|
149
|
+
NamespaceId: string
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* 未消费消息的保留时间,以毫秒单位,范围60秒到15天
|
|
153
|
+
*/
|
|
154
|
+
Ttl: number
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* 消息持久化后保留的时间,以毫秒单位
|
|
158
|
+
*/
|
|
159
|
+
RetentionTime: number
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* 说明
|
|
163
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
164
|
+
*/
|
|
165
|
+
Remark: string
|
|
166
|
+
}
|
|
146
167
|
|
|
147
168
|
/**
|
|
148
169
|
* DescribeSubscriptions请求参数结构体
|
|
@@ -429,7 +450,27 @@ export interface ModifyClusterResponse {
|
|
|
429
450
|
/**
|
|
430
451
|
* RocketMQ近期使用量
|
|
431
452
|
*/
|
|
432
|
-
export
|
|
453
|
+
export interface RocketMQClusterRecentStats {
|
|
454
|
+
/**
|
|
455
|
+
* Topic数量
|
|
456
|
+
*/
|
|
457
|
+
TopicNum: number
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* 消息生产数
|
|
461
|
+
*/
|
|
462
|
+
ProducedMsgNum: number
|
|
463
|
+
|
|
464
|
+
/**
|
|
465
|
+
* 消息消费数
|
|
466
|
+
*/
|
|
467
|
+
ConsumedMsgNum: number
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* 消息堆积数
|
|
471
|
+
*/
|
|
472
|
+
AccumulativeMsgNum: number
|
|
473
|
+
}
|
|
433
474
|
|
|
434
475
|
/**
|
|
435
476
|
* DescribeCmqQueues返回参数结构体
|
|
@@ -452,6 +493,26 @@ export interface DescribeCmqQueuesResponse {
|
|
|
452
493
|
RequestId?: string
|
|
453
494
|
}
|
|
454
495
|
|
|
496
|
+
/**
|
|
497
|
+
* DescribeAllTenants返回参数结构体
|
|
498
|
+
*/
|
|
499
|
+
export interface DescribeAllTenantsResponse {
|
|
500
|
+
/**
|
|
501
|
+
* 总条数
|
|
502
|
+
*/
|
|
503
|
+
TotalCount: number
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* 虚拟集群列表
|
|
507
|
+
*/
|
|
508
|
+
Tenants: Array<InternalTenant>
|
|
509
|
+
|
|
510
|
+
/**
|
|
511
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
512
|
+
*/
|
|
513
|
+
RequestId?: string
|
|
514
|
+
}
|
|
515
|
+
|
|
455
516
|
/**
|
|
456
517
|
* DescribeNamespaceBundlesOpt返回参数结构体
|
|
457
518
|
*/
|
|
@@ -667,7 +728,75 @@ export interface DeleteRocketMQGroupRequest {
|
|
|
667
728
|
/**
|
|
668
729
|
* RocketMQ消费组信息
|
|
669
730
|
*/
|
|
670
|
-
export
|
|
731
|
+
export interface RocketMQGroup {
|
|
732
|
+
/**
|
|
733
|
+
* 消费组名称
|
|
734
|
+
*/
|
|
735
|
+
Name: string
|
|
736
|
+
|
|
737
|
+
/**
|
|
738
|
+
* 在线消费者数量
|
|
739
|
+
*/
|
|
740
|
+
ConsumerNum: number
|
|
741
|
+
|
|
742
|
+
/**
|
|
743
|
+
* 消费TPS
|
|
744
|
+
*/
|
|
745
|
+
TPS: number
|
|
746
|
+
|
|
747
|
+
/**
|
|
748
|
+
* 总堆积数量
|
|
749
|
+
*/
|
|
750
|
+
TotalAccumulative: number
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* 0表示集群消费模式,1表示广播消费模式,-1表示未知
|
|
754
|
+
*/
|
|
755
|
+
ConsumptionMode: number
|
|
756
|
+
|
|
757
|
+
/**
|
|
758
|
+
* 是否允许消费
|
|
759
|
+
*/
|
|
760
|
+
ReadEnabled: boolean
|
|
761
|
+
|
|
762
|
+
/**
|
|
763
|
+
* 重试队列分区数
|
|
764
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
765
|
+
*/
|
|
766
|
+
RetryPartitionNum: number
|
|
767
|
+
|
|
768
|
+
/**
|
|
769
|
+
* 创建时间,以毫秒为单位
|
|
770
|
+
*/
|
|
771
|
+
CreateTime: number
|
|
772
|
+
|
|
773
|
+
/**
|
|
774
|
+
* 修改时间,以毫秒为单位
|
|
775
|
+
*/
|
|
776
|
+
UpdateTime: number
|
|
777
|
+
|
|
778
|
+
/**
|
|
779
|
+
* 客户端协议
|
|
780
|
+
*/
|
|
781
|
+
ClientProtocol: string
|
|
782
|
+
|
|
783
|
+
/**
|
|
784
|
+
* 说明信息
|
|
785
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
786
|
+
*/
|
|
787
|
+
Remark: string
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* 消费者类型,枚举值ACTIVELY, PASSIVELY
|
|
791
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
792
|
+
*/
|
|
793
|
+
ConsumerType: string
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* 是否开启广播消费
|
|
797
|
+
*/
|
|
798
|
+
BroadcastEnabled: boolean
|
|
799
|
+
}
|
|
671
800
|
|
|
672
801
|
/**
|
|
673
802
|
* AMQP集群近期使用量
|
|
@@ -1433,6 +1562,111 @@ export interface ModifyRocketMQClusterResponse {
|
|
|
1433
1562
|
RequestId?: string
|
|
1434
1563
|
}
|
|
1435
1564
|
|
|
1565
|
+
/**
|
|
1566
|
+
* 订阅者
|
|
1567
|
+
*/
|
|
1568
|
+
export interface Subscription {
|
|
1569
|
+
/**
|
|
1570
|
+
* 主题名称。
|
|
1571
|
+
*/
|
|
1572
|
+
TopicName: string
|
|
1573
|
+
|
|
1574
|
+
/**
|
|
1575
|
+
* 环境(命名空间)名称。
|
|
1576
|
+
*/
|
|
1577
|
+
EnvironmentId: string
|
|
1578
|
+
|
|
1579
|
+
/**
|
|
1580
|
+
* 消费者开始连接的时间。
|
|
1581
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1582
|
+
*/
|
|
1583
|
+
ConnectedSince: string
|
|
1584
|
+
|
|
1585
|
+
/**
|
|
1586
|
+
* 消费者地址。
|
|
1587
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1588
|
+
*/
|
|
1589
|
+
ConsumerAddr: string
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* 消费者数量。
|
|
1593
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1594
|
+
*/
|
|
1595
|
+
ConsumerCount: string
|
|
1596
|
+
|
|
1597
|
+
/**
|
|
1598
|
+
* 消费者名称。
|
|
1599
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1600
|
+
*/
|
|
1601
|
+
ConsumerName: string
|
|
1602
|
+
|
|
1603
|
+
/**
|
|
1604
|
+
* 堆积的消息数量。
|
|
1605
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1606
|
+
*/
|
|
1607
|
+
MsgBacklog: string
|
|
1608
|
+
|
|
1609
|
+
/**
|
|
1610
|
+
* 于TTL,此订阅下没有被发送而是被丢弃的比例。
|
|
1611
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1612
|
+
*/
|
|
1613
|
+
MsgRateExpired: string
|
|
1614
|
+
|
|
1615
|
+
/**
|
|
1616
|
+
* 消费者每秒分发消息的数量之和。
|
|
1617
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1618
|
+
*/
|
|
1619
|
+
MsgRateOut: string
|
|
1620
|
+
|
|
1621
|
+
/**
|
|
1622
|
+
* 消费者每秒消息的byte。
|
|
1623
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1624
|
+
*/
|
|
1625
|
+
MsgThroughputOut: string
|
|
1626
|
+
|
|
1627
|
+
/**
|
|
1628
|
+
* 订阅名称。
|
|
1629
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1630
|
+
*/
|
|
1631
|
+
SubscriptionName: string
|
|
1632
|
+
|
|
1633
|
+
/**
|
|
1634
|
+
* 消费者集合。
|
|
1635
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1636
|
+
*/
|
|
1637
|
+
ConsumerSets: Array<Consumer>
|
|
1638
|
+
|
|
1639
|
+
/**
|
|
1640
|
+
* 是否在线。
|
|
1641
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1642
|
+
*/
|
|
1643
|
+
IsOnline: boolean
|
|
1644
|
+
|
|
1645
|
+
/**
|
|
1646
|
+
* 消费进度集合。
|
|
1647
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1648
|
+
*/
|
|
1649
|
+
ConsumersScheduleSets: Array<ConsumersSchedule>
|
|
1650
|
+
|
|
1651
|
+
/**
|
|
1652
|
+
* 备注。
|
|
1653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1654
|
+
*/
|
|
1655
|
+
Remark: string
|
|
1656
|
+
|
|
1657
|
+
/**
|
|
1658
|
+
* 创建时间。
|
|
1659
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1660
|
+
*/
|
|
1661
|
+
CreateTime: string
|
|
1662
|
+
|
|
1663
|
+
/**
|
|
1664
|
+
* 最近修改时间。
|
|
1665
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1666
|
+
*/
|
|
1667
|
+
UpdateTime: string
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1436
1670
|
/**
|
|
1437
1671
|
* DescribeCmqQueueDetail返回参数结构体
|
|
1438
1672
|
*/
|
|
@@ -1561,7 +1795,33 @@ export interface DescribeClustersRequest {
|
|
|
1561
1795
|
/**
|
|
1562
1796
|
* RocketMQ主题信息
|
|
1563
1797
|
*/
|
|
1564
|
-
export
|
|
1798
|
+
export interface RocketMQTopic {
|
|
1799
|
+
/**
|
|
1800
|
+
* 主题名称
|
|
1801
|
+
*/
|
|
1802
|
+
Name: string
|
|
1803
|
+
|
|
1804
|
+
/**
|
|
1805
|
+
* 说明
|
|
1806
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1807
|
+
*/
|
|
1808
|
+
Remark: string
|
|
1809
|
+
|
|
1810
|
+
/**
|
|
1811
|
+
* 读写分区数
|
|
1812
|
+
*/
|
|
1813
|
+
PartitionNum: number
|
|
1814
|
+
|
|
1815
|
+
/**
|
|
1816
|
+
* 创建时间,以毫秒为单位
|
|
1817
|
+
*/
|
|
1818
|
+
CreateTime: number
|
|
1819
|
+
|
|
1820
|
+
/**
|
|
1821
|
+
* 创建时间,以毫秒为单位
|
|
1822
|
+
*/
|
|
1823
|
+
UpdateTime: number
|
|
1824
|
+
}
|
|
1565
1825
|
|
|
1566
1826
|
/**
|
|
1567
1827
|
* DescribeRocketMQCluster返回参数结构体
|
|
@@ -2102,155 +2362,60 @@ export interface DescribeRocketMQClusterRequest {
|
|
|
2102
2362
|
* DeleteRocketMQTopic返回参数结构体
|
|
2103
2363
|
*/
|
|
2104
2364
|
export interface DeleteRocketMQTopicResponse {
|
|
2105
|
-
/**
|
|
2106
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2107
|
-
*/
|
|
2108
|
-
RequestId?: string
|
|
2109
|
-
}
|
|
2110
|
-
|
|
2111
|
-
/**
|
|
2112
|
-
* ModifyCmqTopicAttribute请求参数结构体
|
|
2113
|
-
*/
|
|
2114
|
-
export interface ModifyCmqTopicAttributeRequest {
|
|
2115
|
-
/**
|
|
2116
|
-
* 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
|
2117
|
-
*/
|
|
2118
|
-
TopicName: string
|
|
2119
|
-
|
|
2120
|
-
/**
|
|
2121
|
-
* 消息最大长度。取值范围1024 - 65536 Byte(即1 - 64K),默认值65536。
|
|
2122
|
-
*/
|
|
2123
|
-
MaxMsgSize?: number
|
|
2124
|
-
|
|
2125
|
-
/**
|
|
2126
|
-
* 消息保存时间。取值范围60 - 86400 s(即1分钟 - 1天),默认值86400。
|
|
2127
|
-
*/
|
|
2128
|
-
MsgRetentionSeconds?: number
|
|
2129
|
-
|
|
2130
|
-
/**
|
|
2131
|
-
* 是否开启消息轨迹标识,true表示开启,false表示不开启,不填表示不开启。
|
|
2132
|
-
*/
|
|
2133
|
-
Trace?: boolean
|
|
2134
|
-
}
|
|
2135
|
-
|
|
2136
|
-
/**
|
|
2137
|
-
* DeleteRoles请求参数结构体
|
|
2138
|
-
*/
|
|
2139
|
-
export interface DeleteRolesRequest {
|
|
2140
|
-
/**
|
|
2141
|
-
* 角色名称数组。
|
|
2142
|
-
*/
|
|
2143
|
-
RoleNames: Array<string>
|
|
2144
|
-
|
|
2145
|
-
/**
|
|
2146
|
-
* 必填字段,集群Id
|
|
2147
|
-
*/
|
|
2148
|
-
ClusterId?: string
|
|
2149
|
-
}
|
|
2150
|
-
|
|
2151
|
-
/**
|
|
2152
|
-
* 订阅者
|
|
2153
|
-
*/
|
|
2154
|
-
export interface Subscription {
|
|
2155
|
-
/**
|
|
2156
|
-
* 主题名称。
|
|
2157
|
-
*/
|
|
2158
|
-
TopicName: string
|
|
2159
|
-
|
|
2160
|
-
/**
|
|
2161
|
-
* 环境(命名空间)名称。
|
|
2162
|
-
*/
|
|
2163
|
-
EnvironmentId: string
|
|
2164
|
-
|
|
2165
|
-
/**
|
|
2166
|
-
* 消费者开始连接的时间。
|
|
2167
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2168
|
-
*/
|
|
2169
|
-
ConnectedSince: string
|
|
2170
|
-
|
|
2171
|
-
/**
|
|
2172
|
-
* 消费者地址。
|
|
2173
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2174
|
-
*/
|
|
2175
|
-
ConsumerAddr: string
|
|
2176
|
-
|
|
2177
|
-
/**
|
|
2178
|
-
* 消费者数量。
|
|
2179
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2180
|
-
*/
|
|
2181
|
-
ConsumerCount: string
|
|
2182
|
-
|
|
2183
|
-
/**
|
|
2184
|
-
* 消费者名称。
|
|
2185
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2186
|
-
*/
|
|
2187
|
-
ConsumerName: string
|
|
2188
|
-
|
|
2189
|
-
/**
|
|
2190
|
-
* 堆积的消息数量。
|
|
2191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2192
|
-
*/
|
|
2193
|
-
MsgBacklog: string
|
|
2194
|
-
|
|
2195
|
-
/**
|
|
2196
|
-
* 于TTL,此订阅下没有被发送而是被丢弃的比例。
|
|
2197
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2198
|
-
*/
|
|
2199
|
-
MsgRateExpired: string
|
|
2200
|
-
|
|
2201
|
-
/**
|
|
2202
|
-
* 消费者每秒分发消息的数量之和。
|
|
2203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2204
|
-
*/
|
|
2205
|
-
MsgRateOut: string
|
|
2206
|
-
|
|
2207
|
-
/**
|
|
2208
|
-
* 消费者每秒消息的byte。
|
|
2209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2210
|
-
*/
|
|
2211
|
-
MsgThroughputOut: string
|
|
2365
|
+
/**
|
|
2366
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2367
|
+
*/
|
|
2368
|
+
RequestId?: string
|
|
2369
|
+
}
|
|
2212
2370
|
|
|
2371
|
+
/**
|
|
2372
|
+
* ModifyCmqTopicAttribute请求参数结构体
|
|
2373
|
+
*/
|
|
2374
|
+
export interface ModifyCmqTopicAttributeRequest {
|
|
2213
2375
|
/**
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
SubscriptionName: string
|
|
2376
|
+
* 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
|
2377
|
+
*/
|
|
2378
|
+
TopicName: string
|
|
2218
2379
|
|
|
2219
2380
|
/**
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
ConsumerSets: Array<Consumer>
|
|
2381
|
+
* 消息最大长度。取值范围1024 - 65536 Byte(即1 - 64K),默认值65536。
|
|
2382
|
+
*/
|
|
2383
|
+
MaxMsgSize?: number
|
|
2224
2384
|
|
|
2225
2385
|
/**
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
IsOnline: boolean
|
|
2386
|
+
* 消息保存时间。取值范围60 - 86400 s(即1分钟 - 1天),默认值86400。
|
|
2387
|
+
*/
|
|
2388
|
+
MsgRetentionSeconds?: number
|
|
2230
2389
|
|
|
2231
2390
|
/**
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2391
|
+
* 是否开启消息轨迹标识,true表示开启,false表示不开启,不填表示不开启。
|
|
2392
|
+
*/
|
|
2393
|
+
Trace?: boolean
|
|
2394
|
+
}
|
|
2236
2395
|
|
|
2396
|
+
/**
|
|
2397
|
+
* DeleteRoles请求参数结构体
|
|
2398
|
+
*/
|
|
2399
|
+
export interface DeleteRolesRequest {
|
|
2237
2400
|
/**
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
Remark: string
|
|
2401
|
+
* 角色名称数组。
|
|
2402
|
+
*/
|
|
2403
|
+
RoleNames: Array<string>
|
|
2242
2404
|
|
|
2243
2405
|
/**
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2406
|
+
* 必填字段,集群Id
|
|
2407
|
+
*/
|
|
2408
|
+
ClusterId?: string
|
|
2409
|
+
}
|
|
2248
2410
|
|
|
2411
|
+
/**
|
|
2412
|
+
* ModifyRocketMQTopic返回参数结构体
|
|
2413
|
+
*/
|
|
2414
|
+
export interface ModifyRocketMQTopicResponse {
|
|
2249
2415
|
/**
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
UpdateTime: string
|
|
2416
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2417
|
+
*/
|
|
2418
|
+
RequestId?: string
|
|
2254
2419
|
}
|
|
2255
2420
|
|
|
2256
2421
|
/**
|
|
@@ -3129,7 +3294,43 @@ export interface ModifyRocketMQTopicRequest {
|
|
|
3129
3294
|
/**
|
|
3130
3295
|
* RocketMQ集群基本信息
|
|
3131
3296
|
*/
|
|
3132
|
-
export
|
|
3297
|
+
export interface RocketMQClusterInfo {
|
|
3298
|
+
/**
|
|
3299
|
+
* 集群ID
|
|
3300
|
+
*/
|
|
3301
|
+
ClusterId: string
|
|
3302
|
+
|
|
3303
|
+
/**
|
|
3304
|
+
* 集群名称
|
|
3305
|
+
*/
|
|
3306
|
+
ClusterName: string
|
|
3307
|
+
|
|
3308
|
+
/**
|
|
3309
|
+
* 地域信息
|
|
3310
|
+
*/
|
|
3311
|
+
Region: string
|
|
3312
|
+
|
|
3313
|
+
/**
|
|
3314
|
+
* 创建时间,毫秒为单位
|
|
3315
|
+
*/
|
|
3316
|
+
CreateTime: number
|
|
3317
|
+
|
|
3318
|
+
/**
|
|
3319
|
+
* 集群说明信息
|
|
3320
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3321
|
+
*/
|
|
3322
|
+
Remark: string
|
|
3323
|
+
|
|
3324
|
+
/**
|
|
3325
|
+
* 公网接入地址
|
|
3326
|
+
*/
|
|
3327
|
+
PublicEndPoint: string
|
|
3328
|
+
|
|
3329
|
+
/**
|
|
3330
|
+
* VPC接入地址
|
|
3331
|
+
*/
|
|
3332
|
+
VpcEndPoint: string
|
|
3333
|
+
}
|
|
3133
3334
|
|
|
3134
3335
|
/**
|
|
3135
3336
|
* DescribeRocketMQTopics返回参数结构体
|
|
@@ -3179,7 +3380,23 @@ export interface CreateAMQPVHostRequest {
|
|
|
3179
3380
|
/**
|
|
3180
3381
|
* 租户RocketMQ集群详细信息
|
|
3181
3382
|
*/
|
|
3182
|
-
export
|
|
3383
|
+
export interface RocketMQClusterDetail {
|
|
3384
|
+
/**
|
|
3385
|
+
* 集群基本信息
|
|
3386
|
+
*/
|
|
3387
|
+
Info: RocketMQClusterInfo
|
|
3388
|
+
|
|
3389
|
+
/**
|
|
3390
|
+
* 集群配置信息
|
|
3391
|
+
*/
|
|
3392
|
+
Config: RocketMQClusterConfig
|
|
3393
|
+
|
|
3394
|
+
/**
|
|
3395
|
+
* 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
|
|
3396
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3397
|
+
*/
|
|
3398
|
+
Status: number
|
|
3399
|
+
}
|
|
3183
3400
|
|
|
3184
3401
|
/**
|
|
3185
3402
|
* DeleteRocketMQGroup返回参数结构体
|
|
@@ -4100,7 +4317,52 @@ export interface DescribeAMQPClustersResponse {
|
|
|
4100
4317
|
/**
|
|
4101
4318
|
* RocketMQ集群配置
|
|
4102
4319
|
*/
|
|
4103
|
-
export
|
|
4320
|
+
export interface RocketMQClusterConfig {
|
|
4321
|
+
/**
|
|
4322
|
+
* 单命名空间TPS上线
|
|
4323
|
+
*/
|
|
4324
|
+
MaxTpsPerNamespace: number
|
|
4325
|
+
|
|
4326
|
+
/**
|
|
4327
|
+
* 最大命名空间数量
|
|
4328
|
+
*/
|
|
4329
|
+
MaxNamespaceNum: number
|
|
4330
|
+
|
|
4331
|
+
/**
|
|
4332
|
+
* 已使用命名空间数量
|
|
4333
|
+
*/
|
|
4334
|
+
UsedNamespaceNum: number
|
|
4335
|
+
|
|
4336
|
+
/**
|
|
4337
|
+
* 最大Topic数量
|
|
4338
|
+
*/
|
|
4339
|
+
MaxTopicNum: number
|
|
4340
|
+
|
|
4341
|
+
/**
|
|
4342
|
+
* 已使用Topic数量
|
|
4343
|
+
*/
|
|
4344
|
+
UsedTopicNum: number
|
|
4345
|
+
|
|
4346
|
+
/**
|
|
4347
|
+
* 最大Group数量
|
|
4348
|
+
*/
|
|
4349
|
+
MaxGroupNum: number
|
|
4350
|
+
|
|
4351
|
+
/**
|
|
4352
|
+
* 已使用Group数量
|
|
4353
|
+
*/
|
|
4354
|
+
UsedGroupNum: number
|
|
4355
|
+
|
|
4356
|
+
/**
|
|
4357
|
+
* 消息最大保留时间,以毫秒为单位
|
|
4358
|
+
*/
|
|
4359
|
+
MaxRetentionTime: number
|
|
4360
|
+
|
|
4361
|
+
/**
|
|
4362
|
+
* 消息最长延时,以毫秒为单位
|
|
4363
|
+
*/
|
|
4364
|
+
MaxLatencyTime: number
|
|
4365
|
+
}
|
|
4104
4366
|
|
|
4105
4367
|
/**
|
|
4106
4368
|
* DescribeCmqDeadLetterSourceQueues返回参数结构体
|
|
@@ -4581,6 +4843,119 @@ export interface DeleteRocketMQClusterRequest {
|
|
|
4581
4843
|
ClusterId: string
|
|
4582
4844
|
}
|
|
4583
4845
|
|
|
4846
|
+
/**
|
|
4847
|
+
* 面向运营端的虚拟集群信息
|
|
4848
|
+
*/
|
|
4849
|
+
export interface InternalTenant {
|
|
4850
|
+
/**
|
|
4851
|
+
* 虚拟集群ID
|
|
4852
|
+
*/
|
|
4853
|
+
TenantId: string
|
|
4854
|
+
|
|
4855
|
+
/**
|
|
4856
|
+
* 虚拟集群名称
|
|
4857
|
+
*/
|
|
4858
|
+
TenantName: string
|
|
4859
|
+
|
|
4860
|
+
/**
|
|
4861
|
+
* 客户UIN
|
|
4862
|
+
*/
|
|
4863
|
+
CustomerUin: string
|
|
4864
|
+
|
|
4865
|
+
/**
|
|
4866
|
+
* 客户的APPID
|
|
4867
|
+
*/
|
|
4868
|
+
CustomerAppId: string
|
|
4869
|
+
|
|
4870
|
+
/**
|
|
4871
|
+
* 物理集群名称
|
|
4872
|
+
*/
|
|
4873
|
+
ClusterName: string
|
|
4874
|
+
|
|
4875
|
+
/**
|
|
4876
|
+
* 集群协议类型,支持的值为TDMQ,ROCKETMQ,AMQP,CMQ
|
|
4877
|
+
*/
|
|
4878
|
+
Type: string
|
|
4879
|
+
|
|
4880
|
+
/**
|
|
4881
|
+
* 命名空间配额
|
|
4882
|
+
*/
|
|
4883
|
+
MaxNamespaces: number
|
|
4884
|
+
|
|
4885
|
+
/**
|
|
4886
|
+
* 已使用命名空间配额
|
|
4887
|
+
*/
|
|
4888
|
+
UsedNamespaces: number
|
|
4889
|
+
|
|
4890
|
+
/**
|
|
4891
|
+
* Topic配额
|
|
4892
|
+
*/
|
|
4893
|
+
MaxTopics: number
|
|
4894
|
+
|
|
4895
|
+
/**
|
|
4896
|
+
* 已使用Topic配额
|
|
4897
|
+
*/
|
|
4898
|
+
UsedTopics: number
|
|
4899
|
+
|
|
4900
|
+
/**
|
|
4901
|
+
* Topic分区数配额
|
|
4902
|
+
*/
|
|
4903
|
+
MaxPartitions: number
|
|
4904
|
+
|
|
4905
|
+
/**
|
|
4906
|
+
* 已使用Topic分区数配额
|
|
4907
|
+
*/
|
|
4908
|
+
UsedPartitions: number
|
|
4909
|
+
|
|
4910
|
+
/**
|
|
4911
|
+
* 存储配额, byte为单位
|
|
4912
|
+
*/
|
|
4913
|
+
MaxMsgBacklogSize: number
|
|
4914
|
+
|
|
4915
|
+
/**
|
|
4916
|
+
* 命名空间最大生产TPS
|
|
4917
|
+
*/
|
|
4918
|
+
MaxPublishTps: number
|
|
4919
|
+
|
|
4920
|
+
/**
|
|
4921
|
+
* 消息最大保留时间,秒为单位
|
|
4922
|
+
*/
|
|
4923
|
+
MaxRetention: number
|
|
4924
|
+
|
|
4925
|
+
/**
|
|
4926
|
+
* 创建时间,毫秒为单位
|
|
4927
|
+
*/
|
|
4928
|
+
CreateTime: number
|
|
4929
|
+
|
|
4930
|
+
/**
|
|
4931
|
+
* 修改时间,毫秒为单位
|
|
4932
|
+
*/
|
|
4933
|
+
UpdateTime: number
|
|
4934
|
+
|
|
4935
|
+
/**
|
|
4936
|
+
* 命名空间最大消费TPS
|
|
4937
|
+
*/
|
|
4938
|
+
MaxDispatchTps: number
|
|
4939
|
+
|
|
4940
|
+
/**
|
|
4941
|
+
* 命名空间最大消费带宽,byte为单位
|
|
4942
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4943
|
+
*/
|
|
4944
|
+
MaxDispatchRateInBytes: number
|
|
4945
|
+
|
|
4946
|
+
/**
|
|
4947
|
+
* 命名空间最大生产带宽,byte为单位
|
|
4948
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4949
|
+
*/
|
|
4950
|
+
MaxPublishRateInBytes: number
|
|
4951
|
+
|
|
4952
|
+
/**
|
|
4953
|
+
* 消息最大保留空间,MB为单位
|
|
4954
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4955
|
+
*/
|
|
4956
|
+
MaxRetentionSizeInMB: number
|
|
4957
|
+
}
|
|
4958
|
+
|
|
4584
4959
|
/**
|
|
4585
4960
|
* DescribeEnvironmentAttributes请求参数结构体
|
|
4586
4961
|
*/
|
|
@@ -5771,11 +6146,46 @@ export interface DeleteAMQPVHostResponse {
|
|
|
5771
6146
|
}
|
|
5772
6147
|
|
|
5773
6148
|
/**
|
|
5774
|
-
*
|
|
6149
|
+
* DescribeAllTenants请求参数结构体
|
|
5775
6150
|
*/
|
|
5776
|
-
export interface
|
|
6151
|
+
export interface DescribeAllTenantsRequest {
|
|
5777
6152
|
/**
|
|
5778
|
-
*
|
|
6153
|
+
* 查询偏移量
|
|
5779
6154
|
*/
|
|
5780
|
-
|
|
6155
|
+
Offset: number
|
|
6156
|
+
|
|
6157
|
+
/**
|
|
6158
|
+
* 查询限制条数
|
|
6159
|
+
*/
|
|
6160
|
+
Limit: number
|
|
6161
|
+
|
|
6162
|
+
/**
|
|
6163
|
+
* 物理集群名称
|
|
6164
|
+
*/
|
|
6165
|
+
ClusterName?: string
|
|
6166
|
+
|
|
6167
|
+
/**
|
|
6168
|
+
* 虚拟集群ID
|
|
6169
|
+
*/
|
|
6170
|
+
TenantId?: string
|
|
6171
|
+
|
|
6172
|
+
/**
|
|
6173
|
+
* 虚拟集群名称
|
|
6174
|
+
*/
|
|
6175
|
+
TenantName?: string
|
|
6176
|
+
|
|
6177
|
+
/**
|
|
6178
|
+
* 协议类型数组
|
|
6179
|
+
*/
|
|
6180
|
+
Types?: Array<string>
|
|
6181
|
+
|
|
6182
|
+
/**
|
|
6183
|
+
* 排序字段名,支持createTime,updateTime
|
|
6184
|
+
*/
|
|
6185
|
+
SortBy?: string
|
|
6186
|
+
|
|
6187
|
+
/**
|
|
6188
|
+
* 升序排列ASC,降序排列DESC
|
|
6189
|
+
*/
|
|
6190
|
+
SortOrder?: string
|
|
5781
6191
|
}
|