tencentcloud-sdk-nodejs-wedata 4.1.156 → 4.1.157

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.
@@ -420,18 +420,39 @@ export interface DescribeRuleDimStatResponse {
420
420
  RequestId?: string;
421
421
  }
422
422
  /**
423
- * RegisterEventListener返回参数结构体
423
+ * LineageCommonInfoVO
424
424
  */
425
- export interface RegisterEventListenerResponse {
425
+ export interface LineageCommonInfoVO {
426
426
  /**
427
- * 成功或者失败
427
+ * 当前节点
428
428
  注意:此字段可能返回 null,表示取不到有效值。
429
429
  */
430
- Data?: BatchReturn;
430
+ CurrentResource?: LineageResouce;
431
431
  /**
432
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
432
+ * 上游节点
433
+ 注意:此字段可能返回 null,表示取不到有效值。
433
434
  */
434
- RequestId?: string;
435
+ ParentSet?: Array<LineageNodeInfoVO>;
436
+ /**
437
+ * 下游节点
438
+ 注意:此字段可能返回 null,表示取不到有效值。
439
+ */
440
+ ChildSet?: Array<LineageNodeInfoVO>;
441
+ /**
442
+ * 下游数量
443
+ 注意:此字段可能返回 null,表示取不到有效值。
444
+ */
445
+ DownStreamCount?: number;
446
+ /**
447
+ * 上游数量
448
+ 注意:此字段可能返回 null,表示取不到有效值。
449
+ */
450
+ UpStreamCount?: number;
451
+ /**
452
+ * 父/子节点是否展示上下游数量
453
+ 注意:此字段可能返回 null,表示取不到有效值。
454
+ */
455
+ StreamCountFlag?: boolean;
435
456
  }
436
457
  /**
437
458
  * DescribeTaskAlarmRegulations返回参数结构体
@@ -2834,24 +2855,41 @@ export interface CheckTaskNameExistRequest {
2834
2855
  TaskName: string;
2835
2856
  }
2836
2857
  /**
2837
- * 项目扩展信息
2858
+ * 按天更新的表的资产评分
2838
2859
  */
2839
- export interface WorkspaceExt {
2860
+ export interface TablePropertyScore {
2840
2861
  /**
2841
- * 2670965482618679296
2842
- 注意:此字段可能返回 null,表示取不到有效值。
2862
+ * 表ID
2843
2863
  */
2844
- ProjectId?: string;
2864
+ TableId: string;
2845
2865
  /**
2846
- * metrics
2847
- 注意:此字段可能返回 null,表示取不到有效值。
2866
+ * 统计日期
2848
2867
  */
2849
- Key?: string;
2868
+ DayTime: string;
2850
2869
  /**
2851
- * json
2852
- 注意:此字段可能返回 null,表示取不到有效值。
2870
+ * 表完整性评分
2853
2871
  */
2854
- Value?: string;
2872
+ Integrity: number;
2873
+ /**
2874
+ * 表保障性评分
2875
+ */
2876
+ Safety: number;
2877
+ /**
2878
+ * 表及时性评分
2879
+ */
2880
+ Timeliness: number;
2881
+ /**
2882
+ * 表稳定性评分
2883
+ */
2884
+ Stability: number;
2885
+ /**
2886
+ * 表规范性评分
2887
+ */
2888
+ Normative: number;
2889
+ /**
2890
+ * 资产评分平均分
2891
+ */
2892
+ Average: number;
2855
2893
  }
2856
2894
  /**
2857
2895
  * 试运行子记录
@@ -2984,6 +3022,23 @@ export interface DescribeInstanceDetailInfoResponse {
2984
3022
  */
2985
3023
  RequestId?: string;
2986
3024
  }
3025
+ /**
3026
+ * 分区参数
3027
+ */
3028
+ export interface Partition {
3029
+ /**
3030
+ * 分区转换策略
3031
+ */
3032
+ Transform?: string;
3033
+ /**
3034
+ * 分区字段名
3035
+ */
3036
+ Name?: string;
3037
+ /**
3038
+ * 策略参数
3039
+ */
3040
+ TransformArgs?: Array<string>;
3041
+ }
2987
3042
  /**
2988
3043
  * 任务直接关联的其他任务
2989
3044
  */
@@ -3235,41 +3290,18 @@ export interface DescribeDataCheckStatRequest {
3235
3290
  EndDate: string;
3236
3291
  }
3237
3292
  /**
3238
- * 按天更新的表的资产评分
3293
+ * RegisterEventListener返回参数结构体
3239
3294
  */
3240
- export interface TablePropertyScore {
3241
- /**
3242
- * 表ID
3243
- */
3244
- TableId: string;
3245
- /**
3246
- * 统计日期
3247
- */
3248
- DayTime: string;
3249
- /**
3250
- * 表完整性评分
3251
- */
3252
- Integrity: number;
3253
- /**
3254
- * 表保障性评分
3255
- */
3256
- Safety: number;
3257
- /**
3258
- * 表及时性评分
3259
- */
3260
- Timeliness: number;
3261
- /**
3262
- * 表稳定性评分
3263
- */
3264
- Stability: number;
3295
+ export interface RegisterEventListenerResponse {
3265
3296
  /**
3266
- * 表规范性评分
3297
+ * 成功或者失败
3298
+ 注意:此字段可能返回 null,表示取不到有效值。
3267
3299
  */
3268
- Normative: number;
3300
+ Data?: BatchReturn;
3269
3301
  /**
3270
- * 资产评分平均分
3302
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3271
3303
  */
3272
- Average: number;
3304
+ RequestId?: string;
3273
3305
  }
3274
3306
  /**
3275
3307
  * 群机器人订阅配置
@@ -4379,6 +4411,16 @@ export interface BaseClusterInfo {
4379
4411
  注意:此字段可能返回 null,表示取不到有效值。
4380
4412
  */
4381
4413
  CdwUserName?: string;
4414
+ /**
4415
+ * 创建时间
4416
+ 注意:此字段可能返回 null,表示取不到有效值。
4417
+ */
4418
+ CreateTimestamp?: number;
4419
+ /**
4420
+ * 修改时间
4421
+ 注意:此字段可能返回 null,表示取不到有效值。
4422
+ */
4423
+ UpdateTimestamp?: number;
4382
4424
  }
4383
4425
  /**
4384
4426
  * DescribeIntegrationStatisticsTaskStatusTrend返回参数结构体
@@ -4584,6 +4626,16 @@ export interface ProjectUserRole {
4584
4626
  注意:此字段可能返回 null,表示取不到有效值。
4585
4627
  */
4586
4628
  IsProjectOwner?: boolean;
4629
+ /**
4630
+ * 创建时间
4631
+ 注意:此字段可能返回 null,表示取不到有效值。
4632
+ */
4633
+ CreateTimestamp?: number;
4634
+ /**
4635
+ * 用户状态 0:历史 1:正常 2:已删除
4636
+ 注意:此字段可能返回 null,表示取不到有效值。
4637
+ */
4638
+ Status?: number;
4587
4639
  }
