tencentcloud-sdk-nodejs-wedata 4.0.963 → 4.0.970

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.
@@ -235,6 +235,36 @@ export interface DescribeStreamTaskLogListRequest {
235
235
  */
236
236
  Keyword?: string;
237
237
  }
238
+ /**
239
+ * 数据源信息
240
+ */
241
+ export interface GovDatasourceInfo {
242
+ /**
243
+ * 数据源id
244
+ 注意:此字段可能返回 null,表示取不到有效值。
245
+ */
246
+ DatasourceId?: string;
247
+ /**
248
+ * 数据源名称
249
+ 注意:此字段可能返回 null,表示取不到有效值。
250
+ */
251
+ DatasourceName?: string;
252
+ /**
253
+ * 数据源集群ID
254
+ 注意:此字段可能返回 null,表示取不到有效值。
255
+ */
256
+ DatasourceClusterId?: string;
257
+ /**
258
+ * 数据源urn
259
+ 注意:此字段可能返回 null,表示取不到有效值。
260
+ */
261
+ DatasourceUrn?: string;
262
+ /**
263
+ * 数据源环境
264
+ 注意:此字段可能返回 null,表示取不到有效值。
265
+ */
266
+ DatasourceEnv?: string;
267
+ }
238
268
  /**
239
269
  * DescribeIntegrationNode返回参数结构体
240
270
  */
@@ -1805,6 +1835,29 @@ export interface RuleGroupExecResult {
1805
1835
  注意:此字段可能返回 null,表示取不到有效值。
1806
1836
  */
1807
1837
  DsEnvType?: string;
1838
+ /**
1839
+ * 项目id
1840
+ 注意:此字段可能返回 null,表示取不到有效值。
1841
+ */
1842
+ ProjectId?: string;
1843
+ /**
1844
+ * 项目名称
1845
+ 注意:此字段可能返回 null,表示取不到有效值。
1846
+ */
1847
+ ProjectName?: string;
1848
+ /**
1849
+ * 实例状态
1850
+ 注意:此字段可能返回 null,表示取不到有效值。
1851
+ */
1852
+ InstanceStatus?: string;
1853
+ /**
1854
+ * 实例运行的开始时间
1855
+ */
1856
+ StartTime?: string;
1857
+ /**
1858
+ * 实例运行的结束时间
1859
+ */
1860
+ FinishTime?: string;
1808
1861
  }
1809
1862
  /**
1810
1863
  * 告警事件详情
@@ -2693,6 +2746,16 @@ export interface InstanceOpsDto {
2693
2746
  注意:此字段可能返回 null,表示取不到有效值。
2694
2747
  */
2695
2748
  CirculateInstanceList?: Array<InstanceOpsDto>;
2749
+ /**
2750
+ * 并发策略, 0: 等待并发, 1: kill自身
2751
+ 注意:此字段可能返回 null,表示取不到有效值。
2752
+ */
2753
+ ConcurrentStrategy?: number;
2754
+ /**
2755
+ * 调度运行方式, 0: 周期调度, 1: 空跑调度
2756
+ 注意:此字段可能返回 null,表示取不到有效值。
2757
+ */
2758
+ ScheduleRunType?: number;
2696
2759
  }
2697
2760
  /**
2698
2761
  * DescribeDutyScheduleDetails请求参数结构体
@@ -3171,27 +3234,27 @@ export interface ProjectUserRole {
3171
3234
  * 用户角色对象
3172
3235
  注意:此字段可能返回 null,表示取不到有效值。
3173
3236
  */
3174
- Roles: Array<SystemRole>;
3237
+ Roles?: Array<SystemRole>;
3175
3238
  /**
3176
3239
  * mc
3177
3240
  注意:此字段可能返回 null,表示取不到有效值。
3178
3241
  */
3179
- UserName: string;
3242
+ UserName?: string;
3180
3243
  /**
3181
3244
  * 用户id
3182
3245
  注意:此字段可能返回 null,表示取不到有效值。
3183
3246
  */
3184
- UserId: string;
3247
+ UserId?: string;
3185
3248
  /**
3186
3249
  * 创建时间
3187
3250
  注意:此字段可能返回 null,表示取不到有效值。
3188
3251
  */
3189
- CreateTime: string;
3252
+ CreateTime?: string;
3190
3253
  /**
3191
3254
  * 是否创建者
3192
3255
  注意:此字段可能返回 null,表示取不到有效值。
3193
3256
  */
