tencentcloud-sdk-nodejs-tdmq 4.1.235 → 4.1.237
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
|
@@ -536,34 +536,37 @@ export interface RocketMQGroup {
|
|
|
536
536
|
*/
|
|
537
537
|
export interface ModifyRabbitMQUserRequest {
|
|
538
538
|
/**
|
|
539
|
-
*
|
|
539
|
+
* <p>实例 ID,形如 amqp-xxxxxxxx。有效的 InstanceId 可通过登录 <a href="https://console.cloud.tencent.com/trabbitmq/cluster?rid=1">TDMQ RabbitMQ 控制台</a>查询。</p>
|
|
540
540
|
*/
|
|
541
541
|
InstanceId: string;
|
|
542
542
|
/**
|
|
543
|
-
*
|
|
543
|
+
* <p>用户名,形如rabbitmq。有效的 User 名称可通过登录 <a href="https://console.cloud.tencent.com/trabbitmq/cluster?rid=1">TDMQ RabbitMQ 控制台</a>查询,点击集群列表中的集群,进入集群详情,并在用户与权限页签中找到用户列表,从而找到用户名称。当前不支持修改admin的密码。</p>
|
|
544
544
|
*/
|
|
545
545
|
User: string;
|
|
546
546
|
/**
|
|
547
|
-
*
|
|
547
|
+
* <p>密码,登录时使用。规范:不能为空,8-64个字符,至少要包含小写字母、大写字母、数字、特殊字符【()`~!@#$%^&*_=|{}[]:;',.?/】中的两项</p>
|
|
548
548
|
*/
|
|
549
549
|
Password: string;
|
|
550
550
|
/**
|
|
551
|
-
*
|
|
551
|
+
* <p>描述,不传则不修改</p>
|
|
552
552
|
*/
|
|
553
553
|
Description?: string;
|
|
554
554
|
/**
|
|
555
|
-
*
|
|
556
|
-
management:普通控制台用户,monitoring:管理型控制台用户,其他值:非控制台用户
|
|
555
|
+
* <p>用户标签,用于决定改用户访问 RabbitMQ Management 的权限范围<br>management:普通控制台用户,monitoring:管理型控制台用户,其他值:非控制台用户</p>
|
|
557
556
|
*/
|
|
558
557
|
Tags?: Array<string>;
|
|
559
558
|
/**
|
|
560
|
-
*
|
|
559
|
+
* <p>该用户的最大连接数,不传则不修改</p>
|
|
561
560
|
*/
|
|
562
561
|
MaxConnections?: number;
|
|
563
562
|
/**
|
|
564
|
-
*
|
|
563
|
+
* <p>该用户的最大channel数,不传则不修改</p>
|
|
565
564
|
*/
|
|
566
565
|
MaxChannels?: number;
|
|
566
|
+
/**
|
|
567
|
+
* <p>是否开启cam验证</p>
|
|
568
|
+
*/
|
|
569
|
+
EnableCamAuth?: boolean;
|
|
567
570
|
}
|
|
568
571
|
/**
|
|
569
572
|
* CreateSubscription请求参数结构体
|
|
@@ -8479,34 +8482,37 @@ export interface DescribeMqMsgTraceResponse {
|
|
|
8479
8482
|
*/
|
|
8480
8483
|
export interface CreateRabbitMQUserRequest {
|
|
8481
8484
|
/**
|
|
8482
|
-
*
|
|
8485
|
+
* <p>实例 ID,形如 amqp-xxxxxxxx。有效的 InstanceId 可通过登录 <a href="https://console.cloud.tencent.com/trabbitmq/cluster?rid=1">TDMQ RabbitMQ 控制台</a>查询。</p>
|
|
8483
8486
|
*/
|
|
8484
8487
|
InstanceId: string;
|
|
8485
8488
|
/**
|
|
8486
|
-
*
|
|
8489
|
+
* <p>用户名,登录时使用</p>
|
|
8487
8490
|
*/
|
|
8488
8491
|
User: string;
|
|
8489
8492
|
/**
|
|
8490
|
-
*
|
|
8493
|
+
* <p>密码,登录时使用。规范:不能为空,8-64个字符,至少要包含小写字母、大写字母、数字、特殊字符【()`~!@#$%^&*_=|{}[]:;',.?/】中的两项</p>
|
|
8491
8494
|
*/
|
|
8492
8495
|
Password: string;
|
|
8493
8496
|
/**
|
|
8494
|
-
*
|
|
8497
|
+
* <p>描述</p>
|
|
8495
8498
|
*/
|
|
8496
8499
|
Description?: string;
|
|
8497
8500
|
/**
|
|
8498
|
-
*
|
|
8499
|
-
management:普通控制台用户,monitoring:管理型控制台用户,其他值:非控制台用户
|
|
8501
|
+
* <p>用户标签,用于决定改用户访问RabbitMQ Management的权限范围<br>management:普通控制台用户,monitoring:管理型控制台用户,其他值:非控制台用户</p>
|
|
8500
8502
|
*/
|
|
8501
8503
|
Tags?: Array<string>;
|
|
8502
8504
|
/**
|
|
8503
|
-
*
|
|
8505
|
+
* <p>该用户的最大连接数,不填写则不限制</p>
|
|
8504
8506
|
*/
|
|
8505
8507
|
MaxConnections?: number;
|
|
8506
8508
|
/**
|
|
8507
|
-
*
|
|
8509
|
+
* <p>该用户的最大channel数,不填写则不限制</p>
|
|
8508
8510
|
*/
|
|
8509
8511
|
MaxChannels?: number;
|
|
8512
|
+
/**
|
|
8513
|
+
* <p>是否开启cam验证</p>
|
|
8514
|
+
*/
|
|
8515
|
+
EnableCamAuth?: boolean;
|
|
8510
8516
|
}
|
|
8511
8517
|
/**
|
|
8512
8518
|
* rocketmq router mns 源信息
|
|
@@ -8880,7 +8886,7 @@ export interface ExportRocketMQMessageDetailRequest {
|
|
|
8880
8886
|
*/
|
|
8881
8887
|
export interface CreateRabbitMQUserResponse {
|
|
8882
8888
|
/**
|
|
8883
|
-
*
|
|
8889
|
+
* <p>用户名,登录时使用</p>
|
|
8884
8890
|
*/
|
|
8885
8891
|
User?: string;
|
|
8886
8892
|
/**
|