4588
4640
  /**
4589
4641
  * DownloadLogByLine请求参数结构体
@@ -6078,6 +6130,61 @@ export interface MoveTasksToFolderResponse {
6078
6130
  */
6079
6131
  RequestId?: string;
6080
6132
  }
6133
+ /**
6134
+ * 任务参数输出dto
6135
+ */
6136
+ export interface ParameterTaskOutDsDto {
6137
+ /**
6138
+ * 唯一标识
6139
+ 注意:此字段可能返回 null,表示取不到有效值。
6140
+ */
6141
+ Id: number;
6142
+ /**
6143
+ * 任务id
6144
+ 注意:此字段可能返回 null,表示取不到有效值。
6145
+ */
6146
+ TaskId: string;
6147
+ /**
6148
+ * 参数名
6149
+ 注意:此字段可能返回 null,表示取不到有效值。
6150
+ */
6151
+ ParamKey: string;
6152
+ /**
6153
+ * 参数描述
6154
+ 注意:此字段可能返回 null,表示取不到有效值。
6155
+ */
6156
+ ParamDesc: string;
6157
+ /**
6158
+ * 参数定义
6159
+ 注意:此字段可能返回 null,表示取不到有效值。
6160
+ */
6161
+ ParamDefine: string;
6162
+ /**
6163
+ * 创建时间
6164
+ 注意:此字段可能返回 null,表示取不到有效值。
6165
+ */
6166
+ CreateTime: string;
6167
+ /**
6168
+ * 更新时间
6169
+ 注意:此字段可能返回 null,表示取不到有效值。
6170
+ */
6171
+ UpdateTime: string;
6172
+ /**
6173
+ * 任务名
6174
+ 注意:此字段可能返回 null,表示取不到有效值。
6175
+ */
6176
+ TaskName: string;
6177
+ /**
6178
+ * 项目id
6179
+ 注意:此字段可能返回 null,表示取不到有效值。
6180
+ */
6181
+ ProjectId: string;
6182
+ /**
6183
+ * 项目名
6184
+ 注意:此字段可能返回 null,表示取不到有效值。
6185
+ */
6186
+ ProjectName: string;
6187
+ }
6081
6188
  /**
6082
6189
  * GetOfflineDIInstanceList返回参数结构体
6083
6190
  */
@@ -6220,19 +6327,17 @@ export interface DimTableLink {
6220
6327
  TableName?: string;
6221
6328
  }
6222
6329
  /**
6223
- * 数据质量规则分页
6330
+ * DescribeWorkflowSchedulerInfoDs请求参数结构体
6224
6331
  */
6225
- export interface RulePage {
6332
+ export interface DescribeWorkflowSchedulerInfoDsRequest {
6226
6333
  /**
6227
- * 记录数
6228
- 注意:此字段可能返回 null,表示取不到有效值。
6334
+ * 项目ID
6229
6335
  */
6230
- TotalCount?: number;
6336
+ ProjectId: string;
6231
6337
  /**
6232
- * 规则列表
6233
- 注意:此字段可能返回 null,表示取不到有效值。
6338
+ * 工作流ID
6234
6339
  */
6235
- Items?: Array<Rule>;
6340
+ WorkflowId: string;
6236
6341
  }
6237
6342
  /**
6238
6343
  * ReportSchema请求参数结构体
@@ -7368,6 +7473,46 @@ export interface DescribeRuleGroupResponse {
7368
7473
  */
7369
7474
  RequestId?: string;
7370
7475
  }
7476
+ /**
7477
+ * LineageNodeInfoVo
7478
+ */
7479
+ export interface LineageNodeInfoVO {
7480
+ /**
7481
+ * 当前资源
7482
+ 注意:此字段可能返回 null,表示取不到有效值。
7483
+ */
7484
+ CurrentResource?: LineageResouce;
7485
+ /**
7486
+ * 关系
7487
+ 注意:此字段可能返回 null,表示取不到有效值。
7488
+ */
7489
+ Relation?: LineageRelationVO;
7490
+ /**
7491
+ * 上游数量
7492
+ 注意:此字段可能返回 null,表示取不到有效值。
7493
+ */
7494
+ DownStreamCount?: number;
7495
+ /**
7496
+ * 下游数量
7497
+ 注意:此字段可能返回 null,表示取不到有效值。
7498
+ */
7499
+ UpStreamCount?: number;
7500
+ /**
7501
+ * 上游节点
7502
+ 注意:此字段可能返回 null,表示取不到有效值。
7503
+ */
7504
+ ParentSet?: Array<LineageNodeInfoVO>;
7505
+ /**
7506
+ * 下游节点
7507
+ 注意:此字段可能返回 null,表示取不到有效值。
7508
+ */
7509
+ ChildSet?: Array<LineageNodeInfoVO>;
7510
+ /**
7511
+ * 父/子节点是否展示上下游数量
7512
+ 注意:此字段可能返回 null,表示取不到有效值。
7513
+ */
7514
+ StreamCountFlag?: boolean;
7515
+ }
7371
7516
  /**
7372
7517
  * DeleteDataSources返回参数结构体
7373
7518
  */