3194
- Creator: boolean;
3257
+ Creator?: boolean;
3195
3258
  /**
3196
3259
  * 显示名称
3197
3260
  注意:此字段可能返回 null,表示取不到有效值。
@@ -3202,6 +3265,26 @@ export interface ProjectUserRole {
3202
3265
  注意:此字段可能返回 null,表示取不到有效值。
3203
3266
  */
3204
3267
  IsProjectAdmin?: boolean;
3268
+ /**
3269
+ * 手机号
3270
+ 注意:此字段可能返回 null,表示取不到有效值。
3271
+ */
3272
+ PhoneNum?: string;
3273
+ /**
3274
+ * 邮箱
3275
+ 注意:此字段可能返回 null,表示取不到有效值。
3276
+ */
3277
+ Email?: string;
3278
+ /**
3279
+ * 主账号id
3280
+ 注意:此字段可能返回 null,表示取不到有效值。
3281
+ */
3282
+ OwnerUin?: string;
3283
+ /**
3284
+ * 租户iD
3285
+ 注意:此字段可能返回 null,表示取不到有效值。
3286
+ */
3287
+ AppId?: string;
3205
3288
  }
3206
3289
  /**
3207
3290
  * 质量规则执行策略
@@ -4082,6 +4165,16 @@ export interface Rule {
4082
4165
  注意:此字段可能返回 null,表示取不到有效值。
4083
4166
  */
4084
4167
  TargetSchemaName?: string;
4168
+ /**
4169
+ * 项目id
4170
+ 注意:此字段可能返回 null,表示取不到有效值。
4171
+ */
4172
+ ProjectId?: string;
4173
+ /**
4174
+ * 项目名称
4175
+ 注意:此字段可能返回 null,表示取不到有效值。
4176
+ */
4177
+ ProjectName?: string;
4085
4178
  }
4086
4179
  /**
4087
4180
  * DescribeTableLineage返回参数结构体
@@ -4184,14 +4277,26 @@ export interface DescribeInstanceLogDetailRequest {
4184
4277
  * 数据时间
4185
4278
  */
4186
4279
  CurRunDate: string;
4280
+ /**
4281
+ * 日志级别,Info/Debug/Warn/Error/All
4282
+ */
4283
+ LogLevelType?: string;
4284
+ /**
4285
+ * 文件类型,Log/Code
4286
+ */
4287
+ ExecutionFileType?: string;
4288
+ /**
4289
+ * 统一执行平台执行id
4290
+ */
4291
+ ExecutionJobId?: string;
4187
4292
  /**
4188
4293
  * 服务器Ip
4189
4294
  */
4190
- BrokerIp: string;
4295
+ BrokerIp?: string;
4191
4296
  /**
4192
4297
  * 文件Name
4193
4298
  */
4194
- OriginFileName: string;
4299
+ OriginFileName?: string;
4195
4300
  /**
4196
4301
  * 起始行
4197
4302
  */
@@ -4200,6 +4305,14 @@ export interface DescribeInstanceLogDetailRequest {
4200
4305
  * 每次查询行数
4201
4306
  */
4202
4307
  LineCount?: number;
4308
+ /**
4309
+ * 查询日志扩展信息,通过统一执行平台接口分页查询日志时需要带上,第一页时为null
4310
+ */
4311
+ ExtInfo?: string;
4312
+ /**
4313
+ * 请求来源,WEB 前端;CLIENT 客户端
4314
+ */
4315
+ RequestFromSource?: string;
4203
4316
  }
4204
4317
  /**
4205
4318
  * BatchSuspendIntegrationTasks请求参数结构体
@@ -4830,6 +4943,10 @@ export interface GetCosTokenRequest {
4830
4943
  * 远程地址
4831
4944
  */
4832
4945
  RemotePath?: string;
4946
+ /**
4947
+ * 地域
4948
+ */
4949
+ RemoteRegion?: string;
4833
4950
  }
4834
4951
  /**
4835
4952
  * 工作流
@@ -5406,11 +5523,11 @@ export interface DescribeOrganizationalFunctionsRequest {
5406
5523
  /**
5407
5524
  * 过滤条件
5408
5525
  */
5409
- Filters?: Filter;
5526
+ Filters?: Array<Filter>;
5410
5527
  /**
5411
5528
  * 排序条件
5412
5529
  */
5413
- OrderFields?: OrderField;
5530
+ OrderFields?: Array<OrderField>;
5414
5531
  }
