tencentcloud-sdk-wedata 3.0.676 → 3.0.677

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.
@@ -166,10 +166,19 @@ module TencentCloud
166
166
  # @param RegularId: 告警规则ID
167
167
  # 注意:此字段可能返回 null,表示取不到有效值。
168
168
  # @type RegularId: String
169
+ # @param AlarmRecipientName: 告警接收人昵称
170
+ # 注意:此字段可能返回 null,表示取不到有效值。
171
+ # @type AlarmRecipientName: String
172
+ # @param TaskType: 告警任务类型
173
+ # 注意:此字段可能返回 null,表示取不到有效值。
174
+ # @type TaskType: Integer
175
+ # @param SendResult: 发送结果
176
+ # 注意:此字段可能返回 null,表示取不到有效值。
177
+ # @type SendResult: String
169
178
 
170
- attr_accessor :AlarmId, :AlarmTime, :TaskId, :RegularName, :AlarmLevel, :AlarmWay, :AlarmRecipientId, :ProjectId, :AlarmIndicator, :AlarmIndicatorDesc, :TriggerType, :EstimatedTime, :InstanceId, :TaskName, :IsSendSuccess, :MessageId, :Operator, :RegularId
179
+ attr_accessor :AlarmId, :AlarmTime, :TaskId, :RegularName, :AlarmLevel, :AlarmWay, :AlarmRecipientId, :ProjectId, :AlarmIndicator, :AlarmIndicatorDesc, :TriggerType, :EstimatedTime, :InstanceId, :TaskName, :IsSendSuccess, :MessageId, :Operator, :RegularId, :AlarmRecipientName, :TaskType, :SendResult
171
180
 
172
- def initialize(alarmid=nil, alarmtime=nil, taskid=nil, regularname=nil, alarmlevel=nil, alarmway=nil, alarmrecipientid=nil, projectid=nil, alarmindicator=nil, alarmindicatordesc=nil, triggertype=nil, estimatedtime=nil, instanceid=nil, taskname=nil, issendsuccess=nil, messageid=nil, operator=nil, regularid=nil)
181
+ def initialize(alarmid=nil, alarmtime=nil, taskid=nil, regularname=nil, alarmlevel=nil, alarmway=nil, alarmrecipientid=nil, projectid=nil, alarmindicator=nil, alarmindicatordesc=nil, triggertype=nil, estimatedtime=nil, instanceid=nil, taskname=nil, issendsuccess=nil, messageid=nil, operator=nil, regularid=nil, alarmrecipientname=nil, tasktype=nil, sendresult=nil)
173
182
  @AlarmId = alarmid
174
183
  @AlarmTime = alarmtime
175
184
  @TaskId = taskid
@@ -188,6 +197,9 @@ module TencentCloud
188
197
  @MessageId = messageid
189
198
  @Operator = operator
190
199
  @RegularId = regularid
200
+ @AlarmRecipientName = alarmrecipientname
201
+ @TaskType = tasktype
202
+ @SendResult = sendresult
191
203
  end
192
204
 
193
205
  def deserialize(params)
@@ -209,6 +221,9 @@ module TencentCloud
209
221
  @MessageId = params['MessageId']
210
222
  @Operator = params['Operator']
211
223
  @RegularId = params['RegularId']
224
+ @AlarmRecipientName = params['AlarmRecipientName']
225
+ @TaskType = params['TaskType']
226
+ @SendResult = params['SendResult']
212
227
  end
213
228
  end
214
229
 
@@ -2281,8 +2296,8 @@ module TencentCloud
2281
2296
 
2282
2297
  attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType
2283
2298
  extend Gem::Deprecate
2284
- deprecate :TaskId, :none, 2023, 8
2285
- deprecate :TaskId=, :none, 2023, 8
2299
+ deprecate :TaskId, :none, 2023, 10
2300
+ deprecate :TaskId=, :none, 2023, 10
2286
2301
 
2287
2302
  def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil)
2288
2303
  @ProjectId = projectid
@@ -3564,9 +3579,9 @@ module TencentCloud
3564
3579
 
3565
3580
  # CreateCustomFunction请求参数结构体
3566
3581
  class CreateCustomFunctionRequest < TencentCloud::Common::AbstractModel
3567
- # @param Type: 类型:HIVE、SPARK
3582
+ # @param Type: 枚举值:HIVE、SPARK、DLC
3568
3583
  # @type Type: String
3569
- # @param Kind: 分类:窗口函数、聚合函数、日期函数......
3584
+ # @param Kind: 枚举值:ANALYSIS(函数)、ENCRYPTION(加密函数)、AGGREGATE(聚合函数)、LOGIC(逻辑函数)、DATE_AND_TIME(日期与时间函数)、MATH(数学函数)、CONVERSION(转换函数)、STRING(字符串函数)、IP_AND_DOMAIN(IP和域名函数)、WINDOW(窗口函数)、OTHER(其他函数)
3570
3585
  # @type Kind: String
3571
3586
  # @param Name: 函数名称
3572
3587
  # @type Name: String
@@ -3725,6 +3740,51 @@ module TencentCloud
3725
3740
  end
3726
3741
  end
3727
3742
 
3743
+ # CreateDsFolder请求参数结构体
3744
+ class CreateDsFolderRequest < TencentCloud::Common::AbstractModel
3745
+ # @param ProjectId: 项目Id
3746
+ # @type ProjectId: String
3747
+ # @param FolderName: 文件夹名称
3748
+ # @type FolderName: String
3749
+ # @param ParentsFolderId: 父文件夹ID
3750
+ # @type ParentsFolderId: String
3751
+
3752
+ attr_accessor :ProjectId, :FolderName, :ParentsFolderId
3753
+
3754
+ def initialize(projectid=nil, foldername=nil, parentsfolderid=nil)
3755
+ @ProjectId = projectid
3756
+ @FolderName = foldername
3757
+ @ParentsFolderId = parentsfolderid
3758
+ end
3759
+
3760
+ def deserialize(params)
3761
+ @ProjectId = params['ProjectId']
3762
+ @FolderName = params['FolderName']
3763
+ @ParentsFolderId = params['ParentsFolderId']
3764
+ end
3765
+ end
3766
+
3767
+ # CreateDsFolder返回参数结构体
3768
+ class CreateDsFolderResponse < TencentCloud::Common::AbstractModel
3769
+ # @param Data: 文件夹Id,null则创建失败
3770
+ # 注意:此字段可能返回 null,表示取不到有效值。
3771
+ # @type Data: String
3772
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3773
+ # @type RequestId: String
3774
+
3775
+ attr_accessor :Data, :RequestId
3776
+
3777
+ def initialize(data=nil, requestid=nil)
3778
+ @Data = data
3779
+ @RequestId = requestid
3780
+ end
3781
+
3782
+ def deserialize(params)
3783
+ @Data = params['Data']
3784
+ @RequestId = params['RequestId']
3785
+ end
3786
+ end
3787
+
3728
3788
  # CreateFolder请求参数结构体
3729
3789
  class CreateFolderRequest < TencentCloud::Common::AbstractModel
3730
3790
  # @param ProjectId: 项目Id
@@ -3951,7 +4011,7 @@ module TencentCloud
3951
4011
  # @type NodeInfo: :class:`Tencentcloud::Wedata.v20210820.models.IntegrationNodeInfo`
3952
4012
  # @param ProjectId: 项目id
3953
4013
  # @type ProjectId: String
3954
- # @param TaskType: 任务类型
4014
+ # @param TaskType: 任务类型,201为实时任务,202为离线任务
3955
4015
  # @type TaskType: Integer
3956
4016
 
3957
4017
  attr_accessor :NodeInfo, :ProjectId, :TaskType
@@ -5447,6 +5507,46 @@ module TencentCloud
5447
5507
  end
5448
5508
  end
5449
5509
 
5510
+ # DeleteDsFolder请求参数结构体
5511
+ class DeleteDsFolderRequest < TencentCloud::Common::AbstractModel
5512
+ # @param ProjectId: 项目Id
5513
+ # @type ProjectId: String
5514
+ # @param FolderId: 文件夹ID
5515
+ # @type FolderId: String
5516
+
5517
+ attr_accessor :ProjectId, :FolderId
5518
+
5519
+ def initialize(projectid=nil, folderid=nil)
5520
+ @ProjectId = projectid
5521
+ @FolderId = folderid
5522
+ end
5523
+
5524
+ def deserialize(params)
5525
+ @ProjectId = params['ProjectId']
5526
+ @FolderId = params['FolderId']
5527
+ end
5528
+ end
5529
+
5530
+ # DeleteDsFolder返回参数结构体
5531
+ class DeleteDsFolderResponse < TencentCloud::Common::AbstractModel
5532
+ # @param Data: true代表删除成功,false代表删除失败
5533
+ # @type Data: Boolean
5534
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5535
+ # @type RequestId: String
5536
+
5537
+ attr_accessor :Data, :RequestId
5538
+
5539
+ def initialize(data=nil, requestid=nil)
5540
+ @Data = data
5541
+ @RequestId = requestid
5542
+ end
5543
+
5544
+ def deserialize(params)
5545
+ @Data = params['Data']
5546
+ @RequestId = params['RequestId']
5547
+ end
5548
+ end
5549
+
5450
5550
  # DeleteFilePath请求参数结构体
