tencentcloud-sdk-nodejs-cynosdb 4.1.199 → 4.1.203
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
|
@@ -328,6 +328,8 @@ export interface UpgradeInstanceRequest {
|
|
|
328
328
|
UpgradeType: string;
|
|
329
329
|
/**
|
|
330
330
|
* 实例机器类型
|
|
331
|
+
1. common,通用型。
|
|
332
|
+
2. exclusive,独享型。
|
|
331
333
|
*/
|
|
332
334
|
DeviceType?: string;
|
|
333
335
|
/**
|
|
@@ -4556,7 +4558,8 @@ export interface DescribeProxiesRequest {
|
|
|
4556
4558
|
*/
|
|
4557
4559
|
OrderByType?: string;
|
|
4558
4560
|
/**
|
|
4559
|
-
* 搜索条件,若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
|
|
4561
|
+
* 搜索条件,若存在多个 Filter 时,Filter 间的关系为逻辑与(AND)关系。
|
|
4562
|
+
说明:此参数当前仅支持 Status 和 ProxyGroupId 两种过滤条件。
|
|
4560
4563
|
*/
|
|
4561
4564
|
Filters?: Array<QueryParamFilter>;
|
|
4562
4565
|
}
|
|
@@ -8466,6 +8469,10 @@ export interface Account {
|
|
|
8466
8469
|
* 数据库账号名
|
|
8467
8470
|
*/
|
|
8468
8471
|
AccountName?: string;
|
|
8472
|
+
/**
|
|
8473
|
+
* 主机
|
|
8474
|
+
*/
|
|
8475
|
+
Host?: string;
|
|
8469
8476
|
/**
|
|
8470
8477
|
* 数据库账号描述
|
|
8471
8478
|
*/
|
|
@@ -8478,14 +8485,14 @@ export interface Account {
|
|
|
8478
8485
|
* 更新时间
|
|
8479
8486
|
*/
|
|
8480
8487
|
UpdateTime?: string;
|
|
8481
|
-
/**
|
|
8482
|
-
* 主机
|
|
8483
|
-
*/
|
|
8484
|
-
Host?: string;
|
|
8485
8488
|
/**
|
|
8486
8489
|
* 用户最大连接数
|
|
8487
8490
|
*/
|
|
8488
8491
|
MaxUserConnections?: number;
|
|
8492
|
+
/**
|
|
8493
|
+
* 是否开启密码轮转(0:关闭;1:开启)
|
|
8494
|
+
*/
|
|
8495
|
+
PasswordRotation?: number;
|
|
8489
8496
|
}
|
|
8490
8497
|
/**
|
|
8491
8498
|
* ModifyResourcePackagesDeductionPriority返回参数结构体
|
|
@@ -9386,21 +9393,25 @@ export interface QueryParamFilter {
|
|
|
9386
9393
|
ExactMatch?: boolean;
|
|
9387
9394
|
}
|
|
9388
9395
|
/**
|
|
9389
|
-
*
|
|
9396
|
+
* 新建账号
|
|
9390
9397
|
*/
|
|
9391
9398
|
export interface NewAccount {
|
|
9392
9399
|
/**
|
|
9393
9400
|
* 账户名,包含字母数字_,以字母开头,字母或数字结尾,长度1-30
|
|
9394
9401
|
*/
|
|
9395
9402
|
AccountName: string;
|
|
9403
|
+
/**
|
|
9404
|
+
* 主机(%或ipv4地址)
|
|
9405
|
+
*/
|
|
9406
|
+
Host: string;
|
|
9396
9407
|
/**
|
|
9397
9408
|
* 密码,密码长度范围为8到64个字符
|
|
9398
9409
|
*/
|
|
9399
9410
|
AccountPassword: string;
|
|
9400
9411
|
/**
|
|
9401
|
-
*
|
|
9412
|
+
* 是否开启密码轮转(0:关闭;1:开启)
|
|
9402
9413
|
*/
|
|
9403
|
-
|
|
9414
|
+
PasswordRotation?: number;
|
|
9404
9415
|
/**
|
|
9405
9416
|
* 描述
|
|
9406
9417
|
*/
|