5415
5532
  /**
5416
5533
  * DescribeRuleTemplate返回参数结构体
@@ -5538,6 +5655,36 @@ export interface DatabaseMeta {
5538
5655
  注意:此字段可能返回 null,表示取不到有效值。
5539
5656
  */
5540
5657
  CreateTime?: string;
5658
+ /**
5659
+ * 总表数
5660
+ 注意:此字段可能返回 null,表示取不到有效值。
5661
+ */
5662
+ TableCount?: number;
5663
+ /**
5664
+ * 数据源信息
5665
+ 注意:此字段可能返回 null,表示取不到有效值。
5666
+ */
5667
+ DatasourceList?: Array<GovDatasourceInfo>;
5668
+ /**
5669
+ * 采集任务id
5670
+ 注意:此字段可能返回 null,表示取不到有效值。
5671
+ */
5672
+ CollectJobId?: string;
5673
+ /**
5674
+ * 采集任务名称
5675
+ 注意:此字段可能返回 null,表示取不到有效值。
5676
+ */
5677
+ CollectJobName?: string;
5678
+ /**
5679
+ * 引擎id
5680
+ 注意:此字段可能返回 null,表示取不到有效值。
5681
+ */
5682
+ ClusterId?: string;
5683
+ /**
5684
+ * 引擎名称
5685
+ 注意:此字段可能返回 null,表示取不到有效值。
5686
+ */
5687
+ ClusterName?: string;
5541
5688
  }
5542
5689
  /**
5543
5690
  * DescribeAllByFolderNew请求参数结构体
@@ -6363,6 +6510,11 @@ export interface DescribeTableQualityDetailsRequest {
6363
6510
  * DescribeScheduleInstances返回参数结构体
6364
6511
  */
6365
6512
  export interface DescribeScheduleInstancesResponse {
6513
+ /**
6514
+ * 请求来源,WEB 前端;CLIENT 客户端
6515
+ 注意:此字段可能返回 null,表示取不到有效值。
6516
+ */
6517
+ RequestFromSource?: string;
6366
6518
  /**
6367
6519
  * 实例结果集
6368
6520
  */
@@ -8065,6 +8217,11 @@ export interface InstanceLogInfo {
8065
8217
  注意:此字段可能返回 null,表示取不到有效值。
8066
8218
  */
8067
8219
  ExtensionInfo?: Array<AttributeItemDTO>;
8220
+ /**
8221
+ * 统一执行平台,下发执行Id
8222
+ 注意:此字段可能返回 null,表示取不到有效值。
8223
+ */
8224
+ ExecutionJobId?: string;
8068
8225
  }
8069
8226
  /**
8070
8227
  * GetFileInfo请求参数结构体
@@ -8708,6 +8865,21 @@ export interface InstanceLifeCycleOpsDto {
8708
8865
  注意:此字段可能返回 null,表示取不到有效值。
8709
8866
  */
8710
8867
  InstanceState?: string;
8868
+ /**
8869
+ * 调度运行方式, 0: 周期调度, 1: 空跑调度
8870
+ 注意:此字段可能返回 null,表示取不到有效值。
8871
+ */
8872
+ ScheduleRunType?: number;
8873
+ /**
8874
+ * 统一执行平台,下发执行Id
8875
+ 注意:此字段可能返回 null,表示取不到有效值。
8876
+ */
8877
+ ExecutionJobId?: string;
8878
+ /**
8879
+ * 实例运行类型: 0: 普通运行, 1: 空跑运行
8880
+ 注意:此字段可能返回 null,表示取不到有效值。
8881
+ */
8882
+ InstanceRunType?: number;
8711
8883
  }
8712
8884
  /**
8713
8885
  * 告警接收人详情
@@ -8898,6 +9070,21 @@ export interface WorkflowScheduleDtoDs {
8898
9070
  注意:此字段可能返回 null,表示取不到有效值。
8899
9071
  */
8900
9072
  LatestSubmitTime?: string;
9073
+ /**
9074
+ * 日历调度是否开启
9075
+ 注意:此字段可能返回 null,表示取不到有效值。
9076
+ */
9077
+ CalendarOpen?: string;
9078
+ /**
9079
+ * 日历调度名称
9080
+ 注意:此字段可能返回 null,表示取不到有效值。
9081
+ */
9082
+ CalendarName?: string;
9083
+ /**
9084
+ * 日历调度id
9085
+ 注意:此字段可能返回 null,表示取不到有效值。
9086
+ */
9087
+ CalendarId?: string;
8901
9088
  }