5451
5551
  class DeleteFilePathRequest < TencentCloud::Common::AbstractModel
5452
5552
  # @param ProjectId: 项目ID
@@ -8463,6 +8563,128 @@ module TencentCloud
8463
8563
  end
8464
8564
  end
8465
8565
 
8566
+ # DescribeDsFolderTree请求参数结构体
8567
+ class DescribeDsFolderTreeRequest < TencentCloud::Common::AbstractModel
8568
+ # @param ProjectId: 项目id
8569
+ # @type ProjectId: String
8570
+ # @param FirstLevelPull: 是否一级拉取
8571
+ # @type FirstLevelPull: Boolean
8572
+ # @param FolderId: 文件夹ID
8573
+ # @type FolderId: String
8574
+ # @param WorkflowId: 工作流ID
8575
+ # @type WorkflowId: String
8576
+ # @param Keyword: 关键字搜索
8577
+ # @type Keyword: String
8578
+ # @param IncludeWorkflow: 是否包含工作流
8579
+ # @type IncludeWorkflow: Boolean
8580
+ # @param IncludeTask: 是否包含任务
8581
+ # @type IncludeTask: Boolean
8582
+
8583
+ attr_accessor :ProjectId, :FirstLevelPull, :FolderId, :WorkflowId, :Keyword, :IncludeWorkflow, :IncludeTask
8584
+
8585
+ def initialize(projectid=nil, firstlevelpull=nil, folderid=nil, workflowid=nil, keyword=nil, includeworkflow=nil, includetask=nil)
8586
+ @ProjectId = projectid
8587
+ @FirstLevelPull = firstlevelpull
8588
+ @FolderId = folderid
8589
+ @WorkflowId = workflowid
8590
+ @Keyword = keyword
8591
+ @IncludeWorkflow = includeworkflow
8592
+ @IncludeTask = includetask
8593
+ end
8594
+
8595
+ def deserialize(params)
8596
+ @ProjectId = params['ProjectId']
8597
+ @FirstLevelPull = params['FirstLevelPull']
8598
+ @FolderId = params['FolderId']
8599
+ @WorkflowId = params['WorkflowId']
8600
+ @Keyword = params['Keyword']
8601
+ @IncludeWorkflow = params['IncludeWorkflow']
8602
+ @IncludeTask = params['IncludeTask']
8603
+ end
8604
+ end
8605
+
8606
+ # DescribeDsFolderTree返回参数结构体
8607
+ class DescribeDsFolderTreeResponse < TencentCloud::Common::AbstractModel
8608
+ # @param Data: 统一树结构返回属性列表
8609
+ # @type Data: Array
8610
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8611
+ # @type RequestId: String
8612
+
8613
+ attr_accessor :Data, :RequestId
8614
+
8615
+ def initialize(data=nil, requestid=nil)
8616
+ @Data = data
8617
+ @RequestId = requestid
8618
+ end
8619
+
8620
+ def deserialize(params)
8621
+ unless params['Data'].nil?
8622
+ @Data = []
8623
+ params['Data'].each do |i|
8624
+ pathnodedsvo_tmp = PathNodeDsVO.new
8625
+ pathnodedsvo_tmp.deserialize(i)
8626
+ @Data << pathnodedsvo_tmp
8627
+ end
8628
+ end
8629
+ @RequestId = params['RequestId']
8630
+ end
8631
+ end
8632
+
8633
+ # DescribeDsParentFolderTree请求参数结构体
8634
+ class DescribeDsParentFolderTreeRequest < TencentCloud::Common::AbstractModel
8635
+ # @param ProjectId: 项目id
8636
+ # @type ProjectId: String
8637
+ # @param FolderId: 文件夹ID
8638
+ # @type FolderId: String
8639
+ # @param WorkflowId: 工作流ID
8640
+ # @type WorkflowId: String
8641
+ # @param TaskId: 任务id
8642
+ # @type TaskId: String
8643
+
8644
+ attr_accessor :ProjectId, :FolderId, :WorkflowId, :TaskId
8645
+
8646
+ def initialize(projectid=nil, folderid=nil, workflowid=nil, taskid=nil)
8647
+ @ProjectId = projectid
8648
+ @FolderId = folderid
8649
+ @WorkflowId = workflowid
8650
+ @TaskId = taskid
8651
+ end
8652
+
8653
+ def deserialize(params)
8654
+ @ProjectId = params['ProjectId']
8655
+ @FolderId = params['FolderId']
8656
+ @WorkflowId = params['WorkflowId']
8657
+ @TaskId = params['TaskId']
8658
+ end
8659
+ end
8660
+
8661
+ # DescribeDsParentFolderTree返回参数结构体
8662
+ class DescribeDsParentFolderTreeResponse < TencentCloud::Common::AbstractModel
8663
+ # @param Data: 统一树结构返回属性列表
8664
+ # @type Data: Array
8665
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8666
+ # @type RequestId: String
8667
+
8668
+ attr_accessor :Data, :RequestId
8669
+
8670
+ def initialize(data=nil, requestid=nil)
8671
+ @Data = data
8672
+ @RequestId = requestid
8673
+ end
8674
+
8675
+ def deserialize(params)
8676
+ unless params['Data'].nil?
8677
+ @Data = []
8678
+ params['Data'].each do |i|
8679
+ pathnodedsvo_tmp = PathNodeDsVO.new
8680
+ pathnodedsvo_tmp.deserialize(i)
8681
+ @Data << pathnodedsvo_tmp
8682
+ end
8683
+ end
8684
+ @RequestId = params['RequestId']
8685
+ end
8686
+ end
8687
+
8466
8688
  # DescribeEventCases请求参数结构体
8467
8689
  class DescribeEventCasesRequest < TencentCloud::Common::AbstractModel
8468
8690
  # @param ProjectId: 项目ID
@@ -11163,10 +11385,12 @@ module TencentCloud
11163
11385
  # @type TargetServiceType: String
11164
11386
  # @param AlarmType: 告警类型,多个类型以逗号分隔
11165
11387
  # @type AlarmType: String
11388
+ # @param ExecutorGroupIdList: 资源组id,多个资源组id之间以英文字符逗号分隔
11389
+ # @type ExecutorGroupIdList: String
11166
11390
 
11167
- attr_accessor :ProjectId, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :PageNumber, :PageSize, :SortItem, :SortType, :InChargeList, :TaskTypeIdList, :StatusList, :TaskCycleUnitList, :ProductNameList, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType
11391
+ attr_accessor :ProjectId, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :PageNumber, :PageSize, :SortItem, :SortType, :InChargeList, :TaskTypeIdList, :StatusList, :TaskCycleUnitList, :ProductNameList, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :ExecutorGroupIdList
11168
11392
 
11169
- def initialize(projectid=nil, folderidlist=nil, workflowidlist=nil, workflownamelist=nil, tasknamelist=nil, taskidlist=nil, pagenumber=nil, pagesize=nil, sortitem=nil, sorttype=nil, inchargelist=nil, tasktypeidlist=nil, statuslist=nil, taskcycleunitlist=nil, productnamelist=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, alarmtype=nil)
11393
+ def initialize(projectid=nil, folderidlist=nil, workflowidlist=nil, workflownamelist=nil, tasknamelist=nil, taskidlist=nil, pagenumber=nil, pagesize=nil, sortitem=nil, sorttype=nil, inchargelist=nil, tasktypeidlist=nil, statuslist=nil, taskcycleunitlist=nil, productnamelist=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, alarmtype=nil, executorgroupidlist=nil)
11170
11394
  @ProjectId = projectid
11171
11395
  @FolderIdList = folderidlist
11172
11396
  @WorkFlowIdList = workflowidlist
@@ -11187,6 +11411,7 @@ module TencentCloud
11187
11411
  @TargetServiceId = targetserviceid
11188
11412
  @TargetServiceType = targetservicetype