@@ -7458,7 +7603,15 @@ export interface DescribeBatchOperateTaskDTO {
7458
7603
  */
7459
7604
  CreateTime?: string;
7460
7605
  /**
7461
- * 周期类型
7606
+ * 周期类型D天周期
7607
+ H小时
7608
+ Ccrontab类型
7609
+ I分钟
7610
+ O一次性
7611
+ Y年
7612
+ R用户驱动
7613
+ W周
7614
+ M月
7462
7615
  注意:此字段可能返回 null,表示取不到有效值。
7463
7616
  */
7464
7617
  CycleUnit?: string;
@@ -7477,6 +7630,21 @@ export interface DescribeBatchOperateTaskDTO {
7477
7630
  注意:此字段可能返回 null,表示取不到有效值。
7478
7631
  */
7479
7632
  DatasourceType?: string;
7633
+ /**
7634
+ * 引擎名称
7635
+ 注意:此字段可能返回 null,表示取不到有效值。
7636
+ */
7637
+ ComputeResource?: string;
7638
+ /**
7639
+ * dlc地域
7640
+ 注意:此字段可能返回 null,表示取不到有效值。
7641
+ */
7642
+ DlcRegion?: string;
7643
+ /**
7644
+ * 资源组或自定义
7645
+ 注意:此字段可能返回 null,表示取不到有效值。
7646
+ */
7647
+ IsInherit?: string;
7480
7648
  }
7481
7649
  /**
7482
7650
  * DescribeReportTaskList返回参数结构体
@@ -8311,8 +8479,19 @@ export interface Apply {
8311
8479
  ApplyId?: string;
8312
8480
  /**
8313
8481
  * 扩展字段
8482
+ 注意:此字段可能返回 null,表示取不到有效值。
8314
8483
  */
8315
8484
  Metadata?: string;
8485
+ /**
8486
+ * 创建时间
8487
+ 注意:此字段可能返回 null,表示取不到有效值。
8488
+ */
8489
+ CreateTimestamp?: number;
8490
+ /**
8491
+ * 审批时间
8492
+ 注意:此字段可能返回 null,表示取不到有效值。
8493
+ */
8494
+ ApproveTimestamp?: number;
8316
8495
  }
8317
8496
  /**
8318
8497
  * 字段值变量
@@ -8552,6 +8731,11 @@ export interface DependencyStrategyDs {
8552
8731
  注意:此字段可能返回 null,表示取不到有效值。
8553
8732
  */
8554
8733
  TaskDependencyExecutingTimeoutValue?: number;
8734
+ /**
8735
+ * 超时依赖策略
8736
+ 注意:此字段可能返回 null,表示取不到有效值。
8737
+ */
8738
+ DependencyConfigTimeoutTypeList?: Array<DependencyConfigTimeoutDTO>;
8555
8739
  }
8556
8740
  /**
8557
8741
  * DescribeInstanceLogList返回参数结构体
@@ -9486,9 +9670,34 @@ export interface DataSourceInfo {
9486
9670
  TcCatalogOpen?: boolean;
9487
9671
  }
9488
9672
  /**
9489
- * RemoveTable返回参数结构体
9673
+ * LineageRelationVO
9490
9674
  */
