tencentcloud-sdk-nodejs-cdb 4.1.194 → 4.1.198
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
|
@@ -1476,7 +1476,7 @@ export interface DescribeAuditRulesRequest {
|
|
|
1476
1476
|
*/
|
|
1477
1477
|
export interface UpgradeDBInstanceEngineVersionResponse {
|
|
1478
1478
|
/**
|
|
1479
|
-
*
|
|
1479
|
+
* <p>异步任务 ID,可使用 <a href="https://cloud.tencent.com/document/api/236/20410">查询异步任务的执行结果</a> 获取其执行情况。</p>
|
|
1480
1480
|
*/
|
|
1481
1481
|
AsyncRequestId?: string;
|
|
1482
1482
|
/**
|
|
@@ -7766,32 +7766,31 @@ export interface StopReplicationResponse {
|
|
|
7766
7766
|
*/
|
|
7767
7767
|
export interface UpgradeDBInstanceEngineVersionRequest {
|
|
7768
7768
|
/**
|
|
7769
|
-
*
|
|
7769
|
+
* <p>实例 ID,格式如:cdb-c1nl9rpv 或者 cdbro-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同,可使用 <a href="https://cloud.tencent.com/document/api/236/15872">查询实例列表</a> 接口获取,其值为输出参数中字段 InstanceId 的值。</p>
|
|
7770
7770
|
*/
|
|
7771
7771
|
InstanceId: string;
|
|
7772
7772
|
/**
|
|
7773
|
-
*
|
|
7774
|
-
说明:不支持越级升级,升级后不支持降级。
|
|
7773
|
+
* <p>主实例数据库引擎版本,支持值包括:5.6、5.7、8.0。<br>说明:不支持越级升级,升级后不支持降级。</p>
|
|
7775
7774
|
*/
|
|
7776
7775
|
EngineVersion: string;
|
|
7777
7776
|
/**
|
|
7778
|
-
*
|
|
7777
|
+
* <p>切换访问新实例的方式,默认为 0。支持值包括:0 - 立刻切换,1 - 时间窗切换;当该值为 1 时,升级过程中,切换访问新实例的流程将会在时间窗内进行,或者用户主动调用接口 <a href="https://cloud.tencent.com/document/product/236/15864">切换访问新实例</a> 触发该流程。</p>
|
|
7779
7778
|
*/
|
|
7780
7779
|
WaitSwitch?: number;
|
|
7781
7780
|
/**
|
|
7782
|
-
*
|
|
7781
|
+
* <p>是否是内核子版本升级,支持的值:1 - 升级内核子版本;0 - 升级数据库引擎版本。无默认值,请指定要升级的版本类型。</p>
|
|
7783
7782
|
*/
|
|
7784
7783
|
UpgradeSubversion?: number;
|
|
7785
7784
|
/**
|
|
7786
|
-
*
|
|
7785
|
+
* <p>延迟阈值。取值范围:1 - 10。无默认值,不传此参数时,延迟阈值为0,表示延迟阈值不做设置。</p>
|
|
7787
7786
|
*/
|
|
7788
7787
|
MaxDelayTime?: number;
|
|
7789
7788
|
/**
|
|
7790
|
-
* 5.7升级8.0是否忽略关键字错误,取值范围[0,1],1表示忽略,0
|
|
7789
|
+
* <p>5.7升级8.0是否忽略关键字错误,取值范围[0,1],1表示忽略,0表示不忽略。无默认值,不传此参数表示不做处理。</p>
|
|
7791
7790
|
*/
|
|
7792
7791
|
IgnoreErrKeyword?: number;
|
|
7793
7792
|
/**
|
|
7794
|
-
*
|
|
7793
|
+
* <p>版本升级支持指定参数</p>
|
|
7795
7794
|
*/
|
|
7796
7795
|
ParamList?: Array<UpgradeEngineVersionParams>;
|
|
7797
7796
|
}
|