11189
11413
  @AlarmType = alarmtype
11414
+ @ExecutorGroupIdList = executorgroupidlist
11190
11415
  end
11191
11416
 
11192
11417
  def deserialize(params)
@@ -11210,6 +11435,7 @@ module TencentCloud
11210
11435
  @TargetServiceId = params['TargetServiceId']
11211
11436
  @TargetServiceType = params['TargetServiceType']
11212
11437
  @AlarmType = params['AlarmType']
11438
+ @ExecutorGroupIdList = params['ExecutorGroupIdList']
11213
11439
  end
11214
11440
  end
11215
11441
 
@@ -12027,9 +12253,9 @@ module TencentCloud
12027
12253
 
12028
12254
  # DescribeRealTimeTaskMetricOverview请求参数结构体
12029
12255
  class DescribeRealTimeTaskMetricOverviewRequest < TencentCloud::Common::AbstractModel
12030
- # @param TaskId: 要查看的实时任务的任务Id
12256
+ # @param TaskId: 要查看的实时任务的任务ID,可在任务列表页面中获得
12031
12257
  # @type TaskId: String
12032
- # @param ProjectId:
12258
+ # @param ProjectId: 要查看的项目ID
12033
12259
  # @type ProjectId: String
12034
12260
  # @param StartTime: 开始时间
12035
12261
  # @type StartTime: Integer
@@ -14214,10 +14440,12 @@ module TencentCloud
14214
14440
  # @type OrderType: String
14215
14441
  # @param RunningOrderId: 作业运行的实例ID
14216
14442
  # @type RunningOrderId: Integer
14443
+ # @param Keyword: 关键字
14444
+ # @type Keyword: String
14217
14445
 
14218
- attr_accessor :ProjectId, :TaskId, :JobId, :EndTime, :StartTime, :Container, :Limit, :OrderType, :RunningOrderId
14446
+ attr_accessor :ProjectId, :TaskId, :JobId, :EndTime, :StartTime, :Container, :Limit, :OrderType, :RunningOrderId, :Keyword
14219
14447
 
14220
- def initialize(projectid=nil, taskid=nil, jobid=nil, endtime=nil, starttime=nil, container=nil, limit=nil, ordertype=nil, runningorderid=nil)
14448
+ def initialize(projectid=nil, taskid=nil, jobid=nil, endtime=nil, starttime=nil, container=nil, limit=nil, ordertype=nil, runningorderid=nil, keyword=nil)
14221
14449
  @ProjectId = projectid
14222
14450
  @TaskId = taskid
14223
14451
  @JobId = jobid
@@ -14227,6 +14455,7 @@ module TencentCloud
14227
14455
  @Limit = limit
14228
14456
  @OrderType = ordertype
14229
14457
  @RunningOrderId = runningorderid
14458
+ @Keyword = keyword
14230
14459
  end
14231
14460
 
14232
14461
  def deserialize(params)
@@ -14239,6 +14468,7 @@ module TencentCloud
14239
14468
  @Limit = params['Limit']
14240
14469
  @OrderType = params['OrderType']
14241
14470
  @RunningOrderId = params['RunningOrderId']
14471
+ @Keyword = params['Keyword']
14242
14472
  end
14243
14473
  end
14244
14474
 
@@ -16238,8 +16468,8 @@ module TencentCloud
16238
16468
 
16239
16469
  attr_accessor :DimType, :Count, :QualityDim
16240
16470
  extend Gem::Deprecate
16241
- deprecate :DimType, :none, 2023, 8
16242
- deprecate :DimType=, :none, 2023, 8
16471
+ deprecate :DimType, :none, 2023, 10
16472
+ deprecate :DimType=, :none, 2023, 10
16243
16473
 
16244
16474
  def initialize(dimtype=nil, count=nil, qualitydim=nil)
16245
16475
  @DimType = dimtype
@@ -17417,6 +17647,50 @@ module TencentCloud
17417
17647
  end
17418
17648
  end
17419
17649
 
17650
+ # FindAllFolder请求参数结构体
17651
+ class FindAllFolderRequest < TencentCloud::Common::AbstractModel
17652
+ # @param ProjectId: 项目ID
17653
+ # @type ProjectId: String
17654
+
17655
+ attr_accessor :ProjectId
17656
+
17657
+ def initialize(projectid=nil)
17658
+ @ProjectId = projectid
17659
+ end
17660
+
17661
+ def deserialize(params)
17662
+ @ProjectId = params['ProjectId']
17663
+ end
17664
+ end
17665
+
17666
+ # FindAllFolder返回参数结构体
17667
+ class FindAllFolderResponse < TencentCloud::Common::AbstractModel
17668
+ # @param FolderList: 文件夹列表
17669
+ # 注意:此字段可能返回 null,表示取不到有效值。
17670
+ # @type FolderList: Array
17671
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17672
+ # @type RequestId: String
17673
+
17674
+ attr_accessor :FolderList, :RequestId
17675
+
17676
+ def initialize(folderlist=nil, requestid=nil)
17677
+ @FolderList = folderlist
17678
+ @RequestId = requestid
17679
+ end
17680
+
17681
+ def deserialize(params)
17682
+ unless params['FolderList'].nil?
17683
+ @FolderList = []
17684
+ params['FolderList'].each do |i|
17685
+ folderdsdto_tmp = FolderDsDto.new
17686
+ folderdsdto_tmp.deserialize(i)
17687
+ @FolderList << folderdsdto_tmp
17688
+ end
17689
+ end
17690
+ @RequestId = params['RequestId']
17691
+ end
17692
+ end
17693
+
17420
17694
  # 文件夹信息
17421
17695
  class Folder < TencentCloud::Common::AbstractModel
17422
17696
  # @param Id: 文件ID
@@ -17450,7 +17724,7 @@ module TencentCloud
17450
17724
  end
17451
17725
 
17452
17726
  # 文件夹属性
17453
- class FolderOpsDto < TencentCloud::Common::AbstractModel
17727
+ class FolderDsDto < TencentCloud::Common::AbstractModel
17454
17728
  # @param Id: 文件夹id
17455
17729
  # 注意:此字段可能返回 null,表示取不到有效值。
17456
17730
  # @type Id: String
@@ -17478,16 +17752,16 @@ module TencentCloud
17478
17752
  # @param TotalFolders: 子文件夹总数
17479
17753
  # 注意:此字段可能返回 null,表示取不到有效值。
17480
17754
  # @type TotalFolders: Integer
17481
- # @param FoldersList: 子文件夹列表
17755
+ # @param Folders: 子文件夹列表
17482
17756
  # 注意:此字段可能返回 null,表示取不到有效值。
17483
- # @type FoldersList: String
17757
+ # @type Folders: Array
17484
17758
  # @param FindType: 搜索类型
17485
17759
  # 注意:此字段可能返回 null,表示取不到有效值。
17486
17760
  # @type FindType: String
17487
17761
 
17488
- attr_accessor :Id, :CreateTime, :Name, :ProjectId, :UpdateTime, :ParentsFolderId, :Total, :Workflows, :TotalFolders, :FoldersList, :FindType
17762
+ attr_accessor :Id, :CreateTime, :Name, :ProjectId, :UpdateTime, :ParentsFolderId, :Total, :Workflows, :TotalFolders, :Folders, :FindType
17489
17763
 
17490
- def initialize(id=nil, createtime=nil, name=nil, projectid=nil, updatetime=nil, parentsfolderid=nil, total=nil, workflows=nil, totalfolders=nil, folderslist=nil, findtype=nil)
17764
+ def initialize(id=nil, createtime=nil, name=nil, projectid=nil, updatetime=nil, parentsfolderid=nil, total=nil, workflows=nil, totalfolders=nil, folders=nil, findtype=nil)
17491
17765
  @Id = id
17492
17766
  @CreateTime = createtime
17493
17767
  @Name = name
@@ -17497,7 +17771,7 @@ module TencentCloud
17497
17771
  @Total = total
17498
17772
  @Workflows = workflows
17499
17773
  @TotalFolders = totalfolders
17500
- @FoldersList = folderslist
17774
+ @Folders = folders
17501
17775
  @FindType = findtype
17502
17776
  end
17503
17777
 
@@ -17518,45 +17792,126 @@ module TencentCloud
17518
17792
  end
17519
17793
  end
17520
17794
  @TotalFolders = params['TotalFolders']
