tencentcloud-sdk-nodejs-cdb 4.1.96 → 4.1.103
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
|
@@ -95,7 +95,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
95
95
|
*/
|
|
96
96
|
CloseAuditService(req: CloseAuditServiceRequest, cb?: (error: string, rep: CloseAuditServiceResponse) => void): Promise<CloseAuditServiceResponse>;
|
|
97
97
|
/**
|
|
98
|
-
*
|
|
98
|
+
* 本接口(StopRollback)用于撤销实例正在进行的回档任务,该接口返回一个异步任务 ID。撤销结果可以通过 [DescribeAsyncRequestInfo](https://cloud.tencent.com/document/api/236/20410) 查询任务的执行情况。
|
|
99
99
|
*/
|
|
100
100
|
StopRollback(req: StopRollbackRequest, cb?: (error: string, rep: StopRollbackResponse) => void): Promise<StopRollbackResponse>;
|
|
101
101
|
/**
|
|
@@ -159,7 +159,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
159
159
|
return this.request("CloseAuditService", req, cb);
|
|
160
160
|
}
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* 本接口(StopRollback)用于撤销实例正在进行的回档任务,该接口返回一个异步任务 ID。撤销结果可以通过 [DescribeAsyncRequestInfo](https://cloud.tencent.com/document/api/236/20410) 查询任务的执行情况。
|
|
163
163
|
*/
|
|
164
164
|
async StopRollback(req, cb) {
|
|
165
165
|
return this.request("StopRollback", req, cb);
|
|
@@ -310,7 +310,7 @@ export interface CreateCdbProxyResponse {
|
|
|
310
310
|
*/
|
|
311
311
|
export interface InstanceRollbackRangeTime {
|
|
312
312
|
/**
|
|
313
|
-
*
|
|
313
|
+
* 查询数据库错误码。0 - 正常,1600001 - 内部错误,1600003 - 入参异常,1600009 - 实例不存在,1624001 - DB 访问异常。
|
|
314
314
|
*/
|
|
315
315
|
Code?: number;
|
|
316
316
|
/**
|
|
@@ -1226,9 +1226,9 @@ export interface DescribeInstanceParamRecordsRequest {
|
|
|
1226
1226
|
*/
|
|
1227
1227
|
export interface StopRollbackResponse {
|
|
1228
1228
|
/**
|
|
1229
|
-
* 执行请求的异步任务ID
|
|
1229
|
+
* 执行请求的异步任务 ID。
|
|
1230
1230
|
*/
|
|
1231
|
-
AsyncRequestId
|
|
1231
|
+
AsyncRequestId?: string;
|
|
1232
1232
|
/**
|
|
1233
1233
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1234
1234
|
*/
|
|
@@ -4044,7 +4044,7 @@ export interface ModifyAccountPrivilegesResponse {
|
|
|
4044
4044
|
*/
|
|
4045
4045
|
export interface StopRollbackRequest {
|
|
4046
4046
|
/**
|
|
4047
|
-
* 撤销回档任务对应的实例
|
|
4047
|
+
* 撤销回档任务对应的实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/api/236/15872) 接口获取。
|
|
4048
4048
|
*/
|
|
4049
4049
|
InstanceId: string;
|
|
4050
4050
|
}
|
|
@@ -4139,12 +4139,17 @@ export interface DescribeProxyCustomConfResponse {
|
|
|
4139
4139
|
Count?: number;
|
|
4140
4140
|
/**
|
|
4141
4141
|
* 代理配置
|
|
4142
|
+
* @deprecated
|
|
4142
4143
|
*/
|
|
4143
4144
|
CustomConf?: CustomConfig;
|
|
4144
4145
|
/**
|
|
4145
4146
|
* 权重限制
|
|
4146
4147
|
*/
|
|
4147
4148
|
WeightRule?: Rule;
|
|
4149
|
+
/**
|
|
4150
|
+
* 代理配置
|
|
4151
|
+
*/
|
|
4152
|
+
CustomConfInfo?: Array<CustomConfig>;
|
|
4148
4153
|
/**
|
|
4149
4154
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4150
4155
|
*/
|