tencentcloud-sdk-nodejs-wedata 4.1.27 → 4.1.29
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
|
@@ -2554,7 +2554,7 @@ export interface InstanceLifeDetailDto {
|
|
|
2554
2554
|
- FAILED 表示 终态-失败重试
|
|
2555
2555
|
- EXPIRED 表示 终态-失败
|
|
2556
2556
|
- SKIP_RUNNING 表示 终态-被上游分支节点跳过的分支
|
|
2557
|
-
- HISTORY 表示
|
|
2557
|
+
- HISTORY 表示 兼容2024-03-30之前的历史实例,之后实例无需关注次枚举类型
|
|
2558
2558
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2559
2559
|
*/
|
|
2560
2560
|
DetailState?: string;
|
|
@@ -3939,7 +3939,9 @@ export interface InstanceDetailVO {
|
|
|
3939
3939
|
*/
|
|
3940
3940
|
TotalRunNum?: number;
|
|
3941
3941
|
/**
|
|
3942
|
-
*
|
|
3942
|
+
* **实例生命周期编号,标识实例的某一次执行**
|
|
3943
|
+
|
|
3944
|
+
例如:周期实例第一次运行的编号为0,用户后期又重跑了该实例,第二次的执行的编号为1
|
|
3943
3945
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3944
3946
|
*/
|
|
3945
3947
|
LifeRoundNum?: number;
|
|
@@ -5739,7 +5741,10 @@ export interface InstanceLogVO {
|
|
|
5739
5741
|
*/
|
|
5740
5742
|
LineCount?: number;
|
|
5741
5743
|
/**
|
|
5742
|
-
*
|
|
5744
|
+
* **分页查询日志时使用,无具体业务含义**
|
|
5745
|
+
|
|
5746
|
+
第一次查询时值为null
|
|
5747
|
+
第二次及以后查询时使用上一次查询返回信息中的ExtInfo字段值即可
|
|
5743
5748
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5744
5749
|
*/
|
|
5745
5750
|
ExtInfo?: string;
|
|
@@ -12960,12 +12965,12 @@ export interface ListInstancesRequest {
|
|
|
12960
12965
|
*/
|
|
12961
12966
|
ProjectId: string;
|
|
12962
12967
|
/**
|
|
12963
|
-
*
|
|
12968
|
+
* **实例计划调度时间过滤条件**
|
|
12964
12969
|
过滤起始时间,时间格式为 yyyy-MM-dd HH:mm:ss
|
|
12965
12970
|
*/
|
|
12966
12971
|
ScheduleTimeFrom: string;
|
|
12967
12972
|
/**
|
|
12968
|
-
*
|
|
12973
|
+
* **实例计划调度时间过滤条件**
|
|
12969
12974
|
过滤截止时间,时间格式为 yyyy-MM-dd HH:mm:ss
|
|
12970
12975
|
*/
|
|
12971
12976
|
ScheduleTimeTo: string;
|
|
@@ -12982,10 +12987,10 @@ export interface ListInstancesRequest {
|
|
|
12982
12987
|
/**
|
|
12983
12988
|
* **查询结果排序字段**
|
|
12984
12989
|
|
|
12985
|
-
- SCHEDULE_DATE 表示
|
|
12986
|
-
- START_TIME 表示
|
|
12987
|
-
- END_TIME 表示
|
|
12988
|
-
- COST_TIME 表示
|
|
12990
|
+
- SCHEDULE_DATE 表示 根据计划调度时间排序
|
|
12991
|
+
- START_TIME 表示 根据实例开始执行时间排序
|
|
12992
|
+
- END_TIME 表示 根据实例结束执行时间排序
|
|
12993
|
+
- COST_TIME 表示 根据实例执行时长排序
|
|
12989
12994
|
*/
|
|
12990
12995
|
SortColumn?: string;
|
|
12991
12996
|
/**
|
|
@@ -13067,12 +13072,12 @@ export interface ListInstancesRequest {
|
|
|
13067
13072
|
*/
|
|
13068
13073
|
ExecutorGroupIdList?: Array<string>;
|
|
13069
13074
|
/**
|
|
13070
|
-
*
|
|
13075
|
+
* **实例执行开始时间过滤条件**
|
|
13071
13076
|
过滤起始时间,时间格式为 yyyy-MM-dd HH:mm:ss
|
|
13072
13077
|
*/
|
|
13073
13078
|
StartTimeFrom?: string;
|
|
13074
13079
|
/**
|
|
13075
|
-
*
|
|
13080
|
+
* **实例执行开始时间过滤条件**
|
|
13076
13081
|
过滤截止时间,时间格式为 yyyy-MM-dd HH:mm:ss
|
|
13077
13082
|
*/
|
|
13078
13083
|
StartTimeTo?: string;
|
|
@@ -13411,7 +13416,9 @@ export interface InstanceLifeCycleVO {
|
|
|
13411
13416
|
*/
|
|
13412
13417
|
InstanceState?: number;
|
|
13413
13418
|
/**
|
|
13414
|
-
*
|
|
13419
|
+
* **实例生命周期编号,标识实例的某一次执行**
|
|
13420
|
+
|
|
13421
|
+
例如:周期实例第一次运行的编号为0,用户后期又重跑了该实例,第二次执行的编号为1
|
|
13415
13422
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13416
13423
|
*/
|
|
13417
13424
|
LifeRoundNum?: number;
|
|
@@ -13449,6 +13456,8 @@ export interface InstanceLifeCycleVO {
|
|
|
13449
13456
|
CodeFileName?: string;
|
|
13450
13457
|
/**
|
|
13451
13458
|
* **下发执行ID**
|
|
13459
|
+
统一执行平台下发执行到新版执行机标识某次执行的唯一ID,存量老执行机下发执行没有此ID。
|
|
13460
|
+
如果不知道执行机版本是否支持此ID,可以联系腾讯云运维同学
|
|
13452
13461
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13453
13462
|
*/
|
|
13454
13463
|
ExecutionJobId?: string;
|
|
@@ -24607,7 +24616,9 @@ export interface GetInstanceLogRequest {
|
|
|
24607
24616
|
*/
|
|
24608
24617
|
InstanceKey: string;
|
|
24609
24618
|
/**
|
|
24610
|
-
*
|
|
24619
|
+
* **实例生命周期编号,标识实例的某一次执行**
|
|
24620
|
+
|
|
24621
|
+
例如:周期实例第一次运行的编号为0,用户后期又重跑了该实例,第二次执行的编号为1
|
|
24611
24622
|
*/
|
|
24612
24623
|
LifeRoundNum: number;
|
|
24613
24624
|
/**
|
|
@@ -24652,6 +24663,13 @@ export interface GetInstanceLogRequest {
|
|
|
24652
24663
|
默认 10000
|
|
24653
24664
|
*/
|
|
24654
24665
|
EndLineCount?: number;
|
|
24666
|
+
/**
|
|
24667
|
+
* **分页查询日志时使用,无具体业务含义**
|
|
24668
|
+
|
|
24669
|
+
第一次查询时值为null
|
|
24670
|
+
第二次及以后查询时使用上一次查询返回信息中的ExtInfo字段值即可
|
|
24671
|
+
*/
|
|
24672
|
+
ExtInfo?: string;
|
|
24655
24673
|
}
|
|
24656
24674
|
/**
|
|
24657
24675
|
* 规则配置
|