tencentcloud-sdk-nodejs-oceanus 4.1.48 → 4.1.53

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-oceanus",
3
- "version": "4.1.48",
3
+ "version": "4.1.53",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -71,7 +71,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
71
71
  */
72
72
  FetchSqlGatewayStatementResult(req: FetchSqlGatewayStatementResultRequest, cb?: (error: string, rep: FetchSqlGatewayStatementResultResponse) => void): Promise<FetchSqlGatewayStatementResultResponse>;
73
73
  /**
74
- * 获取指定作业的事件,包括作业启动停止、运行失败、快照失败、作业异常等各种事件类型
74
+ * 请求参数不包含 "RunningOrderIds"时,接口获取指定作业的事件,包括作业启动停止、运行失败、快照失败、作业异常等各种事件类型;请求参数不包含 "RunningOrderIds"时,接口为查询作业实例ID接口,获取作业实例
75
75
  */
76
76
  DescribeJobEvents(req: DescribeJobEventsRequest, cb?: (error: string, rep: DescribeJobEventsResponse) => void): Promise<DescribeJobEventsResponse>;
77
77
  /**
@@ -125,7 +125,7 @@ class Client extends TencentCloudCommon.AbstractClient {
125
125
  return this.request("FetchSqlGatewayStatementResult", req, cb);
126
126
  }
127
127
  /**
128
- * 获取指定作业的事件,包括作业启动停止、运行失败、快照失败、作业异常等各种事件类型
128
+ * 请求参数不包含 "RunningOrderIds"时,接口获取指定作业的事件,包括作业启动停止、运行失败、快照失败、作业异常等各种事件类型;请求参数不包含 "RunningOrderIds"时,接口为查询作业实例ID接口,获取作业实例
129
129
  */
130
130
  async DescribeJobEvents(req, cb) {
131
131
  return this.request("DescribeJobEvents", req, cb);
@@ -4229,17 +4229,22 @@ export interface DescribeJobEventsResponse {
4229
4229
  * 该作业指定范围内的事件列表
4230
4230
  注意:此字段可能返回 null,表示取不到有效值。
4231
4231
  */
4232
- Events: Array<JobEvent>;
4232
+ Events?: Array<JobEvent>;
4233
4233
  /**
4234
4234
  * 该作业指定范围内运行实例 ID 数组,仅当入参没有传入 RunningOrderIds 参数时才会返回。倒序输出
4235
4235
  注意:此字段可能返回 null,表示取不到有效值。
4236
4236
  */
4237
- RunningOrderIds: Array<number | bigint>;
4237
+ RunningOrderIds?: Array<number | bigint>;
4238
4238
  /**
4239
4239
  * 事件的总数
4240
4240
  注意:此字段可能返回 null,表示取不到有效值。
4241
4241
  */
4242
- TotalCount: number;
4242
+ TotalCount?: number;
4243
+ /**
4244
+ * 实例对应的版本
4245
+ 注意:此字段可能返回 null,表示取不到有效值。
4246
+ */
4247
+ Versions?: Array<number | bigint>;
4243
4248
  /**
4244
4249
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4245
4250
  */