tencentcloud-sdk-nodejs-wedata 4.1.131 → 4.1.133

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-wedata",
3
- "version": "4.1.131",
3
+ "version": "4.1.133",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -187,7 +187,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
187
187
  */
188
188
  ListUpstreamTaskInstances(req: ListUpstreamTaskInstancesRequest, cb?: (error: string, rep: ListUpstreamTaskInstancesResponse) => void): Promise<ListUpstreamTaskInstancesResponse>;
189
189
  /**
190
- * 创建任务接口
190
+ * 获取任务详情接口
191
191
  */
192
192
  GetTask(req: GetTaskRequest, cb?: (error: string, rep: GetTaskResponse) => void): Promise<GetTaskResponse>;
193
193
  /**
@@ -331,11 +331,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
331
331
  */
332
332
  CreateCodeFile(req: CreateCodeFileRequest, cb?: (error: string, rep: CreateCodeFileResponse) => void): Promise<CreateCodeFileResponse>;
333
333
  /**
334
- * 创建文件夹
334
+ * 更新工作流文件夹
335
335
  */
336
336
  UpdateWorkflowFolder(req: UpdateWorkflowFolderRequest, cb?: (error: string, rep: UpdateWorkflowFolderResponse) => void): Promise<UpdateWorkflowFolderResponse>;
337
337
  /**
338
- * 创建任务接口
338
+ * 更新任务接口
339
339
  */
340
340
  UpdateTask(req: UpdateTaskRequest, cb?: (error: string, rep: UpdateTaskResponse) => void): Promise<UpdateTaskResponse>;
341
341
  /**
@@ -299,7 +299,7 @@ class Client extends TencentCloudCommon.AbstractClient {
299
299
  return this.request("ListUpstreamTaskInstances", req, cb);
300
300
  }
301
301
  /**
302
- * 创建任务接口
302
+ * 获取任务详情接口
303
303
  */
304
304
  async GetTask(req, cb) {
305
305
  return this.request("GetTask", req, cb);
@@ -515,13 +515,13 @@ class Client extends TencentCloudCommon.AbstractClient {
515
515
  return this.request("CreateCodeFile", req, cb);
516
516
  }
517
517
  /**
518
- * 创建文件夹
518
+ * 更新工作流文件夹
519
519
  */
520
520
  async UpdateWorkflowFolder(req, cb) {
521
521
  return this.request("UpdateWorkflowFolder", req, cb);
522
522
  }
523
523
  /**
524
- * 创建任务接口
524
+ * 更新任务接口
525
525
  */
526
526
  async UpdateTask(req, cb) {
527
527
  return this.request("UpdateTask", req, cb);
@@ -2159,6 +2159,10 @@ export interface AlarmRuleDetail {
2159
2159
  注意:此字段可能返回 null,表示取不到有效值。
2160
2160
  */
2161
2161
  ReconciliationExtInfo?: Array<ReconciliationStrategyInfo>;
2162
+ /**
2163
+ * 监控对象的白名单配置
2164
+ */
2165
+ MonitorWhiteTasks?: Array<MonitorWhiteTask>;
2162
2166
  }
2163
2167
  /**
2164
2168
  * StopOpsTasksAsync请求参数结构体
@@ -3429,6 +3433,19 @@ export interface ListTaskInstanceExecutionsRequest {
3429
3433
  */
3430
3434
  PageNumber?: number;
3431
3435
  }
3436
+ /**
3437
+ * 告警规则监控白名单配置
3438
+ */
3439
+ export interface MonitorWhiteTask {
3440
+ /**
3441
+ * 配置白名单的对应的工作流/项目的id
3442
+ */
3443
+ MonitorObjectId?: string;
3444
+ /**
3445
+ * 白名单任务列表
3446
+ */
3447
+ TaskIds?: Array<string>;
3448
+ }
3432
3449
  /**
3433
3450
  * 项目下的用户集合
3434
3451
  */