tencentcloud-sdk-nodejs-tdmq 4.0.653 → 4.0.655

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.
@@ -576,17 +576,21 @@ export interface BindCluster {
576
576
  }
577
577
 
578
578
  /**
579
- * 排序器
579
+ * ModifyRole返回参数结构体
580
580
  */
581
- export interface Sort {
581
+ export interface ModifyRoleResponse {
582
582
  /**
583
- * 排序字段
583
+ * 角色名称
584
584
  */
585
- Name: string
585
+ RoleName: string
586
586
  /**
587
- * 升序ASC,降序DESC
587
+ * 备注说明
588
588
  */
589
- Order: string
589
+ Remark: string
590
+ /**
591
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
592
+ */
593
+ RequestId?: string
590
594
  }
591
595
 
592
596
  /**
@@ -1058,66 +1062,71 @@ export interface CmqSubscription {
1058
1062
  * 订阅名字,在单个地域同一帐号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
1059
1063
  注意:此字段可能返回 null,表示取不到有效值。
1060
1064
  */
1061
- SubscriptionName: string
1065
+ SubscriptionName?: string
1062
1066
  /**
1063
1067
  * 订阅 ID。订阅 ID 在拉取监控数据时会用到。
1064
1068
  注意:此字段可能返回 null,表示取不到有效值。
1065
1069
  */
1066
- SubscriptionId: string
1070
+ SubscriptionId?: string
1067
1071
  /**
1068
1072
  * 订阅拥有者的 APPID。
1069
1073
  注意:此字段可能返回 null,表示取不到有效值。
1070
1074
  */
1071
- TopicOwner: number
1075
+ TopicOwner?: number
1072
1076
  /**
1073
1077
  * 该订阅待投递的消息数。
1074
1078
  注意:此字段可能返回 null,表示取不到有效值。
1075
1079
  */
1076
- MsgCount: number
1080
+ MsgCount?: number
1077
1081
  /**
1078
1082
  * 最后一次修改订阅属性的时间。返回 Unix 时间戳,精确到毫秒。
1079
1083
  注意:此字段可能返回 null,表示取不到有效值。
1080
1084
  */
1081
- LastModifyTime: number
1085
+ LastModifyTime?: number
1082
1086
  /**
1083
1087
  * 订阅的创建时间。返回 Unix 时间戳,精确到毫秒。
1084
1088
  注意:此字段可能返回 null,表示取不到有效值。
1085
1089
  */
1086
- CreateTime: number
1090
+ CreateTime?: number
1087
1091
  /**
1088
1092
  * 表示订阅接收消息的过滤策略。
1089
1093
  注意:此字段可能返回 null,表示取不到有效值。
1090
1094
  */
1091
- BindingKey: Array<string>
1095
+ BindingKey?: Array<string>
1092
1096
  /**
1093
1097
  * 接收通知的 endpoint,根据协议 protocol 区分:对于 HTTP,endpoint 必须以http://开头,host 可以是域名或 IP;对于 queue,则填 queueName。
1094
1098
  注意:此字段可能返回 null,表示取不到有效值。
1095
1099
  */
1096
- Endpoint: string
1100
+ Endpoint?: string
1097
1101
  /**
1098
1102
  * 描述用户创建订阅时选择的过滤策略:
1099
1103
  filterType = 1表示用户使用 filterTag 标签过滤
1100
1104
  filterType = 2表示用户使用 bindingKey 过滤。
1101
1105
  注意:此字段可能返回 null,表示取不到有效值。
1102
1106
  */
1103
- FilterTags: Array<string>
1107
+ FilterTags?: Array<string>
1104
1108
  /**
1105
1109
  * 订阅的协议,目前支持两种协议:HTTP、queue。使用 HTTP 协议,用户需自己搭建接受消息的 Web Server。使用 queue,消息会自动推送到 CMQ queue,用户可以并发地拉取消息。
1106
1110
  注意:此字段可能返回 null,表示取不到有效值。
1107
1111
  */
1108
- Protocol: string
1112
+ Protocol?: string
1109
1113
  /**
1110
1114
  * 向 endpoint 推送消息出现错误时,CMQ 推送服务器的重试策略。取值有:
1111
1115
  (1)BACKOFF_RETRY,退避重试。每隔一定时间重试一次,重试够一定次数后,就把该消息丢弃,继续推送下一条消息;
1112
1116
  (2)EXPONENTIAL_DECAY_RETRY,指数衰退重试。每次重试的间隔是指数递增的,例如开始 1s,后面是 2s,4s,8s...由于 Topic 消息的周期是一天,所以最多重试一天就把消息丢弃。默认值是 EXPONENTIAL_DECAY_RETRY。
1113
1117
  注意:此字段可能返回 null,表示取不到有效值。
1114
1118
  */
1115
- NotifyStrategy: string
1119
+ NotifyStrategy?: string
1116
1120
  /**
1117
1121
  * 推送内容的格式。取值:(1)JSON;(2)SIMPLIFIED,即 raw 格式。如果 protocol 是 queue,则取值必须为 SIMPLIFIED。如果 protocol 是 HTTP,两个值均可以,默认值是 JSON。
1118
1122
  注意:此字段可能返回 null,表示取不到有效值。
1119
1123
  */
1120
- NotifyContentFormat: string
1124
+ NotifyContentFormat?: string
1125
+ /**
1126
+ * 订阅所属的主题名称
1127
+ 注意:此字段可能返回 null,表示取不到有效值。
1128
+ */
1129
+ TopicName?: string
1121
1130
  }
