tencentcloud-sdk-nodejs-wedata 4.1.155 → 4.1.156
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
|
@@ -15030,6 +15030,10 @@ export interface UpdateWorkflowInfoRequest {
|
|
|
15030
15030
|
* 用于配置优化参数(线程、内存、CPU核数等),仅作用于Spark SQL节点。多个参数用英文分号分隔。
|
|
15031
15031
|
*/
|
|
15032
15032
|
GeneralTaskParams?: Array<GeneralTaskParam>;
|
|
15033
|
+
/**
|
|
15034
|
+
* 工作流依赖,yes/no。开启后表示当前任务依赖本工作流上个周期的所有任务。仅支持当前任务所在工作流的任务全部为同周期的情况,如果非同周期则不生效,请在工作流-统一调度上进行配置。
|
|
15035
|
+
*/
|
|
15036
|
+
DependencyWorkflow?: string;
|
|
15033
15037
|
}
|
|
15034
15038
|
/**
|
|
15035
15039
|
* 补录计划任务集合
|
|
@@ -17098,6 +17102,14 @@ export interface DescribeTestRunningRecordRequest {
|
|
|
17098
17102
|
* 分页索引
|
|
17099
17103
|
*/
|
|
17100
17104
|
PageIndex?: number;
|
|
17105
|
+
/**
|
|
17106
|
+
* 状态列表 LAUNCHED:等待运行 RUNNING:运行中 KILLING:终止中 KILLED:已终止 SUCCESS:成功 FAILED:失败 SKIP_RUNNING 跳过运行 NEVER_RUN:未运行
|
|
17107
|
+
*/
|
|
17108
|
+
StatusList?: Array<string>;
|
|
17109
|
+
/**
|
|
17110
|
+
* 排序条件 排序的key:timeCost,startTime
|
|
17111
|
+
*/
|
|
17112
|
+
OrderConditionList?: Array<OrderCondition>;
|
|
17101
17113
|
}
|
|
17102
17114
|
/**
|
|
17103
17115
|
* 数据质量阈值
|