tencentcloud-sdk-nodejs-tdmq 4.1.229 → 4.1.231

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-tdmq",
3
- "version": "4.1.229",
3
+ "version": "4.1.231",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -8947,6 +8947,10 @@ export interface RabbitMQVirtualHostInfo {
8947
8947
  * 修改时间时间戳
8948
8948
  */
8949
8949
  ModifyTs?: number;
8950
+ /**
8951
+ * 基础配额信息
8952
+ */
8953
+ Quota?: RabbitMQVHostBaseQuota;
8950
8954
  }
8951
8955
  /**
8952
8956
  * ModifyRocketMQRole返回参数结构体
@@ -10099,6 +10103,23 @@ export interface DescribeBindVpcsRequest {
10099
10103
  */
10100
10104
  ClusterId?: string;
10101
10105
  }
10106
+ /**
10107
+ * RabbitMQ 虚拟主机基础配额信息
10108
+ */
10109
+ export interface RabbitMQVHostBaseQuota {
10110
+ /**
10111
+ * 单个 vhost 下允许的最大连接数
10112
+ */
10113
+ MaxConnectionPerVhost?: number;
10114
+ /**
10115
+ * 单个 vhost 下允许的最大交换机数
10116
+ */
10117
+ MaxExchangePerVhost?: number;
10118
+ /**
10119
+ * 单个 vhost 下允许的最大队列数
10120
+ */
10121
+ MaxQueuePerVhost?: number;
10122
+ }
10102
10123
  /**
10103
10124
  * 主题关键信息
10104
10125
  */