tencentcloud-sdk-nodejs-tdmysql 4.1.242 → 4.1.246

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-tdmysql",
3
- "version": "4.1.242",
3
+ "version": "4.1.246",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -122,6 +122,22 @@ export interface CreateDBInstancesRequest {
122
122
  * <p>svls实例的ccu变配配置</p>
123
123
  */
124
124
  AutoScaleConfig?: AutoScalingConfig;
125
+ /**
126
+ * <p>绑定安全组列表</p>
127
+ */
128
+ SecurityGroupIds?: Array<string>;
129
+ /**
130
+ * <p>root用户名,当前版本默认为dbaadmin,传值也会重置为dbaadmin</p>
131
+ */
132
+ UserName?: string;
133
+ /**
134
+ * <p>dbaadmin密码</p>
135
+ */
136
+ Password?: string;
137
+ /**
138
+ * <p>是否开启透明加密,0:不开启,1:开启</p>
139
+ */
140
+ EncryptionEnable?: number;
125
141
  }
126
142
  /**
127
143
  * ExpandInstance返回参数结构体
@@ -978,23 +994,31 @@ export interface CreateCloneInstanceRequest {
978
994
  * <p>实例模式,normal:标准型;enhanced:加强型</p>
979
995
  */
980
996
  InstanceMode?: string;
997
+ /**
998
+ * <p>安全组id列表</p>
999
+ */
1000
+ SecurityGroupIds?: Array<string>;
981
1001
  }
982
1002
  /**
983
1003
  * DescribeDBInstances请求参数结构体
984
1004
  */
985
1005
  export interface DescribeDBInstancesRequest {
986
1006
  /**
987
- * 过滤参数
1007
+ * <p>过滤参数</p>
988
1008
  */
989
1009
  Filters?: Array<InstanceFilter>;
990
1010
  /**
991
- * 最大返回个数,默认为20,上限为100
1011
+ * <p>最大返回个数,默认为20,上限为100</p>
992
1012
  */
993
1013
  Limit?: number;
994
1014
  /**
995
- * 偏移量,取Limit整数倍
1015
+ * <p>偏移量,取Limit整数倍</p>
996
1016
  */
997
1017
  Offset?: number;
1018
+ /**
1019
+ * <p>指定查询引擎类型</p><p>枚举值:</p><ul><li>libra: 列存引擎</li></ul>
1020
+ */
1021
+ EngineType?: string;
998
1022
  }
999
1023
  /**
1000
1024
  * DescribeDBSecurityGroups请求参数结构体
@@ -1355,6 +1379,14 @@ export interface DescribeDBInstanceDetailResponse {
1355
1379
  * <p>维护窗口配置</p>
1356
1380
  */
1357
1381
  MaintenanceWindow?: MaintenanceWindowInfo;
1382
+ /**
1383
+ * <p>是否开启透明加密,0:未开启;1:已开启</p>
1384
+ */
1385
+ EncryptionEnable?: number;
1386
+ /**
1387
+ * <p>真实使用的kms地域,用于后续调用kms服务</p>
1388
+ */
1389
+ EncryptionKmsRegion?: string;
1358
1390
  /**
1359
1391
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1360
1392
  */
@@ -2365,6 +2397,10 @@ export interface InstanceInfo {
2365
2397
  * <p>分析引擎关系信息</p>
2366
2398
  */
2367
2399
  AnalysisRelationInfos?: Array<AnalysisRelationInfo>;
2400
+ /**
2401
+ * <p>分析引擎实例信息</p>
2402
+ */
2403
+ AnalysisInstanceInfo?: AnalysisInstanceInfo;
2368
2404
  }
2369
2405
  /**
2370
2406
  * 数据库账号信息
@@ -2891,11 +2927,11 @@ export interface BackupPolicyModelInput {
2891
2927
  */
2892
2928
  export interface DescribeDBInstancesResponse {
2893
2929
  /**
2894
- * 返回实例列表信息
2930
+ * <p>返回实例列表信息</p>
2895
2931
  */
2896
2932
  Instances?: Array<InstanceInfo>;
2897
2933
  /**
2898
- * 满足条件总数量
2934
+ * <p>满足条件总数量</p>
2899
2935
  */
2900
2936
  TotalCount?: number;
2901
2937
  /**