tencentcloud-sdk-nodejs-wedata 4.1.132 → 4.1.134
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
|
@@ -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
|
*/
|