1122
1131
 
1123
1132
  /**
@@ -1209,6 +1218,20 @@ export interface RocketMQGroup {
1209
1218
  RetryMaxTimes?: number
1210
1219
  }
1211
1220
 
1221
+ /**
1222
+ * vpc信息(由UniqVpcId和UniqSubnetId组成)
1223
+ */
1224
+ export interface VpcInfo {
1225
+ /**
1226
+ * vpc信息
1227
+ */
1228
+ VpcId: string
1229
+ /**
1230
+ * 子网信息
1231
+ */
1232
+ SubnetId: string
1233
+ }
1234
+
1212
1235
  /**
1213
1236
  * ModifyRabbitMQUser请求参数结构体
1214
1237
  */
@@ -1348,6 +1371,131 @@ export interface CreateRocketMQNamespaceRequest {
1348
1371
  Remark?: string
1349
1372
  }
1350
1373
 
1374
+ /**
1375
+ * 主题实例
1376
+ */
1377
+ export interface Topic {
1378
+ /**
1379
+ * 最后一次间隔内发布消息的平均byte大小。
1380
+ 注意:此字段可能返回 null,表示取不到有效值。
1381
+ */
1382
+ AverageMsgSize: string
1383
+ /**
1384
+ * 消费者数量。
1385
+ 注意:此字段可能返回 null,表示取不到有效值。
1386
+ */
1387
+ ConsumerCount: string
1388
+ /**
1389
+ * 被记录下来的消息总数。
1390
+ 注意:此字段可能返回 null,表示取不到有效值。
1391
+ */
1392
+ LastConfirmedEntry: string
1393
+ /**
1394
+ * 最后一个ledger创建的时间。
1395
+ 注意:此字段可能返回 null,表示取不到有效值。
1396
+ */
1397
+ LastLedgerCreatedTimestamp: string
1398
+ /**
1399
+ * 本地和复制的发布者每秒发布消息的速率。
1400
+ 注意:此字段可能返回 null,表示取不到有效值。
1401
+ */
1402
+ MsgRateIn: string
1403
+ /**
1404
+ * 本地和复制的消费者每秒分发消息的数量之和。
1405
+ 注意:此字段可能返回 null,表示取不到有效值。
1406
+ */
1407
+ MsgRateOut: string
1408
+ /**
1409
+ * 本地和复制的发布者每秒发布消息的byte。
1410
+ 注意:此字段可能返回 null,表示取不到有效值。
1411
+ */
1412
+ MsgThroughputIn: string
1413
+ /**
1414
+ * 本地和复制的消费者每秒分发消息的byte。
1415
+ 注意:此字段可能返回 null,表示取不到有效值。
1416
+ */
1417
+ MsgThroughputOut: string
1418
+ /**
1419
+ * 被记录下来的消息总数。
1420
+ 注意:此字段可能返回 null,表示取不到有效值。
1421
+ */
1422
+ NumberOfEntries: string
1423
+ /**
1424
+ * 分区数<=0:topic下无子分区。
1425
+ 注意:此字段可能返回 null,表示取不到有效值。
1426
+ */
1427
+ Partitions: number
1428
+ /**
1429
+ * 生产者数量。
1430
+ 注意:此字段可能返回 null,表示取不到有效值。
1431
+ */
1432
+ ProducerCount: string
1433
+ /**
1434
+ * 以byte计算的所有消息存储总量。
1435
+ 注意:此字段可能返回 null,表示取不到有效值。
1436
+ */
1437
+ TotalSize: string
1438
+ /**
1439
+ * 分区topic里面的子分区。
1440
+ 注意:此字段可能返回 null,表示取不到有效值。
1441
+ */
1442
+ SubTopicSets: Array<PartitionsTopic>
1443
+ /**
1444
+ * topic类型描述:
1445
+ 0:普通消息;
1446
+ 1:全局顺序消息;
1447
+ 2:局部顺序消息;
1448
+ 3:重试队列;
1449
+ 4:死信队列;
1450
+ 5:事务消息。
1451
+ 注意:此字段可能返回 null,表示取不到有效值。
1452
+ */
1453
+ TopicType: number
1454
+ /**
1455
+ * 环境(命名空间)名称。
1456
+ 注意:此字段可能返回 null,表示取不到有效值。
1457
+ */
1458
+ EnvironmentId: string
1459
+ /**
1460
+ * 主题名称。
1461
+ 注意:此字段可能返回 null,表示取不到有效值。
1462
+ */
1463
+ TopicName: string
1464
+ /**
1465
+ * 说明,128个字符以内。
1466
+ 注意:此字段可能返回 null,表示取不到有效值。
1467
+ */
1468
+ Remark: string
1469
+ /**
1470
+ * 创建时间。
1471
+ 注意:此字段可能返回 null,表示取不到有效值。
1472
+ */
1473
+ CreateTime: string
1474
+ /**
1475
+ * 最近修改时间。
1476
+ 注意:此字段可能返回 null,表示取不到有效值。
1477
+ */
1478
+ UpdateTime: string
1479
+ /**
1480
+ * 生产者上限。
1481
+ 注意:此字段可能返回 null,表示取不到有效值。
1482
+ */
1483
+ ProducerLimit: string
1484
+ /**
1485
+ * 消费者上限。
1486
+ 注意:此字段可能返回 null,表示取不到有效值。
1487
+ */
1488
+ ConsumerLimit: string
1489
+ /**
1490
+ * 0: 非持久非分区
1491
+ 1: 非持久分区
1492
+ 2: 持久非分区
1493
+ 3: 持久分区
1494
+ 注意:此字段可能返回 null,表示取不到有效值。
1495
+ */
1496
+ PulsarTopicType: number
1497
+ }
1498
+
1351
1499
  /**
1352
1500
  * RabbitMQ的vhost详情
1353
1501
  */