8902
9089
  /**
8903
9090
  * ModifyRuleTemplate请求参数结构体
@@ -13509,6 +13696,10 @@ export interface InstanceApiOpsRequest {
13509
13696
  * 资源组id,多个资源组id用英文逗号分隔
13510
13697
  */
13511
13698
  ExecutorGroupIdList?: Array<string>;
13699
+ /**
13700
+ * true 只过滤重跑过的实例,false 忽略此过滤条件,结果集过滤条件中不包括是否重跑
13701
+ */
13702
+ OnlyRerun?: boolean;
13512
13703
  }
13513
13704
  /**
13514
13705
  * SubmitSqlTask请求参数结构体
@@ -13717,6 +13908,21 @@ export interface InstanceLogInfoOpsDto {
13717
13908
  注意:此字段可能返回 null,表示取不到有效值。
13718
13909
  */
13719
13910
  LineCount?: number;
13911
+ /**
13912
+ * 统一执行平台日志分页查询参数
13913
+ 注意:此字段可能返回 null,表示取不到有效值。
13914
+ */
13915
+ ExtInfo?: string;
13916
+ /**
13917
+ * 日志分页查询,是否最后一页
13918
+ 注意:此字段可能返回 null,表示取不到有效值。
13919
+ */
13920
+ IsEnd?: boolean;
13921
+ /**
13922
+ * 文件大小
13923
+ 注意:此字段可能返回 null,表示取不到有效值。
13924
+ */
13925
+ FileSize?: string;
13720
13926
  }
13721
13927
  /**
13722
13928
  * DeleteFilePath返回参数结构体
@@ -15238,6 +15444,31 @@ export interface TableMeta {
15238
15444
  注意:此字段可能返回 null,表示取不到有效值。
15239
15445
  */
15240
15446
  Schema?: string;
15447
+ /**
15448
+ * 关联数据眼信息
15449
+ 注意:此字段可能返回 null,表示取不到有效值。
15450
+ */
15451
+ CollectDatasourceList?: Array<GovDatasourceInfo>;
15452
+ /**
15453
+ * 采集任务id
15454
+ 注意:此字段可能返回 null,表示取不到有效值。
15455
+ */
15456
+ CollectJobId?: string;
15457
+ /**
15458
+ * 采集任务名称
15459
+ 注意:此字段可能返回 null,表示取不到有效值。
15460
+ */
15461
+ CollectJobName?: string;
15462
+ /**
15463
+ * 数据源urn
15464
+ 注意:此字段可能返回 null,表示取不到有效值。
15465
+ */
15466
+ Urn?: string;
15467
+ /**
15468
+ * 是否有修改业务权限
15469
+ 注意:此字段可能返回 null,表示取不到有效值。
15470
+ */
15471
+ HasBizPermission?: boolean;
15241
15472
  }
15242
15473
  /**
15243
15474
  * CountOpsInstanceState返回参数结构体
@@ -16806,14 +17037,30 @@ export interface DescribeInstanceLogFileRequest {
16806
17037
  * 实例数据时间
16807
17038
  */
16808
17039
  CurRunDate: string;
17040
+ /**
17041
+ * 请求来源,WEB 前端;CLIENT 客户端
17042
+ */
17043
+ RequestFromSource?: string;
16809
17044
  /**
16810
17045
  * 执行机IP
16811
17046
  */
16812
- BrokerIp: string;
17047
+ BrokerIp?: string;
16813
17048
  /**
16814
17049
  * 日志文件名
16815
17050
  */
16816
- OriginFileName: string;
17051
+ OriginFileName?: string;
17052
+ /**
17053
+ * 执行平台下发执行id
17054
+ */
17055
+ ExecutionJobId?: string;
17056
+ /**
17057
+ * 日志级别,Info/Debug/Warn/Error/All
17058
+ */
17059
+ LogLevelType?: string;
17060
+ /**
17061
+ * 文件类型,Log/Code
17062
+ */
17063
+ ExecutionFileType?: string;
16817
17064
  }
16818
17065
  /**
16819
17066
  * UnlockIntegrationTask请求参数结构体
@@ -17309,6 +17556,11 @@ export interface RuleExecResult {
17309
17556
  注意:此字段可能返回 null,表示取不到有效值。
17310
17557
  */