17521
- @FoldersList = params['FoldersList']
17522
- @FindType = params['FindType']
17523
- end
17524
- end
17525
-
17526
- # ForceSucInstances请求参数结构体
17527
- class ForceSucInstancesRequest < TencentCloud::Common::AbstractModel
17528
- # @param ProjectId: 项目Id
17529
- # @type ProjectId: String
17530
- # @param Instances: 实例嵌套集合
17531
- # @type Instances: Array
17532
-
17533
- attr_accessor :ProjectId, :Instances
17534
-
17535
- def initialize(projectid=nil, instances=nil)
17536
- @ProjectId = projectid
17537
- @Instances = instances
17538
- end
17539
-
17540
- def deserialize(params)
17541
- @ProjectId = params['ProjectId']
17542
- unless params['Instances'].nil?
17543
- @Instances = []
17544
- params['Instances'].each do |i|
17545
- instanceinfo_tmp = InstanceInfo.new
17546
- instanceinfo_tmp.deserialize(i)
17547
- @Instances << instanceinfo_tmp
17795
+ unless params['Folders'].nil?
17796
+ @Folders = []
17797
+ params['Folders'].each do |i|
17798
+ folderdsdto_tmp = FolderDsDto.new
17799
+ folderdsdto_tmp.deserialize(i)
17800
+ @Folders << folderdsdto_tmp
17548
17801
  end
17549
17802
  end
17803
+ @FindType = params['FindType']
17550
17804
  end
17551
17805
  end
17552
17806
 
