tencentcloud-sdk-nodejs-cdb 4.1.246 → 4.1.255
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
|
@@ -1063,7 +1063,7 @@ export interface DescribeInstanceUpgradeTypeResponse {
|
|
|
1063
1063
|
*/
|
|
1064
1064
|
export interface CreateCdbProxyAddressResponse {
|
|
1065
1065
|
/**
|
|
1066
|
-
*
|
|
1066
|
+
* <p>异步任务ID</p>
|
|
1067
1067
|
*/
|
|
1068
1068
|
AsyncRequestId?: string;
|
|
1069
1069
|
/**
|
|
@@ -1213,85 +1213,83 @@ export interface StopRollbackResponse {
|
|
|
1213
1213
|
*/
|
|
1214
1214
|
export interface CreateCdbProxyAddressRequest {
|
|
1215
1215
|
/**
|
|
1216
|
-
*
|
|
1216
|
+
* <p>代理组 ID。可通过 <a href="https://cloud.tencent.com/document/api/236/90585">DescribeCdbProxyInfo</a> 接口获取。</p>
|
|
1217
1217
|
*/
|
|
1218
1218
|
ProxyGroupId: string;
|
|
1219
1219
|
/**
|
|
1220
|
-
*
|
|
1221
|
-
系统自动分配:"system", 自定义:"custom"
|
|
1220
|
+
* <p>权重分配模式,<br>系统自动分配:"system", 自定义:"custom"</p>
|
|
1222
1221
|
*/
|
|
1223
1222
|
WeightMode: string;
|
|
1224
1223
|
/**
|
|
1225
|
-
*
|
|
1224
|
+
* <p>是否开启延迟剔除,取值:"true" | "false"</p>
|
|
1226
1225
|
*/
|
|
1227
1226
|
IsKickOut: boolean;
|
|
1228
1227
|
/**
|
|
1229
|
-
*
|
|
1228
|
+
* <p>最小保留数量,最小取值:0</p>
|
|
1230
1229
|
*/
|
|
1231
1230
|
MinCount: number;
|
|
1232
1231
|
/**
|
|
1233
|
-
*
|
|
1232
|
+
* <p>延迟剔除阈值,最小取值:1,范围:1 - 10000,整数。</p>
|
|
1234
1233
|
*/
|
|
1235
1234
|
MaxDelay: number;
|
|
1236
1235
|
/**
|
|
1237
|
-
*
|
|
1236
|
+
* <p>是否开启故障转移,取值:"true" | "false"</p>
|
|
1238
1237
|
*/
|
|
1239
1238
|
FailOver: boolean;
|
|
1240
1239
|
/**
|
|
1241
|
-
*
|
|
1240
|
+
* <p>是否自动添加RO,取值:"true" | "false"</p>
|
|
1242
1241
|
*/
|
|
1243
1242
|
AutoAddRo: boolean;
|
|
1244
1243
|
/**
|
|
1245
|
-
*
|
|
1244
|
+
* <p>是否是只读,取值:"true" | "false"</p>
|
|
1246
1245
|
*/
|
|
1247
1246
|
ReadOnly: boolean;
|
|
1248
1247
|
/**
|
|
1249
|
-
*
|
|
1248
|
+
* <p>是否开启事务分离,取值:"true" | "false"</p>
|
|
1250
1249
|
*/
|
|
1251
1250
|
TransSplit: boolean;
|
|
1252
1251
|
/**
|
|
1253
|
-
*
|
|
1252
|
+
* <p>读写权重分配</p>
|
|
1254
1253
|
*/
|
|
1255
1254
|
ProxyAllocation: Array<ProxyAllocation>;
|
|
1256
1255
|
/**
|
|
1257
|
-
*
|
|
1256
|
+
* <p>私有网络 ID。可通过 <a href="https://cloud.tencent.com/document/product/236/15872">DescribeDBInstances</a> 接口获取。</p>
|
|
1258
1257
|
*/
|
|
1259
1258
|
UniqVpcId: string;
|
|
1260
1259
|
/**
|
|
1261
|
-
*
|
|
1260
|
+
* <p>私有子网 ID。可通过 <a href="https://cloud.tencent.com/document/product/236/15872">DescribeDBInstances</a> 接口获取。</p>
|
|
1262
1261
|
*/
|
|
1263
1262
|
UniqSubnetId: string;
|
|
1264
1263
|
/**
|
|
1265
|
-
*
|
|
1266
|
-
注意:如需使用数据库代理连接池能力,MySQL 8.0 主实例的内核小版本要大于等于 MySQL 8.0 20230630。
|
|
1264
|
+
* <p>是否开启连接池。默认关闭。<br>注意:如需使用数据库代理连接池能力,MySQL 8.0 主实例的内核小版本要大于等于 MySQL 8.0 20230630。</p>
|
|
1267
1265
|
*/
|
|
1268
1266
|
ConnectionPool?: boolean;
|
|
1269
1267
|
/**
|
|
1270
|
-
*
|
|
1268
|
+
* <p>描述</p>
|
|
1271
1269
|
*/
|
|
1272
1270
|
Desc?: string;
|
|
1273
1271
|
/**
|
|
1274
|
-
* IP 地址。不填则默认为所选 VPC 下支持的随机一个 IP
|
|
1272
|
+
* <p>IP 地址。不填则默认为所选 VPC 下支持的随机一个 IP。</p>
|
|
1275
1273
|
*/
|
|
1276
1274
|
Vip?: string;
|
|
1277
1275
|
/**
|
|
1278
|
-
*
|
|
1276
|
+
* <p>端口。默认值3306。</p>
|
|
1279
1277
|
*/
|
|
1280
1278
|
VPort?: number;
|
|
1281
1279
|
/**
|
|
1282
|
-
*
|
|
1280
|
+
* <p>安全组</p>
|
|
1283
1281
|
*/
|
|
1284
1282
|
SecurityGroup?: Array<string>;
|
|
1285
1283
|
/**
|
|
1286
|
-
*
|
|
1284
|
+
* <p>连接池类型。可选值 transaction(事务级别连接池),connection(会话级别连接池),ConnectionPool 为 true 时生效。默认值:connection。</p>
|
|
1287
1285
|
*/
|
|
1288
1286
|
ConnectionPoolType?: string;
|
|
1289
1287
|
/**
|
|
1290
|
-
*
|
|
1288
|
+
* <p>是否开启自适应负载均衡。默认关闭。</p>
|
|
1291
1289
|
*/
|
|
1292
1290
|
AutoLoadBalance?: boolean;
|
|
1293
1291
|
/**
|
|
1294
|
-
*
|
|
1292
|
+
* <p>接入模式。nearBy - 就近访问,balance - 均衡分配,默认值:nearBy。</p>
|
|
1295
1293
|
*/
|
|
1296
1294
|
AccessMode?: string;
|
|
1297
1295
|
}
|