tencentcloud-sdk-nodejs-tdmq 4.1.229 → 4.1.232

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.232",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2431,27 +2431,27 @@ export interface RocketMQGroupConfig {
2431
2431
  */
2432
2432
  export interface VpcEndpointInfo {
2433
2433
  /**
2434
- * vpc的id
2434
+ * <p>vpc的id</p>
2435
2435
  */
2436
2436
  VpcId: string;
2437
2437
  /**
2438
- * 子网id
2438
+ * <p>子网id</p>
2439
2439
  */
2440
2440
  SubnetId: string;
2441
2441
  /**
2442
- * vpc接入点信息
2442
+ * <p>vpc接入点信息</p>
2443
2443
  */
2444
2444
  VpcEndpoint: string;
2445
2445
  /**
2446
- * vpc接入点状态 OFF/ON/CREATING/DELETING
2446
+ * <p>vpc接入点状态 OFF/ON/CREATING/DELETING</p>
2447
2447
  */
2448
2448
  VpcDataStreamEndpointStatus?: string;
2449
2449
  /**
2450
- * TLS加密的数据流接入点
2450
+ * <p>TLS加密的数据流接入点</p>
2451
2451
  */
2452
2452
  VpcTlsEndpoint?: string;
2453
2453
  /**
2454
- * VPC 接入点操作失败的错误信息
2454
+ * <p>VPC 接入点操作失败的错误信息</p>
2455
2455
  */
2456
2456
  VpcErrorMessage?: string;
2457
2457
  }
@@ -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
  */