17553
- # ForceSucInstances返回参数结构体
17554
- class ForceSucInstancesResponse < TencentCloud::Common::AbstractModel
17555
- # @param Data: 返回实例批量终止结果
17556
- # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.OperateResult`
17557
- # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17558
- # @type RequestId: String
17559
-
17807
+ # 文件夹属性
17808
+ class FolderOpsDto < TencentCloud::Common::AbstractModel
17809
+ # @param Id: 文件夹id
17810
+ # 注意:此字段可能返回 null,表示取不到有效值。
17811
+ # @type Id: String
17812
+ # @param CreateTime: 创建时间
17813
+ # 注意:此字段可能返回 null,表示取不到有效值。
17814
+ # @type CreateTime: String
17815
+ # @param Name: 文件夹名称
17816
+ # 注意:此字段可能返回 null,表示取不到有效值。
17817
+ # @type Name: String
17818
+ # @param ProjectId: 所属项目id
17819
+ # 注意:此字段可能返回 null,表示取不到有效值。
17820
+ # @type ProjectId: String
17821
+ # @param UpdateTime: 更新时间
17822
+ # 注意:此字段可能返回 null,表示取不到有效值。
17823
+ # @type UpdateTime: String
17824
+ # @param ParentsFolderId: 父文件夹id
17825
+ # 注意:此字段可能返回 null,表示取不到有效值。
17826
+ # @type ParentsFolderId: String
17827
+ # @param Total: 工作流总数
17828
+ # 注意:此字段可能返回 null,表示取不到有效值。
17829
+ # @type Total: Integer
17830
+ # @param Workflows: 工作流列表
17831
+ # 注意:此字段可能返回 null,表示取不到有效值。
17832
+ # @type Workflows: Array
17833
+ # @param TotalFolders: 子文件夹总数
17834
+ # 注意:此字段可能返回 null,表示取不到有效值。
17835
+ # @type TotalFolders: Integer
17836
+ # @param FoldersList: 子文件夹列表
17837
+ # 注意:此字段可能返回 null,表示取不到有效值。
17838
+ # @type FoldersList: String
17839
+ # @param FindType: 搜索类型
17840
+ # 注意:此字段可能返回 null,表示取不到有效值。
17841
+ # @type FindType: String
17842
+
17843
+ attr_accessor :Id, :CreateTime, :Name, :ProjectId, :UpdateTime, :ParentsFolderId, :Total, :Workflows, :TotalFolders, :FoldersList, :FindType
17844
+
17845
+ def initialize(id=nil, createtime=nil, name=nil, projectid=nil, updatetime=nil, parentsfolderid=nil, total=nil, workflows=nil, totalfolders=nil, folderslist=nil, findtype=nil)
17846
+ @Id = id
17847
+ @CreateTime = createtime
17848
+ @Name = name
17849
+ @ProjectId = projectid
17850
+ @UpdateTime = updatetime
17851
+ @ParentsFolderId = parentsfolderid
17852
+ @Total = total
17853
+ @Workflows = workflows
17854
+ @TotalFolders = totalfolders
17855
+ @FoldersList = folderslist
17856
+ @FindType = findtype
17857
+ end
17858
+
17859
+ def deserialize(params)
17860
+ @Id = params['Id']
17861
+ @CreateTime = params['CreateTime']
17862
+ @Name = params['Name']
17863
+ @ProjectId = params['ProjectId']
17864
+ @UpdateTime = params['UpdateTime']
17865
+ @ParentsFolderId = params['ParentsFolderId']
17866
+ @Total = params['Total']
17867
+ unless params['Workflows'].nil?
17868
+ @Workflows = []
17869
+ params['Workflows'].each do |i|
17870
+ workflowcanvasopsdto_tmp = WorkflowCanvasOpsDto.new
17871
+ workflowcanvasopsdto_tmp.deserialize(i)
17872
+ @Workflows << workflowcanvasopsdto_tmp
17873
+ end
17874
+ end
17875
+ @TotalFolders = params['TotalFolders']
17876
+ @FoldersList = params['FoldersList']
17877
+ @FindType = params['FindType']
17878
+ end
17879
+ end
17880
+
17881
+ # ForceSucInstances请求参数结构体
17882
+ class ForceSucInstancesRequest < TencentCloud::Common::AbstractModel
17883
+ # @param ProjectId: 项目Id
17884
+ # @type ProjectId: String
17885
+ # @param Instances: 实例嵌套集合
17886
+ # @type Instances: Array
17887
+
17888
+ attr_accessor :ProjectId, :Instances
17889
+
17890
+ def initialize(projectid=nil, instances=nil)
17891
+ @ProjectId = projectid
17892
+ @Instances = instances
17893
+ end
17894
+
17895
+ def deserialize(params)
17896
+ @ProjectId = params['ProjectId']
17897
+ unless params['Instances'].nil?
17898
+ @Instances = []
17899
+ params['Instances'].each do |i|
17900
+ instanceinfo_tmp = InstanceInfo.new
17901
+ instanceinfo_tmp.deserialize(i)
17902
+ @Instances << instanceinfo_tmp
17903
+ end
17904
+ end
17905
+ end
17906
+ end
17907
+
17908
+ # ForceSucInstances返回参数结构体
17909
+ class ForceSucInstancesResponse < TencentCloud::Common::AbstractModel
17910
+ # @param Data: 返回实例批量终止结果
17911
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.OperateResult`
17912
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17913
+ # @type RequestId: String
17914
+
17560
17915
  attr_accessor :Data, :RequestId
17561
17916
 
17562
17917
  def initialize(data=nil, requestid=nil)
@@ -18356,10 +18711,16 @@ module TencentCloud
18356
18711
  # @param LifeDays: 生命周期
18357
18712
  # 注意:此字段可能返回 null,表示取不到有效值。
18358
18713
  # @type LifeDays: Integer
18714
+ # @param ClusterId: 集群ID
18715
+ # 注意:此字段可能返回 null,表示取不到有效值。
18716
+ # @type ClusterId: String
18717
+ # @param AgentRegion: agent地域
18718
+ # 注意:此字段可能返回 null,表示取不到有效值。
18719
+ # @type AgentRegion: String
18359
18720
 
18360
- attr_accessor :AgentId, :AgentName, :Status, :StatusDesc, :AgentType, :Source, :VpcId, :ExecutorGroupId, :ExecutorGroupName, :TaskCount, :AgentGroupId, :CvmAgentStatusList, :AgentTotal, :LifeDays
18721
+ attr_accessor :AgentId, :AgentName, :Status, :StatusDesc, :AgentType, :Source, :VpcId, :ExecutorGroupId, :ExecutorGroupName, :TaskCount, :AgentGroupId, :CvmAgentStatusList, :AgentTotal, :LifeDays, :ClusterId, :AgentRegion
18361
18722
 
18362
- def initialize(agentid=nil, agentname=nil, status=nil, statusdesc=nil, agenttype=nil, source=nil, vpcid=nil, executorgroupid=nil, executorgroupname=nil, taskcount=nil, agentgroupid=nil, cvmagentstatuslist=nil, agenttotal=nil, lifedays=nil)
18723
+ def initialize(agentid=nil, agentname=nil, status=nil, statusdesc=nil, agenttype=nil, source=nil, vpcid=nil, executorgroupid=nil, executorgroupname=nil, taskcount=nil, agentgroupid=nil, cvmagentstatuslist=nil, agenttotal=nil, lifedays=nil, clusterid=nil, agentregion=nil)
18363
18724
  @AgentId = agentid
18364
18725
  @AgentName = agentname
18365
18726
  @Status = status
@@ -18374,6 +18735,8 @@ module TencentCloud
18374
18735
  @CvmAgentStatusList = cvmagentstatuslist
18375
18736
  @AgentTotal = agenttotal
18376
18737
  @LifeDays = lifedays
18738
+ @ClusterId = clusterid
18739
+ @AgentRegion = agentregion
18377
18740
  end
18378
18741
 
18379
18742
  def deserialize(params)
@@ -18398,6 +18761,8 @@ module TencentCloud
18398
18761
  end
18399
18762
  @AgentTotal = params['AgentTotal']
18400
18763
  @LifeDays = params['LifeDays']
18764
+ @ClusterId = params['ClusterId']
18765
+ @AgentRegion = params['AgentRegion']
18401
18766
  end
18402
18767
  end
18403
18768
 
@@ -18532,10 +18897,12 @@ module TencentCloud
18532
18897
  # @type TenantId: String
18533
18898
  # @param DataTimeCycle: 根据当前数据时间或者是下一个数据时间查询, 默认当前数据时间
18534
18899
  # @type DataTimeCycle: String
18900
+ # @param ExecutorGroupIdList: 资源组id,多个资源组id用英文逗号分隔
18901
+ # @type ExecutorGroupIdList: Array
18535
18902
 
18536
- attr_accessor :Instance, :SortCol, :TaskIdList, :TaskNameList, :FolderList, :Sort, :StateList, :TaskTypeList, :CycleList, :OwnerList, :DateFrom, :DateTo, :CreateTimeFrom, :CreateTimeTo, :StartFrom, :StartTo, :WorkflowIdList, :WorkflowNameList, :Keyword, :SearchColumns, :ProjectId, :Limit, :TaskTypeMap, :InstanceType, :DagDeal, :DagType, :DagDependent, :DagDepth, :TenantId, :DataTimeCycle
18903
+ attr_accessor :Instance, :SortCol, :TaskIdList, :TaskNameList, :FolderList, :Sort, :StateList, :TaskTypeList, :CycleList, :OwnerList, :DateFrom, :DateTo, :CreateTimeFrom, :CreateTimeTo, :StartFrom, :StartTo, :WorkflowIdList, :WorkflowNameList, :Keyword, :SearchColumns, :ProjectId, :Limit, :TaskTypeMap, :InstanceType, :DagDeal, :DagType, :DagDependent, :DagDepth, :TenantId, :DataTimeCycle, :ExecutorGroupIdList
18537
18904
 
18538
- def initialize(instance=nil, sortcol=nil, taskidlist=nil, tasknamelist=nil, folderlist=nil, sort=nil, statelist=nil, tasktypelist=nil, cyclelist=nil, ownerlist=nil, datefrom=nil, dateto=nil, createtimefrom=nil, createtimeto=nil, startfrom=nil, startto=nil, workflowidlist=nil, workflownamelist=nil, keyword=nil, searchcolumns=nil, projectid=nil, limit=nil, tasktypemap=nil, instancetype=nil, dagdeal=nil, dagtype=nil, dagdependent=nil, dagdepth=nil, tenantid=nil, datatimecycle=nil)
18905
+ def initialize(instance=nil, sortcol=nil, taskidlist=nil, tasknamelist=nil, folderlist=nil, sort=nil, statelist=nil, tasktypelist=nil, cyclelist=nil, ownerlist=nil, datefrom=nil, dateto=nil, createtimefrom=nil, createtimeto=nil, startfrom=nil, startto=nil, workflowidlist=nil, workflownamelist=nil, keyword=nil, searchcolumns=nil, projectid=nil, limit=nil, tasktypemap=nil, instancetype=nil, dagdeal=nil, dagtype=nil, dagdependent=nil, dagdepth=nil, tenantid=nil, datatimecycle=nil, executorgroupidlist=nil)
18539
18906
  @Instance = instance
18540
18907
  @SortCol = sortcol
18541
18908
  @TaskIdList = taskidlist
@@ -18566,6 +18933,7 @@ module TencentCloud
18566
18933
  @DagDepth = dagdepth
18567
18934
  @TenantId = tenantid
18568
18935
  @DataTimeCycle = datatimecycle
18936
+ @ExecutorGroupIdList = executorgroupidlist
18569
18937
  end
18570
18938
 
18571
18939
  def deserialize(params)
@@ -18609,6 +18977,7 @@ module TencentCloud
18609
18977
  @DagDepth = params['DagDepth']
18610
18978
  @TenantId = params['TenantId']
18611
18979
  @DataTimeCycle = params['DataTimeCycle']
18980
+ @ExecutorGroupIdList = params['ExecutorGroupIdList']
18612
18981
  end
18613
18982
  end
18614
18983
 
@@ -19157,10 +19526,16 @@ module TencentCloud
19157
19526
  # @param InstanceKey: 实例标识
19158
19527
  # 注意:此字段可能返回 null,表示取不到有效值。
19159
19528
  # @type InstanceKey: String
19529
+ # @param ExecutorGroupId: 资源组id
19530
+ # 注意:此字段可能返回 null,表示取不到有效值。
19531
+ # @type ExecutorGroupId: String
19532
+ # @param ExecutorGroupName: 资源组名称
19533
+ # 注意:此字段可能返回 null,表示取不到有效值。
19534
+ # @type ExecutorGroupName: String
19160
19535
 
19161
- attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :InCharge, :CycleType, :CurRunDate, :NextCurDate, :RunPriority, :TryLimit, :Tries, :TotalRunNum, :DoFlag, :RedoFlag, :State, :RuntimeBroker, :ErrorDesc, :TaskType, :DependenceFulfillTime, :FirstDependenceFulfillTime, :FirstStartTime, :StartTime, :EndTime, :CostTime, :CostMillisecond, :MaxCostTime, :MinCostTime, :AvgCostTime, :LastLog, :SchedulerDateTime, :LastSchedulerDateTime, :LastUpdate, :CreateTime, :DependencyRel, :ExecutionSpace, :IgnoreEvent, :VirtualFlag, :FolderId, :FolderName, :SonList, :ProductName, :ResourceGroup, :ResourceInstanceId, :YarnQueue, :SchedulerDesc, :FirstSubmitTime, :FirstRunTime, :ProjectId, :ProjectIdent, :ProjectName, :TenantId, :InstanceKey
19536
+ attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :InCharge, :CycleType, :CurRunDate, :NextCurDate, :RunPriority, :TryLimit, :Tries, :TotalRunNum, :DoFlag, :RedoFlag, :State, :RuntimeBroker, :ErrorDesc, :TaskType, :DependenceFulfillTime, :FirstDependenceFulfillTime, :FirstStartTime, :StartTime, :EndTime, :CostTime, :CostMillisecond, :MaxCostTime, :MinCostTime, :AvgCostTime, :LastLog, :SchedulerDateTime, :LastSchedulerDateTime, :LastUpdate, :CreateTime, :DependencyRel, :ExecutionSpace, :IgnoreEvent, :VirtualFlag, :FolderId, :FolderName, :SonList, :ProductName, :ResourceGroup, :ResourceInstanceId, :YarnQueue, :SchedulerDesc, :FirstSubmitTime, :FirstRunTime, :ProjectId, :ProjectIdent, :ProjectName, :TenantId, :InstanceKey, :ExecutorGroupId, :ExecutorGroupName
19162
19537
 
19163
- def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, incharge=nil, cycletype=nil, currundate=nil, nextcurdate=nil, runpriority=nil, trylimit=nil, tries=nil, totalrunnum=nil, doflag=nil, redoflag=nil, state=nil, runtimebroker=nil, errordesc=nil, tasktype=nil, dependencefulfilltime=nil, firstdependencefulfilltime=nil, firststarttime=nil, starttime=nil, endtime=nil, costtime=nil, costmillisecond=nil, maxcosttime=nil, mincosttime=nil, avgcosttime=nil, lastlog=nil, schedulerdatetime=nil, lastschedulerdatetime=nil, lastupdate=nil, createtime=nil, dependencyrel=nil, executionspace=nil, ignoreevent=nil, virtualflag=nil, folderid=nil, foldername=nil, sonlist=nil, productname=nil, resourcegroup=nil, resourceinstanceid=nil, yarnqueue=nil, schedulerdesc=nil, firstsubmittime=nil, firstruntime=nil, projectid=nil, projectident=nil, projectname=nil, tenantid=nil, instancekey=nil)
19538
+ def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, incharge=nil, cycletype=nil, currundate=nil, nextcurdate=nil, runpriority=nil, trylimit=nil, tries=nil, totalrunnum=nil, doflag=nil, redoflag=nil, state=nil, runtimebroker=nil, errordesc=nil, tasktype=nil, dependencefulfilltime=nil, firstdependencefulfilltime=nil, firststarttime=nil, starttime=nil, endtime=nil, costtime=nil, costmillisecond=nil, maxcosttime=nil, mincosttime=nil, avgcosttime=nil, lastlog=nil, schedulerdatetime=nil, lastschedulerdatetime=nil, lastupdate=nil, createtime=nil, dependencyrel=nil, executionspace=nil, ignoreevent=nil, virtualflag=nil, folderid=nil, foldername=nil, sonlist=nil, productname=nil, resourcegroup=nil, resourceinstanceid=nil, yarnqueue=nil, schedulerdesc=nil, firstsubmittime=nil, firstruntime=nil, projectid=nil, projectident=nil, projectname=nil, tenantid=nil, instancekey=nil, executorgroupid=nil, executorgroupname=nil)
19164
19539
  @TaskId = taskid
19165
19540
  @TaskName = taskname
19166
19541
  @WorkflowId = workflowid
@@ -19213,6 +19588,8 @@ module TencentCloud
19213
19588
  @ProjectName = projectname
19214
19589
  @TenantId = tenantid
19215
19590
  @InstanceKey = instancekey
19591
+ @ExecutorGroupId = executorgroupid
19592
+ @ExecutorGroupName = executorgroupname
19216
19593
  end
19217
19594
 
19218
19595
  def deserialize(params)
@@ -19271,6 +19648,8 @@ module TencentCloud
19271
19648
  @ProjectName = params['ProjectName']
19272
19649
  @TenantId = params['TenantId']
19273
19650
  @InstanceKey = params['InstanceKey']
19651
+ @ExecutorGroupId = params['ExecutorGroupId']
19652
+ @ExecutorGroupName = params['ExecutorGroupName']
19274
19653
  end
19275
19654
  end
19276
19655
 
@@ -21456,6 +21835,54 @@ module TencentCloud
21456
21835
  end
21457
21836
  end
21458
21837
 
21838
+ # ModifyDsFolder请求参数结构体
21839
+ class ModifyDsFolderRequest < TencentCloud::Common::AbstractModel
21840
+ # @param ProjectId: 项目Id
21841
+ # @type ProjectId: String
21842
+ # @param FolderName: 文件夹名称
21843
+ # @type FolderName: String
21844
+ # @param FolderId: 文件夹Id
21845
+ # @type FolderId: String
21846
+ # @param ParentsFolderId: 父文件夹ID
21847
+ # @type ParentsFolderId: String
21848
+
21849
+ attr_accessor :ProjectId, :FolderName, :FolderId, :ParentsFolderId
21850
+
21851
+ def initialize(projectid=nil, foldername=nil, folderid=nil, parentsfolderid=nil)
21852
+ @ProjectId = projectid
21853
+ @FolderName = foldername
21854
+ @FolderId = folderid
21855
+ @ParentsFolderId = parentsfolderid
21856
+ end
21857
+
21858
+ def deserialize(params)
21859
+ @ProjectId = params['ProjectId']
21860
+ @FolderName = params['FolderName']
21861
+ @FolderId = params['FolderId']
21862
+ @ParentsFolderId = params['ParentsFolderId']
21863
+ end
21864
+ end
21865
+
21866
+ # ModifyDsFolder返回参数结构体
21867
+ class ModifyDsFolderResponse < TencentCloud::Common::AbstractModel
21868
+ # @param Data: true代表成功,false代表失败
21869
+ # @type Data: Boolean
21870
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
21871
+ # @type RequestId: String
21872
+
21873
+ attr_accessor :Data, :RequestId
21874
+
21875
+ def initialize(data=nil, requestid=nil)
21876
+ @Data = data
21877
+ @RequestId = requestid
21878
+ end
21879
+
21880
+ def deserialize(params)
21881
+ @Data = params['Data']
21882
+ @RequestId = params['RequestId']
21883
+ end
21884
+ end
21885
+
21459
21886
  # ModifyExecStrategy请求参数结构体
21460
21887
  class ModifyExecStrategyRequest < TencentCloud::Common::AbstractModel
21461
21888
  # @param RuleGroupId: 规则组ID
@@ -23402,6 +23829,60 @@ module TencentCloud
23402
23829
  end
23403
23830
  end
23404
23831
 
23832
+ # 数据开发-统一树结构返回属性
23833
+ class PathNodeDsVO < TencentCloud::Common::AbstractModel
23834
+ # @param Id: PathNode ID
23835
+ # 注意:此字段可能返回 null,表示取不到有效值。
23836
+ # @type Id: String
23837
+ # @param Title: PathNode 名称
23838
+ # 注意:此字段可能返回 null,表示取不到有效值。
23839
+ # @type Title: String
23840
+ # @param Type: PathNode 类型
23841
+ # 注意:此字段可能返回 null,表示取不到有效值。
23842
+ # @type Type: String
23843
+ # @param ParentId: 父节点唯一标识
23844
+ # 注意:此字段可能返回 null,表示取不到有效值。
23845
+ # @type ParentId: String
23846
+ # @param IsLeaf: 是否叶子节点
23847
+ # 注意:此字段可能返回 null,表示取不到有效值。
23848
+ # @type IsLeaf: Boolean
23849
+ # @param Children: 子节点列表
23850
+ # 注意:此字段可能返回 null,表示取不到有效值。
23851
+ # @type Children: Array
23852
+ # @param Params: 业务参数 ,base64编译的json串,获取具体参数需要base64反编译
23853
+ # 注意:此字段可能返回 null,表示取不到有效值。
23854
+ # @type Params: String
23855
+
23856
+ attr_accessor :Id, :Title, :Type, :ParentId, :IsLeaf, :Children, :Params
23857
+
23858
+ def initialize(id=nil, title=nil, type=nil, parentid=nil, isleaf=nil, children=nil, params=nil)
23859
+ @Id = id
23860
+ @Title = title
23861
+ @Type = type
23862
+ @ParentId = parentid
23863
+ @IsLeaf = isleaf
23864
+ @Children = children
23865
+ @Params = params
23866
+ end
23867
+
23868
+ def deserialize(params)
23869
+ @Id = params['Id']
23870
+ @Title = params['Title']
23871
+ @Type = params['Type']
23872
+ @ParentId = params['ParentId']
23873
+ @IsLeaf = params['IsLeaf']
23874
+ unless params['Children'].nil?
23875
+ @Children = []
23876
+ params['Children'].each do |i|
23877
+ pathnodedsvo_tmp = PathNodeDsVO.new
23878
+ pathnodedsvo_tmp.deserialize(i)
23879
+ @Children << pathnodedsvo_tmp
23880
+ end
23881
+ end
23882
+ @Params = params['Params']
23883
+ end
23884
+ end
23885
+
23405
23886
  # 数据质量生产调度任务业务实体
23406
23887
  class ProdSchedulerTask < TencentCloud::Common::AbstractModel
23407
23888
  # @param WorkflowId: 生产调度任务工作流ID
@@ -25967,6 +26448,246 @@ module TencentCloud
25967
26448
  end
25968
26449
  end
25969
26450
 
26451
+ # RunForceSucScheduleInstances请求参数结构体
26452
+ class RunForceSucScheduleInstancesRequest < TencentCloud::Common::AbstractModel
26453
+ # @param Instances: 实例列表
26454
+ # @type Instances: Array
26455
+ # @param CheckFather: 检查父任务类型, true: 检查父任务; false: 不检查父任务
26456
+ # @type CheckFather: Boolean
26457
+ # @param RerunType: 重跑类型, 1: 自身; 3: 孩子; 2: 自身以及孩子
26458
+ # @type RerunType: String
26459
+ # @param DependentWay: 实例依赖方式, 1: 自依赖; 2: 任务依赖; 3: 自依赖及父子依赖
26460
+ # @type DependentWay: String
26461
+ # @param SkipEventListening: 重跑忽略事件监听与否
26462
+ # @type SkipEventListening: Boolean
26463
+ # @param SonInstanceType: 下游实例范围 1: 所在工作流 2: 所在项目 3: 所有跨工作流依赖的项目
26464
+ # @type SonInstanceType: String
26465
+ # @param SearchCondition: 查询条件
26466
+ # @type SearchCondition: :class:`Tencentcloud::Wedata.v20210820.models.InstanceApiOpsRequest`
26467
+ # @param OptType: 访问类型
26468
+ # @type OptType: String
26469
+ # @param OperatorName: 操作者名称
26470
+ # @type OperatorName: String
26471
+ # @param OperatorId: 操作者id
26472
+ # @type OperatorId: String
26473
+ # @param ProjectId: 项目id
26474
+ # @type ProjectId: String
26475
+ # @param ProjectIdent: 项目标志
26476
+ # @type ProjectIdent: String
26477
+ # @param ProjectName: 项目名称
26478
+ # @type ProjectName: String
26479
+ # @param PageIndex: 索引页码
26480
+ # @type PageIndex: Integer
26481
+ # @param PageSize: 页面大小
26482
+ # @type PageSize: Integer
26483
+ # @param Count: 数据总数
26484
+ # @type Count: Integer
26485
+ # @param RequestBaseInfo: 基础请求信息
26486
+ # @type RequestBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.ProjectBaseInfoOpsRequest`
26487
+ # @param IsCount: 是否计算总数
26488
+ # @type IsCount: Boolean
26489
+
26490
+ attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount
26491
+
26492
+ def initialize(instances=nil, checkfather=nil, reruntype=nil, dependentway=nil, skipeventlistening=nil, soninstancetype=nil, searchcondition=nil, opttype=nil, operatorname=nil, operatorid=nil, projectid=nil, projectident=nil, projectname=nil, pageindex=nil, pagesize=nil, count=nil, requestbaseinfo=nil, iscount=nil)
26493
+ @Instances = instances
26494
+ @CheckFather = checkfather
26495
+ @RerunType = reruntype
26496
+ @DependentWay = dependentway
26497
+ @SkipEventListening = skipeventlistening
26498
+ @SonInstanceType = soninstancetype
26499
+ @SearchCondition = searchcondition
26500
+ @OptType = opttype
26501
+ @OperatorName = operatorname
26502
+ @OperatorId = operatorid
26503
+ @ProjectId = projectid
26504
+ @ProjectIdent = projectident
26505
+ @ProjectName = projectname
26506
+ @PageIndex = pageindex
26507
+ @PageSize = pagesize
26508
+ @Count = count
26509
+ @RequestBaseInfo = requestbaseinfo
26510
+ @IsCount = iscount
26511
+ end
26512
+
26513
+ def deserialize(params)
26514
+ unless params['Instances'].nil?
26515
+ @Instances = []
26516
+ params['Instances'].each do |i|
26517
+ instanceopsdto_tmp = InstanceOpsDto.new
26518
+ instanceopsdto_tmp.deserialize(i)
26519
+ @Instances << instanceopsdto_tmp
26520
+ end
26521
+ end
26522
+ @CheckFather = params['CheckFather']
26523
+ @RerunType = params['RerunType']
26524
+ @DependentWay = params['DependentWay']
26525
+ @SkipEventListening = params['SkipEventListening']
26526
+ @SonInstanceType = params['SonInstanceType']
26527
+ unless params['SearchCondition'].nil?
26528
+ @SearchCondition = InstanceApiOpsRequest.new
26529
+ @SearchCondition.deserialize(params['SearchCondition'])
26530
+ end
26531
+ @OptType = params['OptType']
26532
+ @OperatorName = params['OperatorName']
26533
+ @OperatorId = params['OperatorId']
26534
+ @ProjectId = params['ProjectId']
26535
+ @ProjectIdent = params['ProjectIdent']
26536
+ @ProjectName = params['ProjectName']
26537
+ @PageIndex = params['PageIndex']
26538
+ @PageSize = params['PageSize']
26539
+ @Count = params['Count']
26540
+ unless params['RequestBaseInfo'].nil?
26541
+ @RequestBaseInfo = ProjectBaseInfoOpsRequest.new
26542
+ @RequestBaseInfo.deserialize(params['RequestBaseInfo'])
26543
+ end
26544
+ @IsCount = params['IsCount']
26545
+ end
26546
+ end
26547
+
26548
+ # RunForceSucScheduleInstances返回参数结构体
26549
+ class RunForceSucScheduleInstancesResponse < TencentCloud::Common::AbstractModel
26550
+ # @param Data: 结果
26551
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.BatchOperateResultOpsDto`
26552
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
26553
+ # @type RequestId: String
26554
+
26555
+ attr_accessor :Data, :RequestId
26556
+
26557
+ def initialize(data=nil, requestid=nil)
26558
+ @Data = data
26559
+ @RequestId = requestid
26560
+ end
26561
+
26562
+ def deserialize(params)
26563
+ unless params['Data'].nil?
26564
+ @Data = BatchOperateResultOpsDto.new
26565
+ @Data.deserialize(params['Data'])
26566
+ end
26567
+ @RequestId = params['RequestId']
26568
+ end
26569
+ end
26570
+
26571
+ # RunRerunScheduleInstances请求参数结构体
26572
+ class RunRerunScheduleInstancesRequest < TencentCloud::Common::AbstractModel
26573
+ # @param Instances: 实例列表
26574
+ # @type Instances: Array
26575
+ # @param CheckFather: 检查父任务类型, true: 检查父任务; false: 不检查父任务
26576
+ # @type CheckFather: Boolean
26577
+ # @param RerunType: 重跑类型, 1: 自身; 3: 孩子; 2: 自身以及孩子
26578
+ # @type RerunType: String
26579
+ # @param DependentWay: 实例依赖方式, 1: 自依赖; 2: 任务依赖; 3: 自依赖及父子依赖
26580
+ # @type DependentWay: String
26581
+ # @param SkipEventListening: 重跑忽略事件监听与否
26582
+ # @type SkipEventListening: Boolean
26583
+ # @param SonInstanceType: 下游实例范围 1: 所在工作流 2: 所在项目 3: 所有跨工作流依赖的项目
26584
+ # @type SonInstanceType: String
26585
+ # @param SearchCondition: 查询条件
26586
+ # @type SearchCondition: :class:`Tencentcloud::Wedata.v20210820.models.InstanceApiOpsRequest`
26587
+ # @param OptType: 访问类型
26588
+ # @type OptType: String
26589
+ # @param OperatorName: 操作者名称
26590
+ # @type OperatorName: String
26591
+ # @param OperatorId: 操作者id
26592
+ # @type OperatorId: String
26593
+ # @param ProjectId: 项目id
26594
+ # @type ProjectId: String
26595
+ # @param ProjectIdent: 项目标志
26596
+ # @type ProjectIdent: String
26597
+ # @param ProjectName: 项目名称
26598
+ # @type ProjectName: String
26599
+ # @param PageIndex: 索引页码
26600
+ # @type PageIndex: Integer
26601
+ # @param PageSize: 页面大小
26602
+ # @type PageSize: Integer
26603
+ # @param Count: 数据总数
26604
+ # @type Count: Integer
26605
+ # @param RequestBaseInfo: 基础请求信息
26606
+ # @type RequestBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.ProjectBaseInfoOpsRequest`
26607
+ # @param IsCount: 是否计算总数
26608
+ # @type IsCount: Boolean
26609
+
26610
+ attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount
26611
+
26612
+ def initialize(instances=nil, checkfather=nil, reruntype=nil, dependentway=nil, skipeventlistening=nil, soninstancetype=nil, searchcondition=nil, opttype=nil, operatorname=nil, operatorid=nil, projectid=nil, projectident=nil, projectname=nil, pageindex=nil, pagesize=nil, count=nil, requestbaseinfo=nil, iscount=nil)
26613
+ @Instances = instances
26614
+ @CheckFather = checkfather
26615
+ @RerunType = reruntype
26616
+ @DependentWay = dependentway
26617
+ @SkipEventListening = skipeventlistening
26618
+ @SonInstanceType = soninstancetype
26619
+ @SearchCondition = searchcondition
26620
+ @OptType = opttype
26621
+ @OperatorName = operatorname
26622
+ @OperatorId = operatorid
26623
+ @ProjectId = projectid
26624
+ @ProjectIdent = projectident
26625
+ @ProjectName = projectname
26626
+ @PageIndex = pageindex
26627
+ @PageSize = pagesize
26628
+ @Count = count
26629
+ @RequestBaseInfo = requestbaseinfo
26630
+ @IsCount = iscount
26631
+ end
26632
+
26633
+ def deserialize(params)
26634
+ unless params['Instances'].nil?
26635
+ @Instances = []
26636
+ params['Instances'].each do |i|
26637
+ instanceopsdto_tmp = InstanceOpsDto.new
26638
+ instanceopsdto_tmp.deserialize(i)
26639
+ @Instances << instanceopsdto_tmp
26640
+ end
26641
+ end
26642
+ @CheckFather = params['CheckFather']
26643
+ @RerunType = params['RerunType']
26644
+ @DependentWay = params['DependentWay']
26645
+ @SkipEventListening = params['SkipEventListening']
26646
+ @SonInstanceType = params['SonInstanceType']
26647
+ unless params['SearchCondition'].nil?
26648
+ @SearchCondition = InstanceApiOpsRequest.new
26649
+ @SearchCondition.deserialize(params['SearchCondition'])
26650
+ end
26651
+ @OptType = params['OptType']
26652
+ @OperatorName = params['OperatorName']
26653
+ @OperatorId = params['OperatorId']
26654
+ @ProjectId = params['ProjectId']
26655
+ @ProjectIdent = params['ProjectIdent']
26656
+ @ProjectName = params['ProjectName']
26657
+ @PageIndex = params['PageIndex']
26658
+ @PageSize = params['PageSize']
26659
+ @Count = params['Count']
26660
+ unless params['RequestBaseInfo'].nil?
26661
+ @RequestBaseInfo = ProjectBaseInfoOpsRequest.new
26662
+ @RequestBaseInfo.deserialize(params['RequestBaseInfo'])
26663
+ end
26664
+ @IsCount = params['IsCount']
26665
+ end
26666
+ end
26667
+
26668
+ # RunRerunScheduleInstances返回参数结构体
26669
+ class RunRerunScheduleInstancesResponse < TencentCloud::Common::AbstractModel
26670
+ # @param Data: 结果
26671
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.BatchOperateResultOpsDto`
26672
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
26673
+ # @type RequestId: String
26674
+
26675
+ attr_accessor :Data, :RequestId
26676
+
26677
+ def initialize(data=nil, requestid=nil)
26678
+ @Data = data
26679
+ @RequestId = requestid
26680
+ end
26681
+
26682
+ def deserialize(params)
26683
+ unless params['Data'].nil?
26684
+ @Data = BatchOperateResultOpsDto.new
26685
+ @Data.deserialize(params['Data'])
26686
+ end
26687
+ @RequestId = params['RequestId']
26688
+ end
26689
+ end
26690
+
25970
26691
  # RunTask请求参数结构体
25971
26692
  class RunTaskRequest < TencentCloud::Common::AbstractModel
25972
26693
  # @param ProjectId: 项目Id
@@ -26994,10 +27715,10 @@ module TencentCloud
26994
27715
 
26995
27716
  attr_accessor :SourceObjectDataTypeName, :SourceObjectValue, :ObjectDataTypeName, :ObjectValue, :ObjectType
26996
27717
  extend Gem::Deprecate
26997
- deprecate :SourceObjectDataTypeName, :none, 2023, 8
26998
- deprecate :SourceObjectDataTypeName=, :none, 2023, 8
26999
- deprecate :SourceObjectValue, :none, 2023, 8
27000
- deprecate :SourceObjectValue=, :none, 2023, 8
27718
+ deprecate :SourceObjectDataTypeName, :none, 2023, 10
27719
+ deprecate :SourceObjectDataTypeName=, :none, 2023, 10
27720
+ deprecate :SourceObjectValue, :none, 2023, 10
27721
+ deprecate :SourceObjectValue=, :none, 2023, 10
27001
27722
 
27002
27723
  def initialize(sourceobjectdatatypename=nil, sourceobjectvalue=nil, objectdatatypename=nil, objectvalue=nil, objecttype=nil)
27003
27724
  @SourceObjectDataTypeName = sourceobjectdatatypename
@@ -29692,10 +30413,16 @@ module TencentCloud
29692
30413
  # @param Submit: 任务版本是否已提交
29693
30414
  # 注意:此字段可能返回 null,表示取不到有效值。
29694
30415
  # @type Submit: Boolean
30416
+ # @param ExecutorGroupId: 资源组id
30417
+ # 注意:此字段可能返回 null,表示取不到有效值。
30418
+ # @type ExecutorGroupId: String
30419
+ # @param ExecutorGroupName: 资源组名称
30420
+ # 注意:此字段可能返回 null,表示取不到有效值。
30421
+ # @type ExecutorGroupName: String
29695
30422
 
29696
- attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :RetryAble, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :Notes, :InstanceInitStrategy, :YarnQueue, :LastSchedulerCommitTime, :NormalizedJobStartTime, :SchedulerDesc, :ResourceGroup, :Creator, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :VirtualTaskStatus, :TaskLinkInfo, :ProductName, :ProjectId, :ProjectIdent, :ProjectName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :TaskTypeId, :TaskTypeDesc, :ShowWorkflow, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :CycleNum, :Crontab, :StartDate, :EndDate, :CycleUnit, :InitStrategy, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :TasksStr, :Submit
30423
+ attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :RetryAble, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :Notes, :InstanceInitStrategy, :YarnQueue, :LastSchedulerCommitTime, :NormalizedJobStartTime, :SchedulerDesc, :ResourceGroup, :Creator, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :VirtualTaskStatus, :TaskLinkInfo, :ProductName, :ProjectId, :ProjectIdent, :ProjectName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :TaskTypeId, :TaskTypeDesc, :ShowWorkflow, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :CycleNum, :Crontab, :StartDate, :EndDate, :CycleUnit, :InitStrategy, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :TasksStr, :Submit, :ExecutorGroupId, :ExecutorGroupName
29697
30424
 
29698
- def initialize(taskid=nil, virtualtaskid=nil, virtualflag=nil, taskname=nil, workflowid=nil, realworkflowid=nil, workflowname=nil, folderid=nil, foldername=nil, createtime=nil, lastupdate=nil, status=nil, incharge=nil, inchargeid=nil, starttime=nil, endtime=nil, executionstarttime=nil, executionendtime=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retryable=nil, taskaction=nil, trylimit=nil, runpriority=nil, tasktype=nil, brokerip=nil, clusterid=nil, mindatetime=nil, maxdatetime=nil, executionttl=nil, selfdepend=nil, leftcoordinate=nil, topcoordinate=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, schedulerdesc=nil, resourcegroup=nil, creator=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, virtualtaskstatus=nil, tasklinkinfo=nil, productname=nil, projectid=nil, projectident=nil, projectname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, tasktypeid=nil, tasktypedesc=nil, showworkflow=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, cyclenum=nil, crontab=nil, startdate=nil, enddate=nil, cycleunit=nil, initstrategy=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, tasksstr=nil, submit=nil)
30425
+ def initialize(taskid=nil, virtualtaskid=nil, virtualflag=nil, taskname=nil, workflowid=nil, realworkflowid=nil, workflowname=nil, folderid=nil, foldername=nil, createtime=nil, lastupdate=nil, status=nil, incharge=nil, inchargeid=nil, starttime=nil, endtime=nil, executionstarttime=nil, executionendtime=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retryable=nil, taskaction=nil, trylimit=nil, runpriority=nil, tasktype=nil, brokerip=nil, clusterid=nil, mindatetime=nil, maxdatetime=nil, executionttl=nil, selfdepend=nil, leftcoordinate=nil, topcoordinate=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, schedulerdesc=nil, resourcegroup=nil, creator=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, virtualtaskstatus=nil, tasklinkinfo=nil, productname=nil, projectid=nil, projectident=nil, projectname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, tasktypeid=nil, tasktypedesc=nil, showworkflow=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, cyclenum=nil, crontab=nil, startdate=nil, enddate=nil, cycleunit=nil, initstrategy=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, tasksstr=nil, submit=nil, executorgroupid=nil, executorgroupname=nil)
29699
30426
  @TaskId = taskid
29700
30427
  @VirtualTaskId = virtualtaskid
29701
30428
  @VirtualFlag = virtualflag
@@ -29776,6 +30503,8 @@ module TencentCloud
29776
30503
  @TargetServiceType = targetservicetype
29777
30504
  @TasksStr = tasksstr
29778
30505
  @Submit = submit
30506
+ @ExecutorGroupId = executorgroupid
30507
+ @ExecutorGroupName = executorgroupname
29779
30508
  end
29780
30509
 
29781
30510
  def deserialize(params)
@@ -29865,6 +30594,8 @@ module TencentCloud
29865
30594
  @TargetServiceType = params['TargetServiceType']
29866
30595
  @TasksStr = params['TasksStr']
29867
30596
  @Submit = params['Submit']
30597
+ @ExecutorGroupId = params['ExecutorGroupId']
30598
+ @ExecutorGroupName = params['ExecutorGroupName']
29868
30599
  end
29869
30600
  end
29870
30601