tencentcloud-sdk-nodejs-cdb 4.1.228 → 4.1.234
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
|
@@ -7165,72 +7165,69 @@ export interface DescribeInstancePasswordComplexityResponse {
|
|
|
7165
7165
|
*/
|
|
7166
7166
|
export interface AdjustCdbProxyAddressRequest {
|
|
7167
7167
|
/**
|
|
7168
|
-
*
|
|
7168
|
+
* <p>代理组 ID。可通过 <a href="https://cloud.tencent.com/document/api/236/90585">DescribeCdbProxyInfo</a> 接口获取。</p>
|
|
7169
7169
|
*/
|
|
7170
7170
|
ProxyGroupId: string;
|
|
7171
7171
|
/**
|
|
7172
|
-
*
|
|
7173
|
-
系统自动分配:"system", 自定义:"custom"
|
|
7172
|
+
* <p>权重分配模式,<br>系统自动分配:"system", 自定义:"custom"</p>
|
|
7174
7173
|
*/
|
|
7175
7174
|
WeightMode: string;
|
|
7176
7175
|
/**
|
|
7177
|
-
*
|
|
7176
|
+
* <p>是否开启延迟剔除,取值:"true" | "false"</p>
|
|
7178
7177
|
*/
|
|
7179
7178
|
IsKickOut: boolean;
|
|
7180
7179
|
/**
|
|
7181
|
-
*
|
|
7182
|
-
说明:当 IsKickOut 为 true 时才有效。
|
|
7180
|
+
* <p>最小保留数量,最小取值:0。<br>说明:当 IsKickOut 为 true 时才有效。</p>
|
|
7183
7181
|
*/
|
|
7184
7182
|
MinCount: number;
|
|
7185
7183
|
/**
|
|
7186
|
-
*
|
|
7184
|
+
* <p>延迟剔除阈值,最小取值:1,取值范围:[1,10000],整数。</p>
|
|
7187
7185
|
*/
|
|
7188
7186
|
MaxDelay: number;
|
|
7189
7187
|
/**
|
|
7190
|
-
*
|
|
7188
|
+
* <p>是否开启故障转移,取值:"true" | "false"</p>
|
|
7191
7189
|
*/
|
|
7192
7190
|
FailOver: boolean;
|
|
7193
7191
|
/**
|
|
7194
|
-
*
|
|
7192
|
+
* <p>是否自动添加RO,取值:"true" | "false"</p>
|
|
7195
7193
|
*/
|
|
7196
7194
|
AutoAddRo: boolean;
|
|
7197
7195
|
/**
|
|
7198
|
-
*
|
|
7196
|
+
* <p>是否是只读,取值:"true" | "false"</p>
|
|
7199
7197
|
*/
|
|
7200
7198
|
ReadOnly: boolean;
|
|
7201
7199
|
/**
|
|
7202
|
-
*
|
|
7200
|
+
* <p>代理组地址 ID。可通过 <a href="https://cloud.tencent.com/document/api/236/90585">DescribeCdbProxyInfo</a> 接口获取。</p>
|
|
7203
7201
|
*/
|
|
7204
7202
|
ProxyAddressId: string;
|
|
7205
7203
|
/**
|
|
7206
|
-
*
|
|
7204
|
+
* <p>是否开启事务分离,取值:"true" | "false",默认值 false。</p>
|
|
7207
7205
|
*/
|
|
7208
7206
|
TransSplit?: boolean;
|
|
7209
7207
|
/**
|
|
7210
|
-
*
|
|
7211
|
-
注意:如需使用数据库代理连接池能力,MySQL 8.0 主实例的内核小版本要大于等于 MySQL 8.0 20230630。
|
|
7208
|
+
* <p>是否开启连接池。默认关闭。<br>注意:如需使用数据库代理连接池能力,MySQL 8.0 主实例的内核小版本要大于等于 MySQL 8.0 20230630。</p>
|
|
7212
7209
|
*/
|
|
7213
7210
|
ConnectionPool?: boolean;
|
|
7214
7211
|
/**
|
|
7215
|
-
*
|
|
7212
|
+
* <p>读写权重分配。如果 WeightMode 传的是 system ,则传入的权重不生效,由系统分配默认权重。</p>
|
|
7216
7213
|
*/
|
|
7217
7214
|
ProxyAllocation?: Array<ProxyAllocation>;
|
|
7218
7215
|
/**
|
|
7219
|
-
*
|
|
7216
|
+
* <p>是否开启自适应负载均衡。默认关闭。</p>
|
|
7220
7217
|
*/
|
|
7221
7218
|
AutoLoadBalance?: boolean;
|
|
7222
7219
|
/**
|
|
7223
|
-
*
|
|
7220
|
+
* <p>访问模式:nearby - 就近访问,balance - 均衡分配,默认就近访问。</p>
|
|
7224
7221
|
*/
|
|
7225
7222
|
AccessMode?: string;
|
|
7226
7223
|
/**
|
|
7227
|
-
*
|
|
7224
|
+
* <p>是否将libra节点当作普通RO节点</p>
|
|
7228
7225
|
*/
|
|
7229
|
-
ApNodeAsRoNode?:
|
|
7226
|
+
ApNodeAsRoNode?: boolean;
|
|
7230
7227
|
/**
|
|
7231
|
-
* libra
|
|
7228
|
+
* <p>libra节点故障,是否转发给其他节点</p>
|
|
7232
7229
|
*/
|
|
7233
|
-
ApQueryToOtherNode?:
|
|
7230
|
+
ApQueryToOtherNode?: boolean;
|
|
7234
7231
|
}
|
|
7235
7232
|
/**
|
|
7236
7233
|
* DescribeDatabases返回参数结构体
|
|
@@ -7600,7 +7597,7 @@ export interface UpgradeAnalysisInstanceVersionInfo {
|
|
|
7600
7597
|
*/
|
|
7601
7598
|
export interface AdjustCdbProxyAddressResponse {
|
|
7602
7599
|
/**
|
|
7603
|
-
*
|
|
7600
|
+
* <p>异步任务ID</p>
|
|
7604
7601
|
*/
|
|
7605
7602
|
AsyncRequestId?: string;
|
|
7606
7603
|
/**
|