17311
17558
  AlarmLevel?: number;
17559
+ /**
17560
+ * 触发条件
17561
+ 注意:此字段可能返回 null,表示取不到有效值。
17562
+ */
17563
+ TriggerCondition?: string;
17312
17564
  }
17313
17565
  /**
17314
17566
  * Table
@@ -17590,32 +17842,32 @@ export interface SystemRole {
17590
17842
  /**
17591
17843
  * 角色id
17592
17844
  */
17593
- RoleId: string;
17845
+ RoleId?: string;
17594
17846
  /**
17595
17847
  * 角色名称
17596
17848
  注意:此字段可能返回 null,表示取不到有效值。
17597
17849
  */
17598
- Name: string;
17850
+ Name?: string;
17599
17851
  /**
17600
17852
  * 角色昵称
17601
17853
  注意:此字段可能返回 null,表示取不到有效值。
17602
17854
  */
17603
- NameCn: string;
17855
+ NameCn?: string;
17604
17856
  /**
17605
17857
  * 描述
17606
17858
  注意:此字段可能返回 null,表示取不到有效值。
17607
17859
  */
17608
- Description: string;
17860
+ Description?: string;
17609
17861
  /**
17610
17862
  * 角色权限
17611
17863
  注意:此字段可能返回 null,表示取不到有效值。
17612
17864
  */
17613
- Privileges: Array<RolePrivilege>;
17865
+ Privileges?: Array<RolePrivilege>;
17614
17866
  /**
17615
17867
  * 方法路径
17616
17868
  注意:此字段可能返回 null,表示取不到有效值。
17617
17869
  */
17618
- MethodPaths: Array<string>;
17870
+ MethodPaths?: Array<string>;
17619
17871
  /**
17620
17872
  * 角色类型, 分为System,Tenant,Project,Commercial
17621
17873
  注意:此字段可能返回 null,表示取不到有效值。
@@ -19341,6 +19593,10 @@ export interface DescribeSchedulerInstanceStatusRequest {
19341
19593
  * DescribeScheduleInstances请求参数结构体
19342
19594
  */
19343
19595
  export interface DescribeScheduleInstancesRequest {
19596
+ /**
19597
+ * 请求来源,WEB 前端;CLIENT 客户端
19598
+ */
19599
+ RequestFromSource?: string;
19344
19600
  /**
19345
19601
  * 实例列表
19346
19602
  */
@@ -19413,6 +19669,10 @@ export interface DescribeScheduleInstancesRequest {
19413
19669
  * 是否计算总数
19414
19670
  */
19415
19671
  IsCount?: boolean;
19672
+ /**
19673
+ * 项目ID列表,用于多项目实例列表筛选,请注意,该字段传入时 ProjectId 字段也必须传,且传入的 ProjectIds 中的项目ID必须是当前用户有权限的项目ID,否则会由于权限校验失败报错
19674
+ */
19675
+ ProjectIds?: Array<string>;
19416
19676
  }
19417
19677
  /**
19418
19678
  * DescribeRealTimeTaskSpeed返回参数结构体
@@ -19815,6 +20075,23 @@ export interface RenewWorkflowSchedulerInfoDsRequest {
19815
20075
  * CrontabExpression
19816
20076
  */
19817
20077
  CrontabExpression?: string;
20078
+ /**
20079
+ * 0:不修改
20080
+ 1:将任务的上游依赖配置改为默认值
20081
+ */
20082
+ ModifyCycleValue?: string;
20083
+ /**
20084
+ * 是否开启日历调度 1 开启 0关闭
20085
+ */
20086
+ CalendarOpen?: string;
20087
+ /**
20088
+ * 日历名称
20089
+ */
20090
+ CalendarName?: string;
20091
+ /**
20092
+ * 日历id
20093
+ */
20094
+ CalendarId?: string;
19818
20095
  }
19819
20096
  /**
19820
20097
  * 值班信息表
@@ -21845,6 +22122,11 @@ export interface OrganizationalFunction {
21845
22122
  注意:此字段可能返回 null,表示取不到有效值。
21846
22123
  */
21847
22124
  EnvType?: string;
22125
+ /**
22126
+ * 函数资源文件类型
22127
+ 注意:此字段可能返回 null,表示取不到有效值。
22128
+ */
22129
+ FunctionResourceFileType?: string;
21848
22130
  }
21849
22131
  /**
21850
22132
  * 通用排序字段