@@ -1696,7 +1844,7 @@ export interface DescribeCmqSubscriptionDetailRequest {
1696
1844
  /**
1697
1845
  * 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
1698
1846
  */
1699
- TopicName: string
1847
+ TopicName?: string
1700
1848
  /**
1701
1849
  * 分页时本页获取主题列表的起始位置。如果填写了该值,必须也要填写 limit 。该值缺省时,后台取默认值 0
1702
1850
  */
@@ -1709,131 +1857,45 @@ export interface DescribeCmqSubscriptionDetailRequest {
1709
1857
  * 根据SubscriptionName进行模糊搜索
1710
1858
  */
1711
1859
  SubscriptionName?: string
1712
- }
1713
-
1714
- /**
1715
- * 主题实例
1716
- */
1717
- export interface Topic {
1718
- /**
1719
- * 最后一次间隔内发布消息的平均byte大小。
1720
- 注意:此字段可能返回 null,表示取不到有效值。
1721
- */
1722
- AverageMsgSize: string
1723
- /**
1724
- * 消费者数量。
1725
- 注意:此字段可能返回 null,表示取不到有效值。
1726
- */
1727
- ConsumerCount: string
1728
- /**
1729
- * 被记录下来的消息总数。
1730
- 注意:此字段可能返回 null,表示取不到有效值。
1731
- */
1732
- LastConfirmedEntry: string
1733
- /**
1734
- * 最后一个ledger创建的时间。
1735
- 注意:此字段可能返回 null,表示取不到有效值。
1736
- */
1737
- LastLedgerCreatedTimestamp: string
1738
- /**
1739
- * 本地和复制的发布者每秒发布消息的速率。
1740
- 注意:此字段可能返回 null,表示取不到有效值。
1741
- */
1742
- MsgRateIn: string
1743
- /**
1744
- * 本地和复制的消费者每秒分发消息的数量之和。
1745
- 注意:此字段可能返回 null,表示取不到有效值。
1746
- */
1747
- MsgRateOut: string
1748
- /**
1749
- * 本地和复制的发布者每秒发布消息的byte。
1750
- 注意:此字段可能返回 null,表示取不到有效值。
1751
- */
1752
- MsgThroughputIn: string
1753
- /**
1754
- * 本地和复制的消费者每秒分发消息的byte。
1755
- 注意:此字段可能返回 null,表示取不到有效值。
1756
- */
1757
- MsgThroughputOut: string
1758
- /**
1759
- * 被记录下来的消息总数。
1760
- 注意:此字段可能返回 null,表示取不到有效值。
1761
- */
1762
- NumberOfEntries: string
1763
- /**
1764
- * 分区数<=0:topic下无子分区。
1765
- 注意:此字段可能返回 null,表示取不到有效值。
1766
- */
1767
- Partitions: number
1768
1860
  /**
1769
- * 生产者数量。
1770
- 注意:此字段可能返回 null,表示取不到有效值。
1771
- */
1772
- ProducerCount: string
1773
- /**
1774
- * 以byte计算的所有消息存储总量。
1775
- 注意:此字段可能返回 null,表示取不到有效值。
1776
- */
1777
- TotalSize: string
1778
- /**
1779
- * 分区topic里面的子分区。
1780
- 注意:此字段可能返回 null,表示取不到有效值。
1781
- */
1782
- SubTopicSets: Array<PartitionsTopic>
1783
- /**
1784
- * topic类型描述:
1785
- 0:普通消息;
1786
- 1:全局顺序消息;
1787
- 2:局部顺序消息;
1788
- 3:重试队列;
1789
- 4:死信队列;
1790
- 5:事务消息。
1791
- 注意:此字段可能返回 null,表示取不到有效值。
1792
- */
1793
- TopicType: number
1794
- /**
1795
- * 环境(命名空间)名称。
1796
- 注意:此字段可能返回 null,表示取不到有效值。
1861
+ * 队列名称,订阅绑定的endpoint
1797
1862
  */
1798
- EnvironmentId: string
1799
- /**
1800
- * 主题名称。
1801
- 注意:此字段可能返回 null,表示取不到有效值。
1802
- */
1803
- TopicName: string
1863
+ QueueName?: string
1804
1864
  /**
1805
- * 说明,128个字符以内。
1806
- 注意:此字段可能返回 null,表示取不到有效值。
1865
+ * 查询类型。取值:(1)topic;(2)queue。
1866
+ 默认值是topic。如果 queryType 是 topic,则查询主题下的订阅列表;如果 queryType 是 queue,则查询队列绑定的订阅列表。
1807
1867
  */
1808
- Remark: string
1868
+ QueryType?: string
1869
+ }
1870
+
1871
+ /**
1872
+ * DescribePublisherSummary返回参数结构体
1873
+ */
1874
+ export interface DescribePublisherSummaryResponse {
1809
1875
  /**
1810
- * 创建时间。
1876
+ * 生产速率(条/秒)
1811
1877
  注意:此字段可能返回 null,表示取不到有效值。
1812
1878
  */
1813
- CreateTime: string
1879
+ MsgRateIn: number
1814
1880
  /**
1815
- * 最近修改时间。
1881
+ * 生产速率(字节/秒)
1816
1882
  注意:此字段可能返回 null,表示取不到有效值。
1817
1883
  */
1818
- UpdateTime: string
1884
+ MsgThroughputIn: number
1819
1885
  /**
1820
- * 生产者上限。
1886
+ * 生产者数量
1821
1887
  注意:此字段可能返回 null,表示取不到有效值。
1822
1888
  */
1823
- ProducerLimit: string
1889
+ PublisherCount: number
1824
1890
  /**
1825
- * 消费者上限。
1891
+ * 消息存储大小,以字节为单位
1826
1892
  注意:此字段可能返回 null,表示取不到有效值。
1827
1893
  */
1828
- ConsumerLimit: string
1894
+ StorageSize: number
1829
1895
  /**
1830
- * 0: 非持久非分区
1831
- 1: 非持久分区
1832
- 2: 持久非分区
1833
- 3: 持久分区
1834
- 注意:此字段可能返回 null,表示取不到有效值。
1896
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1835
1897
  */
1836
- PulsarTopicType: number
1898
+ RequestId?: string
1837
1899
  }
1838
1900
 
1839
1901
  /**
@@ -2076,17 +2138,13 @@ export interface CreateEnvironmentRequest {
2076
2138
  }
2077
2139
 
2078
2140
  /**
2079
- * DeleteTopics返回参数结构体
2080
- */
2081
- export interface DeleteTopicsResponse {
2082
- /**
2083
- * 被删除的主题数组。
2084
- */
2085
- TopicSets: Array<TopicRecord>
2141
+ * ClearCmqQueue请求参数结构体
2142
+ */
2143
+ export interface ClearCmqQueueRequest {
2086
2144
  /**
2087
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
2145
+ * 队列名字,在单个地域同一帐号下唯一。队列名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
2088
2146
  */
2089
- RequestId?: string
2147
+ QueueName: string
2090
2148
  }
2091
2149
 
2092
2150
  /**
@@ -2220,29 +2278,9 @@ export interface DescribeRocketMQClusterResponse {
2220
2278
  }
2221
2279
 
2222
2280
  /**
2223
- * DescribePublisherSummary返回参数结构体
2281
+ * DeleteRocketMQVipInstance返回参数结构体
2224
2282
  */
2225
- export interface DescribePublisherSummaryResponse {
2226
- /**
2227
- * 生产速率(条/秒)
2228
- 注意:此字段可能返回 null,表示取不到有效值。
2229
- */
2230
- MsgRateIn: number
2231
- /**
2232
- * 生产速率(字节/秒)
2233
- 注意:此字段可能返回 null,表示取不到有效值。
2234
- */
2235
- MsgThroughputIn: number
2236
- /**
2237
- * 生产者数量
2238
- 注意:此字段可能返回 null,表示取不到有效值。
2239
- */
2240
- PublisherCount: number
2241
- /**
2242
- * 消息存储大小,以字节为单位
2243
- 注意:此字段可能返回 null,表示取不到有效值。
2244
- */
2245
- StorageSize: number
2283
+ export interface DeleteRocketMQVipInstanceResponse {
2246
2284
  /**
2247
2285
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2248
2286
  */
@@ -2256,12 +2294,12 @@ export interface DescribeCmqSubscriptionDetailResponse {
2256
2294
  /**
2257
2295
  * 总数
2258
2296
  */
2259
- TotalCount: number
2297
+ TotalCount?: number
2260
2298
  /**
2261
2299
  * Subscription属性集合
2262
2300
  注意:此字段可能返回 null,表示取不到有效值。
2263
2301
  */
2264
- SubscriptionSet: Array<CmqSubscription>
2302
+ SubscriptionSet?: Array<CmqSubscription>
2265
2303
  /**
2266
2304
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2267
2305
  */
@@ -2430,9 +2468,13 @@ export interface ModifyRocketMQClusterRequest {
2430
2468
  }
2431
2469
 
2432
2470
  /**
2433
- * DeleteRabbitMQVirtualHost返回参数结构体
2471
+ * CreateRocketMQVipInstance返回参数结构体
2434
2472
  */
2435
- export interface DeleteRabbitMQVirtualHostResponse {
2473
+ export interface CreateRocketMQVipInstanceResponse {
2474
+ /**
2475
+ * 集群ID
2476
+ */
2477
+ ClusterId?: string
2436
2478
  /**
2437
2479
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2438
2480
  */
@@ -2601,21 +2643,21 @@ export interface DescribeClusterDetailRequest {
2601
2643
  }
2602
2644
 
2603
2645
  /**
2604
- * ModifyRole返回参数结构体
2646
+ * ModifyRole请求参数结构体
2605
2647
  */
2606
- export interface ModifyRoleResponse {
2648
+ export interface ModifyRoleRequest {
2607
2649
  /**
2608
- * 角色名称
2650
+ * 角色名称,不支持中字以及除了短线和下划线外的特殊字符且长度必须大于0且小等于32。
2609
2651
  */
2610
2652
  RoleName: string
2611
2653
  /**
2612
- * 备注说明
2654
+ * 备注说明,长度必须大等于0且小等于128。
2613
2655
  */
2614
- Remark: string
2656
+ Remark?: string
2615
2657
  /**
2616
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2658
+ * 必填字段,集群Id
2617
2659
  */
2618
- RequestId?: string
2660
+ ClusterId?: string
2619
2661
  }
2620
2662
 
2621
2663
  /**
@@ -2852,21 +2894,13 @@ export interface RocketMQMessageTrack {
2852
2894
  }
2853
2895
 
2854
2896
  /**
2855
- * ModifyRole请求参数结构体
2897
+ * DeleteRocketMQVipInstance请求参数结构体
2856
2898
  */
2857
- export interface ModifyRoleRequest {
2858
- /**
2859
- * 角色名称,不支持中字以及除了短线和下划线外的特殊字符且长度必须大于0且小等于32。
2860
- */
2861
- RoleName: string
2862
- /**
2863
- * 备注说明,长度必须大等于0且小等于128。
2864
- */
2865
- Remark?: string
2899
+ export interface DeleteRocketMQVipInstanceRequest {
2866
2900
  /**
2867
- * 必填字段,集群Id
2901
+ * 实例的集群ID
2868
2902
  */
2869
- ClusterId?: string
2903
+ ClusterId: string
2870
2904
  }
2871
2905
 
2872
2906
  /**
@@ -3093,16 +3127,6 @@ export interface DescribeEnvironmentRolesResponse {
3093
3127
  RequestId?: string
3094
3128
  }
3095
3129
 
3096
- /**
3097
- * ClearCmqQueue请求参数结构体
3098
- */
3099
- export interface ClearCmqQueueRequest {
3100
- /**
3101
- * 队列名字,在单个地域同一帐号下唯一。队列名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
3102
- */
3103
- QueueName: string
3104
- }
3105
-
3106
3130
  /**
3107
3131
  * ModifyRocketMQGroup请求参数结构体
3108
3132
  */
@@ -3196,84 +3220,89 @@ export interface CmqTopic {
3196
3220
  * 主题的 ID。
3197
3221
  注意:此字段可能返回 null,表示取不到有效值。
3198
3222
  */
3199
- TopicId: string
3223
+ TopicId?: string
3200
3224
  /**
3201
3225
  * 主题名称。
3202
3226
  注意:此字段可能返回 null,表示取不到有效值。
3203
3227
  */
3204
- TopicName: string
3228
+ TopicName?: string
3205
3229
  /**
3206
3230
  * 消息在主题中最长存活时间,从发送到该主题开始经过此参数指定的时间后,不论消息是否被成功推送给用户都将被删除,单位为秒。固定为一天(86400秒),该属性不能修改。
3207
3231
  注意:此字段可能返回 null,表示取不到有效值。
3208
3232
  */
3209
- MsgRetentionSeconds: number
3233
+ MsgRetentionSeconds?: number
3210
3234
  /**
3211
3235
  * 消息最大长度。取值范围1024 - 1048576Byte(即1 - 1024K),默认值为65536。
3212
3236
  注意:此字段可能返回 null,表示取不到有效值。
3213
3237
  */
3214
- MaxMsgSize: number
3238
+ MaxMsgSize?: number
3215
3239
  /**
3216
3240
  * 每秒钟发布消息的条数。
3217
3241
  注意:此字段可能返回 null,表示取不到有效值。
3218
3242
  */
3219
- Qps: number
3243
+ Qps?: number
3220
3244
  /**
3221
3245
  * 描述用户创建订阅时选择的过滤策略:
3222
3246
  FilterType = 1表示用户使用 FilterTag 标签过滤;
3223
3247
  FilterType = 2表示用户使用 BindingKey 过滤。
3224
3248
  注意:此字段可能返回 null,表示取不到有效值。
3225
3249
  */
3226
- FilterType: number
3250
+ FilterType?: number
3227
3251
  /**
3228
3252
  * 主题的创建时间。返回 Unix 时间戳,精确到毫秒。
3229
3253
  注意:此字段可能返回 null,表示取不到有效值。
3230
3254
  */
3231
- CreateTime: number
3255
+ CreateTime?: number
3232
3256
  /**
3233
3257
  * 最后一次修改主题属性的时间。返回 Unix 时间戳,精确到毫秒。
3234
3258
  注意:此字段可能返回 null,表示取不到有效值。
3235
3259
  */
3236
- LastModifyTime: number
3260
+ LastModifyTime?: number
3237
3261
  /**
3238
3262
  * 当前该主题中消息数目(消息堆积数)。
3239
3263
  注意:此字段可能返回 null,表示取不到有效值。
3240
3264
  */
3241
- MsgCount: number
3265
+ MsgCount?: number
3242
3266
  /**
3243
3267
  * 创建者 Uin,CAM 鉴权 resource 由该字段组合而成。
3244
3268
  注意:此字段可能返回 null,表示取不到有效值。
3245
3269
  */
3246
- CreateUin: number
3270
+ CreateUin?: number
3247
3271
  /**
3248
3272
  * 关联的标签。
3249
3273
  注意:此字段可能返回 null,表示取不到有效值。
3250
3274
  */
3251
- Tags: Array<Tag>
3275
+ Tags?: Array<Tag>
3252
3276
  /**
3253
3277
  * 消息轨迹。true表示开启,false表示不开启。
3254
3278
  注意:此字段可能返回 null,表示取不到有效值。
3255
3279
  */
3256
- Trace: boolean
3280
+ Trace?: boolean
3257
3281
  /**
3258
3282
  * 租户id
3259
3283
  注意:此字段可能返回 null,表示取不到有效值。
3260
3284
  */
3261
- TenantId: string
3285
+ TenantId?: string
3262
3286
  /**
3263
3287
  * 命名空间名称
3264
3288
  注意:此字段可能返回 null,表示取不到有效值。
3265
3289
  */
3266
- NamespaceName: string
3290
+ NamespaceName?: string
3267
3291
  /**
3268
3292
  * 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
3269
3293
  注意:此字段可能返回 null,表示取不到有效值。
3270
3294
  */
3271
- Status: number
3295
+ Status?: number
3272
3296
  /**
3273
3297
  * 0表示pulsar,1表示rocketmq
3274
3298
  注意:此字段可能返回 null,表示取不到有效值。
3275
3299
  */
3276
- BrokerType: number
3300
+ BrokerType?: number
3301
+ /**
3302
+ * 订阅数量
3303
+ 注意:此字段可能返回 null,表示取不到有效值。
3304
+ */
3305
+ SubscriptionCount?: number
3277
3306
  }
3278
3307
 
3279
3308
  /**
@@ -3395,21 +3424,21 @@ export interface InternalTenant {
3395
3424
  }
3396
3425
 
3397
3426
  /**
3398
- * SendCmqMsg请求参数结构体
3427
+ * DescribePulsarProInstances请求参数结构体
3399
3428
  */
3400
- export interface SendCmqMsgRequest {
3429
+ export interface DescribePulsarProInstancesRequest {
3401
3430
  /**
3402
- * 队列名
3431
+ * 查询条件过滤器
3403
3432
  */
3404
- QueueName: string
3433
+ Filters?: Array<Filter>
3405
3434
  /**
3406
- * 消息内容
3435
+ * 查询数目上限,默认20
3407
3436
  */
3408
- MsgContent: string
3437
+ Limit?: number
3409
3438
  /**
3410
- * 延迟时间
3439
+ * 查询起始位置
3411
3440
  */
3412
- DelaySeconds: number
3441
+ Offset?: number
3413
3442
  }
3414
3443
 
3415
3444
  /**
@@ -3615,6 +3644,25 @@ export interface DescribeEnvironmentRolesRequest {
3615
3644
  Filters?: Array<Filter>
3616
3645
  }
3617
3646
 
3647
+ /**
3648
+ * DescribeRocketMQClusters返回参数结构体
3649
+ */
3650
+ export interface DescribeRocketMQClustersResponse {
3651
+ /**
3652
+ * 集群信息
3653
+ 注意:此字段可能返回 null,表示取不到有效值。
3654
+ */
3655
+ ClusterList: Array<RocketMQClusterDetail>
3656
+ /**
3657
+ * 总条数
3658
+ */
3659
+ TotalCount: number
3660
+ /**
3661
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3662
+ */
3663
+ RequestId?: string
3664
+ }
3665
+
3618
3666
  /**
3619
3667
  * DeleteRoles返回参数结构体
3620
3668
  */
@@ -3646,6 +3694,20 @@ export interface EnvironmentRoleSet {
3646
3694
  Permissions: Array<string>
3647
3695
  }
3648
3696
 
3697
+ /**
3698
+ * VPC配置信息
3699
+ */
3700
+ export interface VpcConfig {
3701
+ /**
3702
+ * vpc的id
3703
+ */
3704
+ VpcId: string
3705
+ /**
3706
+ * 子网id
3707
+ */
3708
+ SubnetId: string
3709
+ }
3710
+
3649
3711
  /**
3650
3712
  * RocketMQ近期使用量
3651
3713
  */
@@ -4505,6 +4567,20 @@ export interface ModifyRocketMQInstanceSpecResponse {
4505
4567
  RequestId?: string
4506
4568
  }
4507
4569
 
4570
+ /**
4571
+ * DeleteTopics返回参数结构体
4572
+ */
4573
+ export interface DeleteTopicsResponse {
4574
+ /**
4575
+ * 被删除的主题数组。
4576
+ */
4577
+ TopicSets: Array<TopicRecord>
4578
+ /**
4579
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4580
+ */
4581
+ RequestId?: string
4582
+ }
4583
+
4508
4584
  /**
4509
4585
  * DescribeRocketMQVipInstances请求参数结构体
4510
4586
  */
@@ -4536,17 +4612,41 @@ export interface DescribeRocketMQVipInstanceDetailRequest {
4536
4612
  }
4537
4613
 
4538
4614
  /**
4539
- * DeleteRabbitMQVirtualHost请求参数结构体
4615
+ * CreateRocketMQVipInstance请求参数结构体
4540
4616
  */
4541
- export interface DeleteRabbitMQVirtualHostRequest {
4617
+ export interface CreateRocketMQVipInstanceRequest {
4542
4618
  /**
4543
- * 集群实例Id
4619
+ * 实例名称
4544
4620
  */
4545
- InstanceId: string
4621
+ Name: string
4546
4622
  /**
4547
- * vhost名
4623
+ * 实例规格:
4624
+ 基础型,rocket-vip-basic-1
4625
+ 标准型,rocket-vip-basic-2
4626
+ 高阶Ⅰ型,rocket-vip-basic-3
4627
+ 高阶Ⅱ型,rocket-vip-basic-4
4548
4628
  */
4549
- VirtualHost: string
4629
+ Spec: string
4630
+ /**
4631
+ * 节点数量,最小2,最大20
4632
+ */
4633
+ NodeCount: number
4634
+ /**
4635
+ * 单节点存储空间,GB为单位,最低200GB
4636
+ */
4637
+ StorageSize: number
4638
+ /**
4639
+ * 节点部署的区域ID列表,如广州一区,则是100001,具体可查询腾讯云官网
4640
+ */
4641
+ ZoneIds: Array<string>
4642
+ /**
4643
+ * VPC信息
4644
+ */
4645
+ VpcInfo: VpcInfo
4646
+ /**
4647
+ * 购买时长,月为单位
4648
+ */
4649
+ TimeSpan: number
4550
4650
  }
4551
4651
 
4552
4652
  /**
@@ -4785,6 +4885,20 @@ export interface Filter {
4785
4885
  Values?: Array<string>
4786
4886
  }
4787
4887
 
4888
+ /**
4889
+ * 排序器
4890
+ */
4891
+ export interface Sort {
4892
+ /**
4893
+ * 排序字段
4894
+ */
4895
+ Name: string
4896
+ /**
4897
+ * 升序ASC,降序DESC
4898
+ */
4899
+ Order: string
4900
+ }
4901
+
4788
4902
  /**
4789
4903
  * DeleteTopics请求参数结构体
4790
4904
  */
@@ -5497,21 +5611,17 @@ export interface DescribeCmqQueueDetailRequest {
5497
5611
  }
5498
5612
 
5499
5613
  /**
5500
- * DescribePulsarProInstances请求参数结构体
5614
+ * DeleteRabbitMQVirtualHost请求参数结构体
5501
5615
  */
5502
- export interface DescribePulsarProInstancesRequest {
5503
- /**
5504
- * 查询条件过滤器
5505
- */
5506
- Filters?: Array<Filter>
5616
+ export interface DeleteRabbitMQVirtualHostRequest {
5507
5617
  /**
5508
- * 查询数目上限,默认20
5618
+ * 集群实例Id
5509
5619
  */
5510
- Limit?: number
5620
+ InstanceId: string
5511
5621
  /**
5512
- * 查询起始位置
5622
+ * vhost名
5513
5623
  */
5514
- Offset?: number
5624
+ VirtualHost: string
5515
5625
  }
5516
5626
 
5517
5627
  /**
@@ -5664,9 +5774,14 @@ export interface DescribeNodeHealthOptRequest {
5664
5774
  }
5665
5775
 
5666
5776
  /**
5667
- * DescribeBindClusters请求参数结构体
5777
+ * DeleteRabbitMQVirtualHost返回参数结构体
5668
5778
  */
5669
- export type DescribeBindClustersRequest = null
5779
+ export interface DeleteRabbitMQVirtualHostResponse {
5780
+ /**
5781
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5782
+ */
5783
+ RequestId?: string
5784
+ }
5670
5785
 
5671
5786
  /**
5672
5787
  * CreateRocketMQTopic返回参数结构体
@@ -5854,23 +5969,9 @@ export interface DescribeRabbitMQVirtualHostListResponse {
5854
5969
  }
5855
5970
 
5856
5971
  /**
5857
- * DescribeRocketMQClusters返回参数结构体
5972
+ * DescribeBindClusters请求参数结构体
5858
5973
  */
5859
- export interface DescribeRocketMQClustersResponse {
5860
- /**
5861
- * 集群信息
5862
- 注意:此字段可能返回 null,表示取不到有效值。
5863
- */
5864
- ClusterList: Array<RocketMQClusterDetail>
5865
- /**
5866
- * 总条数
5867
- */
5868
- TotalCount: number
5869
- /**
5870
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5871
- */
5872
- RequestId?: string
5873
- }
5974
+ export type DescribeBindClustersRequest = null
5874
5975
 
5875
5976
  /**
5876
5977
  * DescribePulsarProInstanceDetail请求参数结构体
@@ -6498,17 +6599,21 @@ export interface DeleteSubscriptionsRequest {
6498
6599
  }
6499
6600
 
6500
6601
  /**
6501
- * VPC配置信息
6602
+ * SendCmqMsg请求参数结构体
6502
6603
  */
6503
- export interface VpcConfig {
6604
+ export interface SendCmqMsgRequest {
6504
6605
  /**
6505
- * vpc的id
6606
+ * 队列名
6506
6607
  */
6507
- VpcId: string
6608
+ QueueName: string
6508
6609
  /**
6509
- * 子网id
6610
+ * 消息内容
6510
6611
  */
6511
- SubnetId: string
6612
+ MsgContent: string
6613
+ /**
6614
+ * 延迟时间
6615
+ */
6616
+ DelaySeconds: number
6512
6617
  }
6513
6618
 
6514
6619
  /**