tencentcloud-sdk-nodejs-tdmq 4.1.165 → 4.1.170
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
|
@@ -151,6 +151,10 @@ export interface ModifyRabbitMQVipInstanceRequest {
|
|
|
151
151
|
* 修改实例的标签信息,全量标签信息,非增量
|
|
152
152
|
*/
|
|
153
153
|
Tags?: Array<Tag>;
|
|
154
|
+
/**
|
|
155
|
+
* 是否开启集群风险提示
|
|
156
|
+
*/
|
|
157
|
+
EnableRiskWarning?: boolean;
|
|
154
158
|
}
|
|
155
159
|
/**
|
|
156
160
|
* RocketMQ专享实例信息
|
|
@@ -536,7 +540,7 @@ export interface ModifyRabbitMQUserRequest {
|
|
|
536
540
|
*/
|
|
537
541
|
InstanceId: string;
|
|
538
542
|
/**
|
|
539
|
-
* 用户名,形如
|
|
543
|
+
* 用户名,形如rabbitmq。有效的 User 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,点击集群列表中的集群,进入集群详情,并在用户与权限页签中找到用户列表,从而找到用户名称。当前不支持修改admin的密码。
|
|
540
544
|
*/
|
|
541
545
|
User: string;
|
|
542
546
|
/**
|
|
@@ -824,6 +828,22 @@ export interface RabbitMQClusterInfo {
|
|
|
824
828
|
* 是否已开启删除保护
|
|
825
829
|
*/
|
|
826
830
|
EnableDeletionProtection?: boolean;
|
|
831
|
+
/**
|
|
832
|
+
* 是否有vhost未开启镜像队列风险
|
|
833
|
+
*/
|
|
834
|
+
MirroredQueueRisk?: boolean;
|
|
835
|
+
/**
|
|
836
|
+
* 是否提示风险
|
|
837
|
+
*/
|
|
838
|
+
EnableRiskWarning?: boolean;
|
|
839
|
+
/**
|
|
840
|
+
* 消费超时时间
|
|
841
|
+
*/
|
|
842
|
+
ConsumeTimeout?: number;
|
|
843
|
+
/**
|
|
844
|
+
* 最大Channel数
|
|
845
|
+
*/
|
|
846
|
+
ChannelMax?: number;
|
|
827
847
|
}
|
|
828
848
|
/**
|
|
829
849
|
* vhost概览统计信息
|
|
@@ -2361,6 +2381,10 @@ export interface VpcEndpointInfo {
|
|
|
2361
2381
|
* TLS加密的数据流接入点
|
|
2362
2382
|
*/
|
|
2363
2383
|
VpcTlsEndpoint?: string;
|
|
2384
|
+
/**
|
|
2385
|
+
* VPC 接入点操作失败的错误信息
|
|
2386
|
+
*/
|
|
2387
|
+
VpcErrorMessage?: string;
|
|
2364
2388
|
}
|
|
2365
2389
|
/**
|
|
2366
2390
|
* ClearCmqQueue返回参数结构体
|
|
@@ -3073,6 +3097,18 @@ export interface RabbitMQClusterAccessInfo {
|
|
|
3073
3097
|
* 公网IP是否复用
|
|
3074
3098
|
*/
|
|
3075
3099
|
PublicIpReused?: boolean;
|
|
3100
|
+
/**
|
|
3101
|
+
* 公网控制台接入点操作的错误信息
|
|
3102
|
+
*/
|
|
3103
|
+
PublicWebConsoleErrorMessage?: string;
|
|
3104
|
+
/**
|
|
3105
|
+
* 内网控制台接入点操作的错误信息
|
|
3106
|
+
*/
|
|
3107
|
+
VpcWebConsoleErrorMessage?: string;
|
|
3108
|
+
/**
|
|
3109
|
+
* 公网接入点操作的错误信息
|
|
3110
|
+
*/
|
|
3111
|
+
PublicDataStreamErrorMessage?: string;
|
|
3076
3112
|
}
|
|
3077
3113
|
/**
|
|
3078
3114
|
* DescribeBindClusters返回参数结构体
|