9491
- export interface RemoveTableResponse {
9675
+ export interface LineageRelationVO {
9676
+ /**
9677
+ * 关联ID
9678
+ 注意:此字段可能返回 null,表示取不到有效值。
9679
+ */
9680
+ RelationId?: string;
9681
+ /**
9682
+ * 源端唯一血缘ID
9683
+ 注意:此字段可能返回 null,表示取不到有效值。
9684
+ */
9685
+ SourceQualifiedId?: string;
9686
+ /**
9687
+ * 目标端唯一血缘ID
9688
+ 注意:此字段可能返回 null,表示取不到有效值。
9689
+ */
9690
+ TargetQualifiedId?: string;
9691
+ /**
9692
+ * 血缘加工过程
9693
+ 注意:此字段可能返回 null,表示取不到有效值。
9694
+ */
9695
+ Processes?: Array<LineageProcessVO>;
9696
+ }
9697
+ /**
9698
+ * RemoveTable返回参数结构体
9699
+ */
9700
+ export interface RemoveTableResponse {
9492
9701
  /**
9493
9702
  * 结果
9494
9703
  */
@@ -11671,6 +11880,58 @@ export interface OrderFieldOptional {
11671
11880
  */
11672
11881
  Direction?: string;
11673
11882
  }
11883
+ /**
11884
+ * 血缘实体
11885
+ */
11886
+ export interface LineageResouce {
11887
+ /**
11888
+ * 实体原始唯一ID
11889
+ 注意:此字段可能返回 null,表示取不到有效值。
11890
+ */
11891
+ ResourceOriId?: string;
11892
+ /**
11893
+ * 业务名称:库名.表名|指标名称|模型名称|字段名称
11894
+ 注意:此字段可能返回 null,表示取不到有效值。
11895
+ */
11896
+ ResourceName?: string;
11897
+ /**
11898
+ * 实体类型
11899
+ TABLE|METRIC|MODEL|SERVICE|COLUMN
11900
+ 注意:此字段可能返回 null,表示取不到有效值。
11901
+ */
11902
+ ResourceType?: string;
11903
+ /**
11904
+ * 血缘全局唯一ID
11905
+ 注意:此字段可能返回 null,表示取不到有效值。
11906
+ */
11907
+ QualifiedId?: string;
11908
+ /**
11909
+ * 描述:表类型|指标描述|模型描述|字段描述
11910
+ 注意:此字段可能返回 null,表示取不到有效值。
11911
+ */
11912
+ Description?: string;
11913
+ /**
11914
+ * 来源:WEDATA|THIRD
11915
+ 默认wedata
11916
+ 注意:此字段可能返回 null,表示取不到有效值。
11917
+ */
11918
+ Platform?: string;
11919
+ /**
11920
+ * 创建时间
11921
+ 注意:此字段可能返回 null,表示取不到有效值。
11922
+ */
11923
+ CreateTime?: string;
11924
+ /**
11925
+ * 更新时间
11926
+ 注意:此字段可能返回 null,表示取不到有效值。
11927
+ */
11928
+ UpdateTime?: string;
11929
+ /**
11930
+ * resource 额外扩展参数
11931
+ 注意:此字段可能返回 null,表示取不到有效值。
11932
+ */
11933
+ ResourceProperties?: Array<LineageProperty>;
11934
+ }
11674
11935
  /**
11675
11936
  * DryRunDIOfflineTask请求参数结构体
11676
11937
  */
@@ -12293,6 +12554,19 @@ export interface DescribeTableBasicInfoResponse {
12293
12554
  */
12294
12555
  RequestId?: string;
12295
12556
  }
12557
+ /**
12558
+ * DescribeTaskInstancesStatus返回参数结构体
12559
+ */
12560
+ export interface DescribeTaskInstancesStatusResponse {
12561
+ /**
12562
+ * 实例列表
12563
+ */
12564
+ Data?: Array<DescribeTaskInstancesStatusDto>;
12565
+ /**
12566
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12567
+ */
12568
+ RequestId?: string;
12569
+ }
12296
12570
  /**
12297
12571
  * 工作流调度信息
12298
12572
  */
@@ -14188,6 +14462,41 @@ export interface DescribeAlarmReceiverRequest {
14188
14462
  */
14189
14463
  MonitorType?: number;
14190
14464
  }
14465
+ /**
14466
+ * 函数提交版本信息
14467
+ */
14468
+ export interface FunctionVersion {
14469
+ /**
14470
+ * 版本号:V0 V1 V2
14471
+ */
14472
+ Tag?: string;
14473
+ /**
14474
+ * 提交人 ID
14475
+ */
14476
+ UserId?: string;
14477
+ /**
14478
+ * 变更类型:ADD、MODIFY
14479
+ */
14480
+ Type?: string;
14481
+ /**
14482
+ * 备注
14483
+ */
14484
+ Comment?: string;
14485
+ /**
14486
+ * 提交时间: UTC 秒数
14487
+ */
14488
+ Timestamp?: string;
14489
+ /**
14490
+ * 提交人名称
14491
+ 注意:此字段可能返回 null,表示取不到有效值。
14492
+ */
14493
+ UserName?: string;
14494
+ /**
14495
+ * 版本内容:json string 格式
14496
+ 注意:此字段可能返回 null,表示取不到有效值。
14497
+ */
14498
+ Content?: string;
14499
+ }
14191
14500
  /**
14192
14501
  * 调度运行实例实体
14193
14502
  */
@@ -15194,124 +15503,19 @@ export interface DescribeTaskDetailDsResponse {
15194
15503
  RequestId?: string;
15195
15504
  }
15196
15505
  /**
15197
- * 任务类型
15506
+ * LineageProperty额外扩展参数
15198
15507
  */
15199
- export interface TaskTypeDsVO {
15200
- /**
15201
- * 任务类型id
15202
- 注意:此字段可能返回 null,表示取不到有效值。
15203
- */
15204
- TypeId?: number;
15205
- /**
15206
- * TypeDesc描述
15207
- 注意:此字段可能返回 null,表示取不到有效值。
15208
- */
15209
- TypeDesc?: string;
15210
- /**
15211
- * 创建时间
15212
- 注意:此字段可能返回 null,表示取不到有效值。
15213
- */
15214
- CreateTime?: string;
15215
- /**
15216
- * 服务器类型
15217
- 注意:此字段可能返回 null,表示取不到有效值。
15218
- */
15219
- SourceServerType?: string;
15220
- /**
15221
- * 目标服务器类型
15222
- 注意:此字段可能返回 null,表示取不到有效值。
15223
- */
15224
- TargetServerType?: string;
15225
- /**
15226
- * RunJarName名称
15227
- 注意:此字段可能返回 null,表示取不到有效值。
15228
- */
15229
- RunJarName?: string;
15230
- /**
15231
- * Killable参数
15232
- 注意:此字段可能返回 null,表示取不到有效值。
15233
- */
15234
- KillAble?: number;
15235
- /**
15236
- * TypeSort类型
15237
- 注意:此字段可能返回 null,表示取不到有效值。
15238
- */
15239
- TypeSort?: string;
15240
- /**
15241
- * InCharge参数
15242
- 注意:此字段可能返回 null,表示取不到有效值。
15243
- */
15244
- InCharge?: string;
15245
- /**
15246
- * 节点对应任务类型运行上限(暂时不考虑)
15247
- 注意:此字段可能返回 null,表示取不到有效值。
15248
- */
15249
- BrokerParallelism?: number;
15250
- /**
15251
- * 每个任务运行上限(暂时不考虑
15252
- 注意:此字段可能返回 null,表示取不到有效值。
15253
- */
15254
- TaskParallelism?: number;
15255
- /**
15256
- * 补录和重跑上限
15257
- 注意:此字段可能返回 null,表示取不到有效值。
15258
- */
15259
- DoRedoParallelism?: number;
15260
- /**
15261
- * 0 为不可创建任务; >0 可创建任务
15262
- 注意:此字段可能返回 null,表示取不到有效值。
15263
- */
15264
- DowngradePriorityTries?: number;
15265
- /**
15266
- * 重试等待时间
15267
- 注意:此字段可能返回 null,表示取不到有效值。
15268
- */
15269
- RetryWait?: number;
15270
- /**
15271
- * 重试次数(在任务属性配置中设置)
15272
- 注意:此字段可能返回 null,表示取不到有效值。
15273
- */
15274
- RetryLimit?: number;
15275
- /**
15276
- * DefaultAliveWait参数
15277
- 注意:此字段可能返回 null,表示取不到有效值。
15278
- */
15279
- DefaultAliveWait?: number;
15280
- /**
15281
- * PollingSeconds秒数
15282
- 注意:此字段可能返回 null,表示取不到有效值。
15283
- */
15284
- PollingSeconds?: number;
15285
- /**
15286
- * 参数列表xml
15287
- 注意:此字段可能返回 null,表示取不到有效值。
15288
- */
15289
- ParamList?: string;
15290
- /**
15291
- * TaskTypeExts参数
15292
- 注意:此字段可能返回 null,表示取不到有效值。
15293
- */
15294
- TaskTypeExtension?: Array<TaskTypeExtParamDsVO>;
15508
+ export interface LineageProperty {
15295
15509
  /**
15296
- * 对应文件类型
15297
- 注意:此字段可能返回 null,表示取不到有效值。
15298
- */
15299
- FileType?: string;
15300
- /**
15301
- * 是否选择脚本路径
15302
- 注意:此字段可能返回 null,表示取不到有效值。
15303
- */
15304
- SelectFilePath?: boolean;
15305
- /**
15306
- * classpath是否要排除掉common-lib,默认是0不排除
15510
+ * 属性名称
15307
15511
  注意:此字段可能返回 null,表示取不到有效值。
15308
15512
  */
15309
- ExcludeCommonLib?: boolean;
15513
+ Name?: string;
15310
15514
  /**
15311
- * runner任务完成后需要触发的hook
15515
+ * 属性值
15312
15516
  注意:此字段可能返回 null,表示取不到有效值。
15313
15517
  */
15314
- PostHooks?: string;
15518
+ Value?: string;
15315
15519
  }
15316
15520
  /**
15317
15521
  * CreateTask返回参数结构体
@@ -15488,59 +15692,21 @@ export interface DescribeDataSourceInfoListRequest {
15488
15692
  DatasourceName?: string;
15489
15693
  }
15490
15694
  /**
15491
- * 任务参数输出dto
15695
+ * DescribeTaskInstancesStatus请求参数结构体
15492
15696
  */
15493
- export interface ParameterTaskOutDsDto {
15494
- /**
15495
- * 唯一标识
15496
- 注意:此字段可能返回 null,表示取不到有效值。
15497
- */
15498
- Id: number;
15499
- /**
15500
- * 任务id
15501
- 注意:此字段可能返回 null,表示取不到有效值。
15502
- */
15503
- TaskId: string;
15504
- /**
15505
- * 参数名
15506
- 注意:此字段可能返回 null,表示取不到有效值。
15507
- */
15508
- ParamKey: string;
15509
- /**
15510
- * 参数描述
15511
- 注意:此字段可能返回 null,表示取不到有效值。
15512
- */
15513
- ParamDesc: string;
15514
- /**
15515
- * 参数定义
15516
- 注意:此字段可能返回 null,表示取不到有效值。
15517
- */
15518
- ParamDefine: string;
15519
- /**
15520
- * 创建时间
15521
- 注意:此字段可能返回 null,表示取不到有效值。
15522
- */
15523
- CreateTime: string;
15697
+ export interface DescribeTaskInstancesStatusRequest {
15524
15698
  /**
15525
- * 更新时间
15526
- 注意:此字段可能返回 null,表示取不到有效值。
15699
+ * 任务列表
15527
15700
  */
15528
- UpdateTime: string;
15701
+ RecordIdList: Array<string>;
15529
15702
  /**
15530
- * 任务名
15531
- 注意:此字段可能返回 null,表示取不到有效值。
15703
+ * 工作流id
15532
15704
  */
15533
- TaskName: string;
15705
+ WorkflowId: string;
15534
15706
  /**
15535
15707
  * 项目id
15536
- 注意:此字段可能返回 null,表示取不到有效值。
15537
15708
  */
15538
15709
  ProjectId: string;
15539
- /**
15540
- * 项目名
15541
- 注意:此字段可能返回 null,表示取不到有效值。
15542
- */
15543
- ProjectName: string;
15544
15710
  }
15545
15711
  /**
15546
15712
  * 任务表粒度指标信息
@@ -17311,6 +17477,31 @@ export interface DeleteResourceFilesResponse {
17311
17477
  */
17312
17478
  RequestId?: string;
17313
17479
  }
17480
+ /**
17481
+ * 根据任务信息获取实例状态信息实例
17482
+ */
17483
+ export interface ParamGetTaskInstancesStatusInfoResponseInstance {
17484
+ /**
17485
+ * 实例编号
17486
+ 注意:此字段可能返回 null,表示取不到有效值。
17487
+ */
17488
+ InstanceId?: string;
17489
+ /**
17490
+ * 状态
17491
+ 注意:此字段可能返回 null,表示取不到有效值。
17492
+ */
17493
+ Status?: string;
17494
+ /**
17495
+ * 记录编号
17496
+ 注意:此字段可能返回 null,表示取不到有效值。
17497
+ */
17498
+ RecordId?: string;
17499
+ /**
17500
+ * 任务编号
17501
+ 注意:此字段可能返回 null,表示取不到有效值。
17502
+ */
17503
+ TaskId?: string;
17504
+ }
17314
17505
  /**
17315
17506
  * DescribeFieldBasicInfo请求参数结构体
17316
17507
  */
@@ -18403,6 +18594,31 @@ export interface DeleteOfflineTaskRequest {
18403
18594
  */
18404
18595
  VirtualFlag: boolean;
18405
18596
  }
18597
+ /**
18598
+ * 超时弱依赖配置
18599
+ */
18600
+ export interface DependencyConfigTimeoutDTO {
18601
+ /**
18602
+ * 超时类型
18603
+ WAIT_TOTAL_TIMEOUT 等待总时长
18604
+
18605
+ RUNNING_TIMEOUT 运行时长
18606
+
18607
+ WAIT_TIME_POINT_TIMEOUT 等待超过配置时间
18608
+ 注意:此字段可能返回 null,表示取不到有效值。
18609
+ */
18610
+ TimeoutType?: string;
18611
+ /**
18612
+ * 超时时间
18613
+ 注意:此字段可能返回 null,表示取不到有效值。
18614
+ */
18615
+ TimeoutValue?: number;
18616
+ /**
18617
+ * 固定时间点
18618
+ 注意:此字段可能返回 null,表示取不到有效值。
18619
+ */
18620
+ TimeoutPoint?: string;
18621
+ }
18406
18622
  /**
18407
18623
  * 权重信息
18408
18624
  */
@@ -19812,6 +20028,10 @@ export interface BaseProject {
19812
20028
  注意:此字段可能返回 null,表示取不到有效值。
19813
20029
  */
19814
20030
  Model?: string;
20031
+ /**
20032
+ * 项目调度模式,task:任务模式 workflow:工作流模式
20033
+ */
20034
+ ScheduleMode?: string;
19815
20035
  }
19816
20036
  /**
19817
20037
  * ModifyDataSource请求参数结构体
@@ -20497,13 +20717,33 @@ export interface FailMessage {
20497
20717
  */
20498
20718
  export interface RunRerunScheduleInstancesResponse {
20499
20719
  /**
20500
- * 结果
20720
+ * 结果
20721
+ */
20722
+ Data?: BatchOperateResultOpsDto;
20723
+ /**
20724
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20725
+ */
20726
+ RequestId?: string;
20727
+ }
20728
+ /**
20729
+ * 项目扩展信息
20730
+ */
20731
+ export interface WorkspaceExt {
20732
+ /**
20733
+ * 2670965482618679296
20734
+ 注意:此字段可能返回 null,表示取不到有效值。
20735
+ */
20736
+ ProjectId?: string;
20737
+ /**
20738
+ * metrics
20739
+ 注意:此字段可能返回 null,表示取不到有效值。
20501
20740
  */
20502
- Data?: BatchOperateResultOpsDto;
20741
+ Key?: string;
20503
20742
  /**
20504
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20743
+ * json
20744
+ 注意:此字段可能返回 null,表示取不到有效值。
20505
20745
  */
20506
- RequestId?: string;
20746
+ Value?: string;
20507
20747
  }
20508
20748
  /**
20509
20749
  * 依赖配置
@@ -22234,17 +22474,49 @@ export interface SubscribeReceiver {
22234
22474
  ReceiverUserIdStr?: string;
22235
22475
  }
22236
22476
  /**
22237
- * DescribeWorkflowSchedulerInfoDs请求参数结构体
22477
+ * DescribeLineageInfo请求参数结构体
22238
22478
  */
22239
- export interface DescribeWorkflowSchedulerInfoDsRequest {
22479
+ export interface DescribeLineageInfoRequest {
22240
22480
  /**
22241
- * 项目ID
22481
+ * 实体原始唯一ID
22242
22482
  */
22243
- ProjectId: string;
22483
+ ResourceOriId?: string;
22244
22484
  /**
22245
- * 工作流ID
22485
+ * 实体类型
22246
22486
  */
22247
- WorkflowId: string;
22487
+ ResourceType?: string;
22488
+ /**
22489
+ * 血缘唯一ID
22490
+ */
22491
+ QualifiedId?: string;
22492
+ /**
22493
+ * 查询方向
22494
+ */
22495
+ Direction?: string;
22496
+ /**
22497
+ * 查询入度
22498
+ */
22499
+ InputDepth?: number;
22500
+ /**
22501
+ * 查询出度
22502
+ */
22503
+ OutputDepth?: number;
22504
+ /**
22505
+ * 数据来源
22506
+ */
22507
+ Platform?: string;
22508
+ /**
22509
+ * 血缘类型(分页使用)
22510
+ */
22511
+ LineageType?: string;
22512
+ /**
22513
+ * 页码
22514
+ */
22515
+ PageNumber?: number;
22516
+ /**
22517
+ * 分页大小
22518
+ */
22519
+ PageSize?: number;
22248
22520
  }
22249
22521
  /**
22250
22522
  * DescribeQualityScoreTrend请求参数结构体
@@ -22541,39 +22813,14 @@ export interface SpeedValue {
22541
22813
  Speed?: number;
22542
22814
  }
22543
22815
  /**
22544
- * 函数提交版本信息
22816
+ * 分组获取编排空间测试运行记录
22545
22817
  */
22546
- export interface FunctionVersion {
22547
- /**
22548
- * 版本号:V0 V1 V2
22549
- */
22550
- Tag?: string;
22551
- /**
22552
- * 提交人 ID
22553
- */
22554
- UserId?: string;
22555
- /**
22556
- * 变更类型:ADD、MODIFY
22557
- */
22558
- Type?: string;
22559
- /**
22560
- * 备注
22561
- */
22562
- Comment?: string;
22563
- /**
22564
- * 提交时间: UTC 秒数
22565
- */
22566
- Timestamp?: string;
22567
- /**
22568
- * 提交人名称
22569
- 注意:此字段可能返回 null,表示取不到有效值。
22570
- */
22571
- UserName?: string;
22818
+ export interface DescribeTaskInstancesStatusDto {
22572
22819
  /**
22573
- * 版本内容:json string 格式
22820
+ * 根据任务信息获取实例状态信息实例
22574
22821
  注意:此字段可能返回 null,表示取不到有效值。
22575
22822
  */
22576
- Content?: string;
22823
+ Instances?: Array<ParamGetTaskInstancesStatusInfoResponseInstance>;
22577
22824
  }
22578
22825
  /**
22579
22826
  * RegisterDsEventListener返回参数结构体
@@ -22746,6 +22993,20 @@ export interface UnboundProjectExecutorResourceResponse {
22746
22993
  */
22747
22994
  RequestId?: string;
22748
22995
  }
22996
+ /**
22997
+ * DescribeLineageInfo返回参数结构体
22998
+ */
22999
+ export interface DescribeLineageInfoResponse {
23000
+ /**
23001
+ * 血缘信息
23002
+ 注意:此字段可能返回 null,表示取不到有效值。
23003
+ */
23004
+ Data?: LineageCommonInfoVO;
23005
+ /**
23006
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23007
+ */
23008
+ RequestId?: string;
23009
+ }
22749
23010
  /**
22750
23011
  * ModifyTaskScript请求参数结构体
22751
23012
  */
@@ -23156,6 +23417,18 @@ export interface DescribeBatchOperateTaskRequest {
23156
23417
  * 是否筛选出可提交的任务
23157
23418
  */
23158
23419
  CanSubmit?: boolean;
23420
+ /**
23421
+ * 返回时间字段需要转换的时区
23422
+ */
23423
+ TimeZone?: string;
23424
+ /**
23425
+ * 任务最后更新时间最小值,ISO8601格式,如2025-07-16T15:00:00+08:00
23426
+ */
23427
+ MinUpdateTime?: string;
23428
+ /**
23429
+ * 任务最后更新时间最大值,ISO8601格式,如2025-07-17T15:00:00+08:00
23430
+ */
23431
+ MaxUpdateTime?: string;
23159
23432
  }
23160
23433
  /**
23161
23434
  * DescribeTableMeta返回参数结构体
@@ -26229,6 +26502,11 @@ export interface Project {
26229
26502
  注意:此字段可能返回 null,表示取不到有效值。
26230
26503
  */
26231
26504
  WorkspaceExt?: Array<WorkspaceExt>;
26505
+ /**
26506
+ * 创建时间时间戳
26507
+ 注意:此字段可能返回 null,表示取不到有效值。
26508
+ */
26509
+ CreateTimestamp?: number;
26232
26510
  }
26233
26511
  /**
26234
26512
  * DescribeRealTimeTaskMetricOverview返回参数结构体
@@ -27215,6 +27493,21 @@ export interface DescribeTaskScriptRequest {
27215
27493
  */
27216
27494
  TaskId: string;
27217
27495
  }
27496
+ /**
27497
+ * 数据质量规则分页
27498
+ */
27499
+ export interface RulePage {
27500
+ /**
27501
+ * 记录数
27502
+ 注意:此字段可能返回 null,表示取不到有效值。
27503
+ */
27504
+ TotalCount?: number;
27505
+ /**
27506
+ * 规则列表
27507
+ 注意:此字段可能返回 null,表示取不到有效值。
27508
+ */
27509
+ Items?: Array<Rule>;
27510
+ }
27218
27511
  /**
27219
27512
  * ModifyTaskLinksDs返回参数结构体
27220
27513
  */
@@ -27581,21 +27874,49 @@ export interface DescribeRulesByPageResponse {
27581
27874
  RequestId?: string;
27582
27875
  }
27583
27876
  /**
27584
- * 分区参数
27877
+ * LineageProcessVO
27585
27878
  */
27586
- export interface Partition {
27879
+ export interface LineageProcessVO {
27587
27880
  /**
27588
- * 分区转换策略
27881
+ * 原始唯一ID
27882
+ 注意:此字段可能返回 null,表示取不到有效值。
27589
27883
  */
27590
- Transform?: string;
27884
+ ProcessId?: string;
27591
27885
  /**
27592
- * 分区字段名
27886
+ * 任务类型
27887
+ 注意:此字段可能返回 null,表示取不到有效值。
27593
27888
  */
27594
- Name?: string;
27889
+ ProcessType?: string;
27595
27890
  /**
27596
- * 策略参数
27891
+ * 任务子类型
27892
+ 注意:此字段可能返回 null,表示取不到有效值。
27597
27893
  */
27598
- TransformArgs?: Array<string>;
27894
+ ProcessSubType?: string;
27895
+ /**
27896
+ * 名称
27897
+ 注意:此字段可能返回 null,表示取不到有效值。
27898
+ */
27899
+ ProcessName?: string;
27900
+ /**
27901
+ * 描述
27902
+ 注意:此字段可能返回 null,表示取不到有效值。
27903
+ */
27904
+ Description?: string;
27905
+ /**
27906
+ * 唯一ID
27907
+ 注意:此字段可能返回 null,表示取不到有效值。
27908
+ */
27909
+ QualifiedId?: string;
27910
+ /**
27911
+ * 来源
27912
+ 注意:此字段可能返回 null,表示取不到有效值。
27913
+ */
27914
+ Platform?: string;
27915
+ /**
27916
+ * 额外扩展参数
27917
+ 注意:此字段可能返回 null,表示取不到有效值。
27918
+ */
27919
+ ProcessProperties?: Array<LineageProperty>;
27599
27920
  }
27600
27921
  /**
27601
27922
  * AttributeItemVO参数
@@ -30182,6 +30503,10 @@ export interface DescribeFormVersionParamRequest {
30182
30503
  * 页号
30183
30504
  */
30184
30505
  Size?: number;
30506
+ /**
30507
+ * 来源 studio(Studio脚本)/codeTemplate(代码模版)
30508
+ */
30509
+ Source?: string;
30185
30510
  }
30186
30511
  /**
30187
30512
  * 数据质量数据来源数据库
@@ -31640,6 +31965,126 @@ export interface OrderField {
31640
31965
  */
31641
31966
  Direction: string;
31642
31967
  }
31968
+ /**
31969
+ * 任务类型
31970
+ */
31971
+ export interface TaskTypeDsVO {
31972
+ /**
31973
+ * 任务类型id
31974
+ 注意:此字段可能返回 null,表示取不到有效值。
31975
+ */
31976
+ TypeId?: number;
31977
+ /**
31978
+ * TypeDesc描述
31979
+ 注意:此字段可能返回 null,表示取不到有效值。
31980
+ */
31981
+ TypeDesc?: string;
31982
+ /**
31983
+ * 创建时间
31984
+ 注意:此字段可能返回 null,表示取不到有效值。
31985
+ */
31986
+ CreateTime?: string;
31987
+ /**
31988
+ * 服务器类型
31989
+ 注意:此字段可能返回 null,表示取不到有效值。
31990
+ */
31991
+ SourceServerType?: string;
31992
+ /**
31993
+ * 目标服务器类型
31994
+ 注意:此字段可能返回 null,表示取不到有效值。
31995
+ */
31996
+ TargetServerType?: string;
31997
+ /**
31998
+ * RunJarName名称
31999
+ 注意:此字段可能返回 null,表示取不到有效值。
32000
+ */
32001
+ RunJarName?: string;
32002
+ /**
32003
+ * Killable参数
32004
+ 注意:此字段可能返回 null,表示取不到有效值。
32005
+ */
32006
+ KillAble?: number;
32007
+ /**
32008
+ * TypeSort类型
32009
+ 注意:此字段可能返回 null,表示取不到有效值。
32010
+ */
32011
+ TypeSort?: string;
32012
+ /**
32013
+ * InCharge参数
32014
+ 注意:此字段可能返回 null,表示取不到有效值。
32015
+ */
32016
+ InCharge?: string;
32017
+ /**
32018
+ * 节点对应任务类型运行上限(暂时不考虑)
32019
+ 注意:此字段可能返回 null,表示取不到有效值。
32020
+ */
32021
+ BrokerParallelism?: number;
32022
+ /**
32023
+ * 每个任务运行上限(暂时不考虑
32024
+ 注意:此字段可能返回 null,表示取不到有效值。
32025
+ */
32026
+ TaskParallelism?: number;
32027
+ /**
32028
+ * 补录和重跑上限
32029
+ 注意:此字段可能返回 null,表示取不到有效值。
32030
+ */
32031
+ DoRedoParallelism?: number;
32032
+ /**
32033
+ * 0 为不可创建任务; >0 可创建任务
32034
+ 注意:此字段可能返回 null,表示取不到有效值。
32035
+ */
32036
+ DowngradePriorityTries?: number;
32037
+ /**
32038
+ * 重试等待时间
32039
+ 注意:此字段可能返回 null,表示取不到有效值。
32040
+ */
32041
+ RetryWait?: number;
32042
+ /**
32043
+ * 重试次数(在任务属性配置中设置)
32044
+ 注意:此字段可能返回 null,表示取不到有效值。
32045
+ */
32046
+ RetryLimit?: number;
32047
+ /**
32048
+ * DefaultAliveWait参数
32049
+ 注意:此字段可能返回 null,表示取不到有效值。
32050
+ */
32051
+ DefaultAliveWait?: number;
32052
+ /**
32053
+ * PollingSeconds秒数
32054
+ 注意:此字段可能返回 null,表示取不到有效值。
32055
+ */
32056
+ PollingSeconds?: number;
32057
+ /**
32058
+ * 参数列表xml
32059
+ 注意:此字段可能返回 null,表示取不到有效值。
32060
+ */
32061
+ ParamList?: string;
32062
+ /**
32063
+ * TaskTypeExts参数
32064
+ 注意:此字段可能返回 null,表示取不到有效值。
32065
+ */
32066
+ TaskTypeExtension?: Array<TaskTypeExtParamDsVO>;
32067
+ /**
32068
+ * 对应文件类型
32069
+ 注意:此字段可能返回 null,表示取不到有效值。
32070
+ */
32071
+ FileType?: string;
32072
+ /**
32073
+ * 是否选择脚本路径
32074
+ 注意:此字段可能返回 null,表示取不到有效值。
32075
+ */
32076
+ SelectFilePath?: boolean;
32077
+ /**
32078
+ * classpath是否要排除掉common-lib,默认是0不排除
32079
+ 注意:此字段可能返回 null,表示取不到有效值。
32080
+ */
32081
+ ExcludeCommonLib?: boolean;
32082
+ /**
32083
+ * runner任务完成后需要触发的hook
32084
+ 注意:此字段可能返回 null,表示取不到有效值。
32085
+ */
32086
+ PostHooks?: string;
32087
+ }
31643
32088
  /**
31644
32089
  * BatchSuspendIntegrationTasks返回参数结构体
31645
32090
  */