tencentcloud-sdk-nodejs-wedata 4.1.201 → 4.1.202
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
|
@@ -1439,7 +1439,7 @@ export interface TriggerManualTasksRequest {
|
|
|
1439
1439
|
*/
|
|
1440
1440
|
DataTimeList: Array<string>;
|
|
1441
1441
|
/**
|
|
1442
|
-
*
|
|
1442
|
+
* 手动工作流ID
|
|
1443
1443
|
*/
|
|
1444
1444
|
WorkflowId: string;
|
|
1445
1445
|
/**
|
|
@@ -1447,8 +1447,7 @@ export interface TriggerManualTasksRequest {
|
|
|
1447
1447
|
*/
|
|
1448
1448
|
Remark?: string;
|
|
1449
1449
|
/**
|
|
1450
|
-
*
|
|
1451
|
-
TriggerScope=ENTIRE_WORKFLOW 时无需传此参数,TriggerScope=SPECIFIED_TASK此参数必传
|
|
1450
|
+
* 需要运行的手动工作流任务列表TriggerScope=ENTIRE_WORKFLOW 时无需传此参数,TriggerScope=SPECIFIED_TASK此参数必传
|
|
1452
1451
|
*/
|
|
1453
1452
|
TaskIds?: Array<string>;
|
|
1454
1453
|
/**
|
|
@@ -6338,6 +6337,16 @@ export interface ProdSchedulerTask {
|
|
|
6338
6337
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6339
6338
|
*/
|
|
6340
6339
|
InChargeNameList?: Array<string>;
|
|
6340
|
+
/**
|
|
6341
|
+
* 生产调度任务状态,参考调度任务侧状态信息,“DELETED”状态为质量侧单独加的,查不到任务时认为任务“DELETED”
|
|
6342
|
+
'Y': '调度中',
|
|
6343
|
+
'F': '已下线',
|
|
6344
|
+
'O': '已暂停',
|
|
6345
|
+
'INVALID': '已失效',
|
|
6346
|
+
'DELETED': '已删除'
|
|
6347
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6348
|
+
*/
|
|
6349
|
+
TaskStatus?: string;
|
|
6341
6350
|
}
|
|
6342
6351
|
/**
|
|
6343
6352
|
* DeleteCustomFunction返回参数结构体
|
|
@@ -29701,6 +29710,11 @@ export interface DataSetRecord {
|
|
|
29701
29710
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
29702
29711
|
*/
|
|
29703
29712
|
MetaFrom?: string;
|
|
29713
|
+
/**
|
|
29714
|
+
* 引擎侧责任人
|
|
29715
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29716
|
+
*/
|
|
29717
|
+
EngineOwner?: string;
|
|
29704
29718
|
}
|
|
29705
29719
|
/**
|
|
29706
29720
|
* RemoveDatabase请求参数结构体
|
|
@@ -34134,15 +34148,20 @@ export interface CommitTaskDataDto {
|
|
|
34134
34148
|
*/
|
|
34135
34149
|
export interface RuleGroupPage {
|
|
34136
34150
|
/**
|
|
34137
|
-
*
|
|
34151
|
+
* 查询结果总数量
|
|
34138
34152
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
34139
34153
|
*/
|
|
34140
|
-
TotalCount
|
|
34154
|
+
TotalCount?: number;
|
|
34141
34155
|
/**
|
|
34142
34156
|
* 规则组列表
|
|
34143
34157
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
34144
34158
|
*/
|
|
34145
|
-
Items
|
|
34159
|
+
Items?: Array<RuleGroup>;
|
|
34160
|
+
/**
|
|
34161
|
+
* 已开启监控任务数量(在查询结果总量中)
|
|
34162
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
34163
|
+
*/
|
|
34164
|
+
MonitorEnabledCount?: number;
|
|
34146
34165
|
}
|
|
34147
34166
|
/**
|
|
34148
34167
|
* DeleteDataModel请求参数结构体
|