tencentcloud-sdk-nodejs-cdb 4.1.255 → 4.1.257

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-cdb",
3
- "version": "4.1.255",
3
+ "version": "4.1.257",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -5365,7 +5365,7 @@ export interface Inbound {
5365
5365
  */
5366
5366
  export interface CreateAccountsResponse {
5367
5367
  /**
5368
- * 异步任务的请求 ID,可使用此 ID 查询异步任务的执行结果。
5368
+ * <p>异步任务的请求 ID,可使用此 ID 查询异步任务的执行结果。</p>
5369
5369
  */
5370
5370
  AsyncRequestId?: string;
5371
5371
  /**
@@ -5504,14 +5504,11 @@ export interface ResetRootAccountResponse {
5504
5504
  */
5505
5505
  export interface Account {
5506
5506
  /**
5507
- * 账号名,可输入1 - 32个字符。
5507
+ * <p>账号名,可输入1 - 32个字符。</p>
5508
5508
  */
5509
5509
  User: string;
5510
5510
  /**
5511
- * 账号的主机。
5512
- 说明:
5513
- 1. IP 形式,支持填入%。
5514
- 2. 多个主机以分隔符分隔,分隔符支持;,|换行符和空格。
5511
+ * <p>账号的主机。</p><p>IP 形式,支持填入%。</p>
5515
5512
  */
5516
5513
  Host: string;
5517
5514
  }
@@ -5980,27 +5977,23 @@ export interface ModifyDBInstanceSecurityGroupsResponse {
5980
5977
  */
5981
5978
  export interface CreateAccountsRequest {
5982
5979
  /**
5983
- * 实例 ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例 ID 相同。
5980
+ * <p>实例 ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例 ID 相同。</p>
5984
5981
  */
5985
5982
  InstanceId: string;
5986
5983
  /**
5987
- * 云数据库账号。
5984
+ * <p>云数据库账号。</p>
5988
5985
  */
5989
5986
  Accounts: Array<Account>;
5990
5987
  /**
5991
- * 新账户的密码。
5992
- 说明:
5993
- 1. 在8 ~ 64位字符数以内(推荐12位以上)。
5994
- 2. 至少包含其中两项:小写字母 a ~ z 或 大写字母 A ~ Z。数字0 ~ 9。_+-,&=!@#$%^*().|。
5995
- 3. 不能包含非法字符。
5988
+ * <p>新账户的密码。<br>说明:</p><ol><li>在8 ~ 64位字符数以内(推荐12位以上)。</li><li>至少包含其中两项:小写字母 a ~ z 或 大写字母 A ~ Z。数字0 ~ 9。_+-,&amp;=!@#$%^*().|。</li><li>不能包含非法字符。</li></ol>
5996
5989
  */
5997
5990
  Password: string;
5998
5991
  /**
5999
- * 备注信息。最多支持输入255个字符。
5992
+ * <p>备注信息。最多支持输入255个字符。</p>
6000
5993
  */
6001
5994
  Description?: string;
6002
5995
  /**
6003
- * 新账户最大可用连接数,默认值为10240,最大可设置值为10240
5996
+ * <p>新账户最大可用连接数,默认值为10240,最大可设置值为10240。</p>
6004
5997
  */
6005
5998
  MaxUserConnections?: number;
6006
5999
  }