tencentcloud-sdk-wedata 3.0.1095 → 3.0.1110

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.
@@ -2572,6 +2572,54 @@ module TencentCloud
2572
2572
  end
2573
2573
  end
2574
2574
 
2575
+ # BindProjectExecutorResource请求参数结构体
2576
+ class BindProjectExecutorResourceRequest < TencentCloud::Common::AbstractModel
2577
+ # @param ExecutorGroupId: 执行资源组id
2578
+ # @type ExecutorGroupId: String
2579
+ # @param ProjectId: 项目id
2580
+ # @type ProjectId: String
2581
+ # @param ExecutorResourcePackageIds: 需要绑定项目的资源包id集合,为空则绑定整个资源组
2582
+ # @type ExecutorResourcePackageIds: Array
2583
+ # @param ProjectIdList: 可选: 需要绑定的多个项目id, 若申明将带上ProjectId一起绑定
2584
+ # @type ProjectIdList: Array
2585
+
2586
+ attr_accessor :ExecutorGroupId, :ProjectId, :ExecutorResourcePackageIds, :ProjectIdList
2587
+
2588
+ def initialize(executorgroupid=nil, projectid=nil, executorresourcepackageids=nil, projectidlist=nil)
2589
+ @ExecutorGroupId = executorgroupid
2590
+ @ProjectId = projectid
2591
+ @ExecutorResourcePackageIds = executorresourcepackageids
2592
+ @ProjectIdList = projectidlist
2593
+ end
2594
+
2595
+ def deserialize(params)
2596
+ @ExecutorGroupId = params['ExecutorGroupId']
2597
+ @ProjectId = params['ProjectId']
2598
+ @ExecutorResourcePackageIds = params['ExecutorResourcePackageIds']
2599
+ @ProjectIdList = params['ProjectIdList']
2600
+ end
2601
+ end
2602
+
2603
+ # BindProjectExecutorResource返回参数结构体
2604
+ class BindProjectExecutorResourceResponse < TencentCloud::Common::AbstractModel
2605
+ # @param Data: 绑定成功为true,其他为异常信息
2606
+ # @type Data: Boolean
2607
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2608
+ # @type RequestId: String
2609
+
2610
+ attr_accessor :Data, :RequestId
2611
+
2612
+ def initialize(data=nil, requestid=nil)
2613
+ @Data = data
2614
+ @RequestId = requestid
2615
+ end
2616
+
2617
+ def deserialize(params)
2618
+ @Data = params['Data']
2619
+ @RequestId = params['RequestId']
2620
+ end
2621
+ end
2622
+
2575
2623
  # 数据地图-数据类目信息
2576
2624
  class BizCatalogsInfo < TencentCloud::Common::AbstractModel
2577
2625
  # @param AppId: 应用id
@@ -4160,6 +4208,33 @@ module TencentCloud
4160
4208
  end
4161
4209
  end
4162
4210
 
4211
+ # CreateBaseProject请求参数结构体
4212
+ class CreateBaseProjectRequest < TencentCloud::Common::AbstractModel
4213
+
4214
+
4215
+ def initialize()
4216
+ end
4217
+
4218
+ def deserialize(params)
4219
+ end
4220
+ end
4221
+
4222
+ # CreateBaseProject返回参数结构体
4223
+ class CreateBaseProjectResponse < TencentCloud::Common::AbstractModel
4224
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4225
+ # @type RequestId: String
4226
+
4227
+ attr_accessor :RequestId
4228
+
4229
+ def initialize(requestid=nil)
4230
+ @RequestId = requestid
4231
+ end
4232
+
4233
+ def deserialize(params)
4234
+ @RequestId = params['RequestId']
4235
+ end
4236
+ end
4237
+
4163
4238
  # CreateCodeTemplate请求参数结构体
4164
4239
  class CreateCodeTemplateRequest < TencentCloud::Common::AbstractModel
4165
4240
  # @param ProjectId: 项目Id
@@ -4172,18 +4247,21 @@ module TencentCloud
4172
4247
  # @type CodeTemplateDesc: String
4173
4248
  # @param FolderId: 文件夹ID
4174
4249
  # @type FolderId: String
4175
- # @param Content: 指定脚本内容
4250
+ # @param Content: Base64转化的脚本内容
4176
4251
  # @type Content: String
4252
+ # @param ProductName: 代码模板类型
4253
+ # @type ProductName: String
4177
4254
 
4178
- attr_accessor :ProjectId, :CodeTemplateName, :TaskType, :CodeTemplateDesc, :FolderId, :Content
4255
+ attr_accessor :ProjectId, :CodeTemplateName, :TaskType, :CodeTemplateDesc, :FolderId, :Content, :ProductName
4179
4256
 
4180
- def initialize(projectid=nil, codetemplatename=nil, tasktype=nil, codetemplatedesc=nil, folderid=nil, content=nil)
4257
+ def initialize(projectid=nil, codetemplatename=nil, tasktype=nil, codetemplatedesc=nil, folderid=nil, content=nil, productname=nil)
4181
4258
  @ProjectId = projectid
4182
4259
  @CodeTemplateName = codetemplatename
4183
4260
  @TaskType = tasktype
4184
4261
  @CodeTemplateDesc = codetemplatedesc
4185
4262
  @FolderId = folderid
4186
4263
  @Content = content
4264
+ @ProductName = productname
4187
4265
  end
4188
4266
 
4189
4267
  def deserialize(params)
@@ -4193,6 +4271,7 @@ module TencentCloud
4193
4271
  @CodeTemplateDesc = params['CodeTemplateDesc']
4194
4272
  @FolderId = params['FolderId']
4195
4273
  @Content = params['Content']
4274
+ @ProductName = params['ProductName']
4196
4275
  end
4197
4276
  end
4198
4277
 
@@ -7646,6 +7725,49 @@ module TencentCloud
7646
7725
  end
7647
7726
  end
7648
7727
 
7728
+ # DeleteTaskLineage请求参数结构体
7729
+ class DeleteTaskLineageRequest < TencentCloud::Common::AbstractModel
7730
+ # @param Task: 任务信息
7731
+ # @type Task: :class:`Tencentcloud::Wedata.v20210820.models.LineageTask`
7732
+ # @param ChannelType: wedata内部任务默认SQL
7733
+ # @type ChannelType: String
7734
+
7735
+ attr_accessor :Task, :ChannelType
7736
+
7737
+ def initialize(task=nil, channeltype=nil)
7738
+ @Task = task
7739
+ @ChannelType = channeltype
7740
+ end
7741
+
7742
+ def deserialize(params)
7743
+ unless params['Task'].nil?
7744
+ @Task = LineageTask.new
7745
+ @Task.deserialize(params['Task'])
7746
+ end
7747
+ @ChannelType = params['ChannelType']
7748
+ end
7749
+ end
7750
+
7751
+ # DeleteTaskLineage返回参数结构体
7752
+ class DeleteTaskLineageResponse < TencentCloud::Common::AbstractModel
7753
+ # @param Data: 操作结果
7754
+ # @type Data: Boolean
7755
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7756
+ # @type RequestId: String
7757
+
7758
+ attr_accessor :Data, :RequestId
7759
+
7760
+ def initialize(data=nil, requestid=nil)
7761
+ @Data = data
7762
+ @RequestId = requestid
7763
+ end
7764
+
7765
+ def deserialize(params)
7766
+ @Data = params['Data']
7767
+ @RequestId = params['RequestId']
7768
+ end
7769
+ end
7770
+
7649
7771
  # DeleteWorkflowById请求参数结构体
7650
7772
  class DeleteWorkflowByIdRequest < TencentCloud::Common::AbstractModel
7651
7773
  # @param WorkflowId: 工作流id
@@ -7796,18 +7918,31 @@ module TencentCloud
7796
7918
 
7797
7919
  # 依赖配置策略
7798
7920
  class DependencyStrategyDs < TencentCloud::Common::AbstractModel
7799
- # @param PollingNullStrategy: 等待(默认策略)或 执行
7921
+ # @param PollingNullStrategy: 等待上游任务实例策略:EXECUTING(执行);WAITING(等待)
7922
+
7800
7923
  # 注意:此字段可能返回 null,表示取不到有效值。
7801
7924
  # @type PollingNullStrategy: String
7925
+ # @param TaskDependencyExecutingStrategies: 仅当PollingNullStrategy为EXECUTING时才需要填本字段,List类型:NOT_EXIST(默认,在分钟依赖分钟/小时依赖小时的情况下,父实例不在下游实例调度时间范围内);PARENT_EXPIRED(父实例失败);PARENT_TIMEOUT(父实例超时)。以上场景满足任一条件即可通过该父任务实例依赖判断,除以上场景外均需等待父实例。
7926
+
7927
+ # 注意:此字段可能返回 null,表示取不到有效值。
7928
+ # @type TaskDependencyExecutingStrategies: Array
7929
+ # @param TaskDependencyExecutingTimeoutValue: 仅当TaskDependencyExecutingStrategies中包含PARENT_TIMEOUT时才需要填本字段,下游任务依赖父实例执行超时时间,单位:分钟。
7930
+
7931
+ # 注意:此字段可能返回 null,表示取不到有效值。
7932
+ # @type TaskDependencyExecutingTimeoutValue: Integer
7802
7933
 
7803
- attr_accessor :PollingNullStrategy
7934
+ attr_accessor :PollingNullStrategy, :TaskDependencyExecutingStrategies, :TaskDependencyExecutingTimeoutValue
7804
7935
 
7805
- def initialize(pollingnullstrategy=nil)
7936
+ def initialize(pollingnullstrategy=nil, taskdependencyexecutingstrategies=nil, taskdependencyexecutingtimeoutvalue=nil)
7806
7937
  @PollingNullStrategy = pollingnullstrategy
7938
+ @TaskDependencyExecutingStrategies = taskdependencyexecutingstrategies
7939
+ @TaskDependencyExecutingTimeoutValue = taskdependencyexecutingtimeoutvalue
7807
7940
  end
7808
7941
 
7809
7942
  def deserialize(params)
7810
7943
  @PollingNullStrategy = params['PollingNullStrategy']
7944
+ @TaskDependencyExecutingStrategies = params['TaskDependencyExecutingStrategies']
7945
+ @TaskDependencyExecutingTimeoutValue = params['TaskDependencyExecutingTimeoutValue']
7811
7946
  end
7812
7947
  end
7813
7948
 
@@ -12429,10 +12564,12 @@ module TencentCloud
12429
12564
  # @type WorkflowTypeList: Array
12430
12565
  # @param KeyWord: 工作流过滤keyword,支持工作流 id/name 模糊匹配, 多个用|分割
12431
12566
  # @type KeyWord: String
12567
+ # @param ScheduleTimeZone: **时区** timeZone, 默认UTC+8
12568
+ # @type ScheduleTimeZone: String
12432
12569
 
12433
- attr_accessor :ProjectId, :ProductNameList, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :StatusList, :InChargeList, :PageNumber, :PageSize, :SortItem, :SortType, :ProjectIds, :WorkflowTypeList, :KeyWord
12570
+ attr_accessor :ProjectId, :ProductNameList, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :StatusList, :InChargeList, :PageNumber, :PageSize, :SortItem, :SortType, :ProjectIds, :WorkflowTypeList, :KeyWord, :ScheduleTimeZone
12434
12571
 
12435
- def initialize(projectid=nil, productnamelist=nil, folderidlist=nil, workflowidlist=nil, workflownamelist=nil, tasknamelist=nil, taskidlist=nil, statuslist=nil, inchargelist=nil, pagenumber=nil, pagesize=nil, sortitem=nil, sorttype=nil, projectids=nil, workflowtypelist=nil, keyword=nil)
12572
+ def initialize(projectid=nil, productnamelist=nil, folderidlist=nil, workflowidlist=nil, workflownamelist=nil, tasknamelist=nil, taskidlist=nil, statuslist=nil, inchargelist=nil, pagenumber=nil, pagesize=nil, sortitem=nil, sorttype=nil, projectids=nil, workflowtypelist=nil, keyword=nil, scheduletimezone=nil)
12436
12573
  @ProjectId = projectid
12437
12574
  @ProductNameList = productnamelist
12438
12575
  @FolderIdList = folderidlist
@@ -12449,6 +12586,7 @@ module TencentCloud
12449
12586
  @ProjectIds = projectids
12450
12587
  @WorkflowTypeList = workflowtypelist
12451
12588
  @KeyWord = keyword
12589
+ @ScheduleTimeZone = scheduletimezone
12452
12590
  end
12453
12591
 
12454
12592
  def deserialize(params)
@@ -12468,6 +12606,7 @@ module TencentCloud
12468
12606
  @ProjectIds = params['ProjectIds']
12469
12607
  @WorkflowTypeList = params['WorkflowTypeList']
12470
12608
  @KeyWord = params['KeyWord']
12609
+ @ScheduleTimeZone = params['ScheduleTimeZone']
12471
12610
  end
12472
12611
  end
12473
12612
 
@@ -16469,6 +16608,53 @@ module TencentCloud
16469
16608
  end
16470
16609
  end
16471
16610
 
16611
+ # DescribeTaskParamDs请求参数结构体
16612
+ class DescribeTaskParamDsRequest < TencentCloud::Common::AbstractModel
16613
+ # @param ProjectId: 项目ID
16614
+ # @type ProjectId: String
16615
+ # @param TaskId: 任务id
16616
+ # @type TaskId: String
16617
+
16618
+ attr_accessor :ProjectId, :TaskId
16619
+
16620
+ def initialize(projectid=nil, taskid=nil)
16621
+ @ProjectId = projectid
16622
+ @TaskId = taskid
16623
+ end
16624
+
16625
+ def deserialize(params)
16626
+ @ProjectId = params['ProjectId']
16627
+ @TaskId = params['TaskId']
16628
+ end
16629
+ end
16630
+
16631
+ # DescribeTaskParamDs返回参数结构体
16632
+ class DescribeTaskParamDsResponse < TencentCloud::Common::AbstractModel
16633
+ # @param Data: 结果集
16634
+ # @type Data: Array
16635
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
16636
+ # @type RequestId: String
16637
+
16638
+ attr_accessor :Data, :RequestId
16639
+
16640
+ def initialize(data=nil, requestid=nil)
16641
+ @Data = data
16642
+ @RequestId = requestid
16643
+ end
16644
+
16645
+ def deserialize(params)
16646
+ unless params['Data'].nil?
16647
+ @Data = []
16648
+ params['Data'].each do |i|
16649
+ parametertaskdsdto_tmp = ParameterTaskDsDto.new
16650
+ parametertaskdsdto_tmp.deserialize(i)
16651
+ @Data << parametertaskdsdto_tmp
16652
+ end
16653
+ end
16654
+ @RequestId = params['RequestId']
16655
+ end
16656
+ end
16657
+
16472
16658
  # DescribeTaskRunHistory请求参数结构体
16473
16659
  class DescribeTaskRunHistoryRequest < TencentCloud::Common::AbstractModel
16474
16660
  # @param ProjectId: 项目id
@@ -17690,6 +17876,46 @@ module TencentCloud
17690
17876
  end
17691
17877
  end
17692
17878
 
17879
+ # DisableProject请求参数结构体
17880
+ class DisableProjectRequest < TencentCloud::Common::AbstractModel
17881
+ # @param ProjectId: 项目id
17882
+ # @type ProjectId: String
17883
+ # @param ModuleKey: 模块名称
17884
+ # @type ModuleKey: String
17885
+
17886
+ attr_accessor :ProjectId, :ModuleKey
17887
+
17888
+ def initialize(projectid=nil, modulekey=nil)
17889
+ @ProjectId = projectid
17890
+ @ModuleKey = modulekey
17891
+ end
17892
+
17893
+ def deserialize(params)
17894
+ @ProjectId = params['ProjectId']
17895
+ @ModuleKey = params['ModuleKey']
17896
+ end
17897
+ end
17898
+
17899
+ # DisableProject返回参数结构体
17900
+ class DisableProjectResponse < TencentCloud::Common::AbstractModel
17901
+ # @param Data: 无
17902
+ # @type Data: Boolean
17903
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17904
+ # @type RequestId: String
17905
+
17906
+ attr_accessor :Data, :RequestId
17907
+
17908
+ def initialize(data=nil, requestid=nil)
17909
+ @Data = data
17910
+ @RequestId = requestid
17911
+ end
17912
+
17913
+ def deserialize(params)
17914
+ @Data = params['Data']
17915
+ @RequestId = params['RequestId']
17916
+ end
17917
+ end
17918
+
17693
17919
  # 数据治理配置项
17694
17920
  class DlcDataGovernPolicy < TencentCloud::Common::AbstractModel
17695
17921
  # @param RewriteDataPolicy: 数据排布治理项
@@ -18347,6 +18573,46 @@ module TencentCloud
18347
18573
  end
18348
18574
  end
18349
18575
 
18576
+ # EnableProject请求参数结构体
18577
+ class EnableProjectRequest < TencentCloud::Common::AbstractModel
18578
+ # @param ProjectId: 项目id
18579
+ # @type ProjectId: String
18580
+ # @param ModuleKey: 模块名称
18581
+ # @type ModuleKey: String
18582
+
18583
+ attr_accessor :ProjectId, :ModuleKey
18584
+
18585
+ def initialize(projectid=nil, modulekey=nil)
18586
+ @ProjectId = projectid
18587
+ @ModuleKey = modulekey
18588
+ end
18589
+
18590
+ def deserialize(params)
18591
+ @ProjectId = params['ProjectId']
18592
+ @ModuleKey = params['ModuleKey']
18593
+ end
18594
+ end
18595
+
18596
+ # EnableProject返回参数结构体
18597
+ class EnableProjectResponse < TencentCloud::Common::AbstractModel
18598
+ # @param Data: 无
18599
+ # @type Data: Boolean
18600
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18601
+ # @type RequestId: String
18602
+
18603
+ attr_accessor :Data, :RequestId
18604
+
18605
+ def initialize(data=nil, requestid=nil)
18606
+ @Data = data
18607
+ @RequestId = requestid
18608
+ end
18609
+
18610
+ def deserialize(params)
18611
+ @Data = params['Data']
18612
+ @RequestId = params['RequestId']
18613
+ end
18614
+ end
18615
+
18350
18616
  # 引擎任务信息
18351
18617
  class EngineTaskInfo < TencentCloud::Common::AbstractModel
18352
18618
  # @param EngineSubmitTime: 引擎提交时间
@@ -20771,6 +21037,58 @@ module TencentCloud
20771
21037
  end
20772
21038
  end
20773
21039
 
21040
+ # GetJobStatus请求参数结构体
21041
+ class GetJobStatusRequest < TencentCloud::Common::AbstractModel
21042
+ # @param JobId: 异步任务id
21043
+ # @type JobId: String
21044
+
21045
+ attr_accessor :JobId
21046
+
21047
+ def initialize(jobid=nil)
21048
+ @JobId = jobid
21049
+ end
21050
+
21051
+ def deserialize(params)
21052
+ @JobId = params['JobId']
21053
+ end
21054
+ end
21055
+
21056
+ # GetJobStatus返回参数结构体
21057
+ class GetJobStatusResponse < TencentCloud::Common::AbstractModel
21058
+ # @param JobId: 异步任务id
21059
+ # @type JobId: String
21060
+ # @param Completed: 是否已完成
21061
+ # @type Completed: Boolean
21062
+ # @param Status: 任务状态,Success:成功,Fail:失败,Cancel:取消,Running:运行中
21063
+ # @type Status: String
21064
+ # @param CreateTime: 创建时间时间戳,单位毫秒
21065
+ # @type CreateTime: String
21066
+ # @param ErrorMessage: 错误信息
21067
+ # @type ErrorMessage: String
21068
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
21069
+ # @type RequestId: String
21070
+
21071
+ attr_accessor :JobId, :Completed, :Status, :CreateTime, :ErrorMessage, :RequestId
21072
+
21073
+ def initialize(jobid=nil, completed=nil, status=nil, createtime=nil, errormessage=nil, requestid=nil)
21074
+ @JobId = jobid
21075
+ @Completed = completed
21076
+ @Status = status
21077
+ @CreateTime = createtime
21078
+ @ErrorMessage = errormessage
21079
+ @RequestId = requestid
21080
+ end
21081
+
21082
+ def deserialize(params)
21083
+ @JobId = params['JobId']
21084
+ @Completed = params['Completed']
21085
+ @Status = params['Status']
21086
+ @CreateTime = params['CreateTime']
21087
+ @ErrorMessage = params['ErrorMessage']
21088
+ @RequestId = params['RequestId']
21089
+ end
21090
+ end
21091
+
20774
21092
  # GetOfflineDIInstanceList请求参数结构体
20775
21093
  class GetOfflineDIInstanceListRequest < TencentCloud::Common::AbstractModel
20776
21094
  # @param PageIndex: 第几页
@@ -21536,10 +21854,13 @@ module TencentCloud
21536
21854
  # @param TaskType: 任务类型
21537
21855
  # 注意:此字段可能返回 null,表示取不到有效值。
21538
21856
  # @type TaskType: :class:`Tencentcloud::Wedata.v20210820.models.TaskTypeOpsDto`
21857
+ # @param ResourceGroup: 资源组id
21858
+ # 注意:此字段可能返回 null,表示取不到有效值。
21859
+ # @type ResourceGroup: String
21539
21860
 
21540
- attr_accessor :TaskId, :TaskName, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType, :TotalLifeRound, :TaskType
21861
+ attr_accessor :TaskId, :TaskName, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType, :TotalLifeRound, :TaskType, :ResourceGroup
21541
21862
 
21542
- def initialize(taskid=nil, taskname=nil, currundate=nil, liferound=nil, runtype=nil, tries=nil, instancelifedetaildtolist=nil, runnerstate=nil, errordesc=nil, errorcodelevel=nil, instanceloglistopsdto=nil, instancestate=nil, scheduleruntype=nil, executionjobid=nil, instanceruntype=nil, totalliferound=nil, tasktype=nil)
21863
+ def initialize(taskid=nil, taskname=nil, currundate=nil, liferound=nil, runtype=nil, tries=nil, instancelifedetaildtolist=nil, runnerstate=nil, errordesc=nil, errorcodelevel=nil, instanceloglistopsdto=nil, instancestate=nil, scheduleruntype=nil, executionjobid=nil, instanceruntype=nil, totalliferound=nil, tasktype=nil, resourcegroup=nil)
21543
21864
  @TaskId = taskid
21544
21865
  @TaskName = taskname
21545
21866
  @CurRunDate = currundate
@@ -21557,6 +21878,7 @@ module TencentCloud
21557
21878
  @InstanceRunType = instanceruntype
21558
21879
  @TotalLifeRound = totalliferound
21559
21880
  @TaskType = tasktype
21881
+ @ResourceGroup = resourcegroup
21560
21882
  end
21561
21883
 
21562
21884
  def deserialize(params)
@@ -21590,6 +21912,7 @@ module TencentCloud
21590
21912
  @TaskType = TaskTypeOpsDto.new
21591
21913
  @TaskType.deserialize(params['TaskType'])
21592
21914
  end
21915
+ @ResourceGroup = params['ResourceGroup']
21593
21916
  end
21594
21917
  end
21595
21918
 
@@ -22454,10 +22777,12 @@ module TencentCloud
22454
22777
  # @param ScheduleRunType: 调度运行方式, 0: 周期调度, 1: 空跑调度
22455
22778
  # 注意:此字段可能返回 null,表示取不到有效值。
22456
22779
  # @type ScheduleRunType: Integer
22780
+ # @param AllowRedoType: 允许重跑类型,ALL 表示无论实例运行成功还是失败都允许重跑,NONE表示无论成功或者失败都不允许重跑,FAILURE 表示只有运行失败才能重跑
22781
+ # @type AllowRedoType: String
22457
22782
 
22458
- 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, :RelatedInstanceList, :RelatedInstanceSize, :OwnerId, :UserId, :InstanceLifeCycleOpsDto, :RetryAttempts, :DeletedFatherList, :CirculateInstanceList, :ConcurrentStrategy, :ScheduleRunType
22783
+ 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, :RelatedInstanceList, :RelatedInstanceSize, :OwnerId, :UserId, :InstanceLifeCycleOpsDto, :RetryAttempts, :DeletedFatherList, :CirculateInstanceList, :ConcurrentStrategy, :ScheduleRunType, :AllowRedoType
22459
22784
 
22460
- 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, relatedinstancelist=nil, relatedinstancesize=nil, ownerid=nil, userid=nil, instancelifecycleopsdto=nil, retryattempts=nil, deletedfatherlist=nil, circulateinstancelist=nil, concurrentstrategy=nil, scheduleruntype=nil)
22785
+ 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, relatedinstancelist=nil, relatedinstancesize=nil, ownerid=nil, userid=nil, instancelifecycleopsdto=nil, retryattempts=nil, deletedfatherlist=nil, circulateinstancelist=nil, concurrentstrategy=nil, scheduleruntype=nil, allowredotype=nil)
22461
22786
  @TaskId = taskid
22462
22787
  @TaskName = taskname
22463
22788
  @WorkflowId = workflowid
@@ -22522,6 +22847,7 @@ module TencentCloud
22522
22847
  @CirculateInstanceList = circulateinstancelist
22523
22848
  @ConcurrentStrategy = concurrentstrategy
22524
22849
  @ScheduleRunType = scheduleruntype
22850
+ @AllowRedoType = allowredotype
22525
22851
  end
22526
22852
 
22527
22853
  def deserialize(params)
@@ -22609,6 +22935,7 @@ module TencentCloud
22609
22935
  end
22610
22936
  @ConcurrentStrategy = params['ConcurrentStrategy']
22611
22937
  @ScheduleRunType = params['ScheduleRunType']
22938
+ @AllowRedoType = params['AllowRedoType']
22612
22939
  end
22613
22940
  end
22614
22941
 
@@ -22870,16 +23197,22 @@ module TencentCloud
22870
23197
  # @param SchedulerTime: 计划调度时间
22871
23198
  # 注意:此字段可能返回 null,表示取不到有效值。
22872
23199
  # @type SchedulerTime: String
23200
+ # @param LastUpdateTime: 实例最近更新时间, 时间格式为 yyyy-MM-dd HH:mm:ss
23201
+ # 注意:此字段可能返回 null,表示取不到有效值。
23202
+ # @type LastUpdateTime: String
22873
23203
  # @param ExecutorGroupId: 执行资源组ID
22874
23204
  # 注意:此字段可能返回 null,表示取不到有效值。
22875
23205
  # @type ExecutorGroupId: String
22876
23206
  # @param ExecutorGroupName: 资源组名称
22877
23207
  # 注意:此字段可能返回 null,表示取不到有效值。
22878
23208
  # @type ExecutorGroupName: String
23209
+ # @param JobErrorMsg: 简要的任务失败信息
23210
+ # 注意:此字段可能返回 null,表示取不到有效值。
23211
+ # @type JobErrorMsg: String
22879
23212
 
22880
- attr_accessor :InstanceKey, :ProjectId, :FolderId, :FolderName, :WorkflowId, :WorkflowName, :InChargeList, :TaskId, :TaskName, :TaskType, :TaskCycleType, :CurRunDate, :TryLimit, :Tries, :TotalRunNum, :InstanceType, :InstanceState, :StartTime, :EndTime, :CostTime, :SchedulerTime, :ExecutorGroupId, :ExecutorGroupName
23213
+ attr_accessor :InstanceKey, :ProjectId, :FolderId, :FolderName, :WorkflowId, :WorkflowName, :InChargeList, :TaskId, :TaskName, :TaskType, :TaskCycleType, :CurRunDate, :TryLimit, :Tries, :TotalRunNum, :InstanceType, :InstanceState, :StartTime, :EndTime, :CostTime, :SchedulerTime, :LastUpdateTime, :ExecutorGroupId, :ExecutorGroupName, :JobErrorMsg
22881
23214
 
22882
- def initialize(instancekey=nil, projectid=nil, folderid=nil, foldername=nil, workflowid=nil, workflowname=nil, inchargelist=nil, taskid=nil, taskname=nil, tasktype=nil, taskcycletype=nil, currundate=nil, trylimit=nil, tries=nil, totalrunnum=nil, instancetype=nil, instancestate=nil, starttime=nil, endtime=nil, costtime=nil, schedulertime=nil, executorgroupid=nil, executorgroupname=nil)
23215
+ def initialize(instancekey=nil, projectid=nil, folderid=nil, foldername=nil, workflowid=nil, workflowname=nil, inchargelist=nil, taskid=nil, taskname=nil, tasktype=nil, taskcycletype=nil, currundate=nil, trylimit=nil, tries=nil, totalrunnum=nil, instancetype=nil, instancestate=nil, starttime=nil, endtime=nil, costtime=nil, schedulertime=nil, lastupdatetime=nil, executorgroupid=nil, executorgroupname=nil, joberrormsg=nil)
22883
23216
  @InstanceKey = instancekey
22884
23217
  @ProjectId = projectid
22885
23218
  @FolderId = folderid
@@ -22901,8 +23234,10 @@ module TencentCloud
22901
23234
  @EndTime = endtime
22902
23235
  @CostTime = costtime
22903
23236
  @SchedulerTime = schedulertime
23237
+ @LastUpdateTime = lastupdatetime
22904
23238
  @ExecutorGroupId = executorgroupid
22905
23239
  @ExecutorGroupName = executorgroupname
23240
+ @JobErrorMsg = joberrormsg
22906
23241
  end
22907
23242
 
22908
23243
  def deserialize(params)
@@ -22930,8 +23265,10 @@ module TencentCloud
22930
23265
  @EndTime = params['EndTime']
22931
23266
  @CostTime = params['CostTime']
22932
23267
  @SchedulerTime = params['SchedulerTime']
23268
+ @LastUpdateTime = params['LastUpdateTime']
22933
23269
  @ExecutorGroupId = params['ExecutorGroupId']
22934
23270
  @ExecutorGroupName = params['ExecutorGroupName']
23271
+ @JobErrorMsg = params['JobErrorMsg']
22935
23272
  end
22936
23273
  end
22937
23274
 
@@ -23312,6 +23649,28 @@ module TencentCloud
23312
23649
  end
23313
23650
  end
23314
23651
 
23652
+ # 集成标签
23653
+ class IntegrationTag < TencentCloud::Common::AbstractModel
23654
+ # @param Key: key值
23655
+ # 注意:此字段可能返回 null,表示取不到有效值。
23656
+ # @type Key: String
23657
+ # @param Value: 标签值
23658
+ # 注意:此字段可能返回 null,表示取不到有效值。
23659
+ # @type Value: String
23660
+
23661
+ attr_accessor :Key, :Value
23662
+
23663
+ def initialize(key=nil, value=nil)
23664
+ @Key = key
23665
+ @Value = value
23666
+ end
23667
+
23668
+ def deserialize(params)
23669
+ @Key = params['Key']
23670
+ @Value = params['Value']
23671
+ end
23672
+ end
23673
+
23315
23674
  # 集成任务
23316
23675
  class IntegrationTaskInfo < TencentCloud::Common::AbstractModel
23317
23676
  # @param TaskName: 任务名称
@@ -23467,10 +23826,16 @@ module TencentCloud
23467
23826
  # @param CurrentSyncPosition: 当前同步位点
23468
23827
  # 注意:此字段可能返回 null,表示取不到有效值。
23469
23828
  # @type CurrentSyncPosition: Integer
23829
+ # @param TagList: 标签列表
23830
+ # 注意:此字段可能返回 null,表示取不到有效值。
23831
+ # @type TagList: Array
23832
+ # @param ErrorMessage: 错误信息
23833
+ # 注意:此字段可能返回 null,表示取不到有效值。
23834
+ # @type ErrorMessage: String
23470
23835
 
23471
- attr_accessor :TaskName, :Description, :SyncType, :TaskType, :WorkflowId, :TaskId, :ScheduleTaskId, :TaskGroupId, :ProjectId, :CreatorUin, :OperatorUin, :OwnerUin, :AppId, :Status, :Nodes, :ExecutorId, :Config, :ExtConfig, :ExecuteContext, :Mappings, :TaskMode, :Incharge, :OfflineTaskAddEntity, :ExecutorGroupName, :InLongManagerUrl, :InLongStreamId, :InLongManagerVersion, :DataProxyUrl, :Submit, :InputDatasourceType, :OutputDatasourceType, :NumRecordsIn, :NumRecordsOut, :ReaderDelay, :NumRestarts, :CreateTime, :UpdateTime, :LastRunTime, :StopTime, :HasVersion, :Locked, :Locker, :RunningCu, :TaskAlarmRegularList, :SwitchResource, :ReadPhase, :InstanceVersion, :ArrangeSpaceTaskId, :OfflineTaskStatus, :TaskImportInfo, :BusinessLatency, :CurrentSyncPosition
23836
+ attr_accessor :TaskName, :Description, :SyncType, :TaskType, :WorkflowId, :TaskId, :ScheduleTaskId, :TaskGroupId, :ProjectId, :CreatorUin, :OperatorUin, :OwnerUin, :AppId, :Status, :Nodes, :ExecutorId, :Config, :ExtConfig, :ExecuteContext, :Mappings, :TaskMode, :Incharge, :OfflineTaskAddEntity, :ExecutorGroupName, :InLongManagerUrl, :InLongStreamId, :InLongManagerVersion, :DataProxyUrl, :Submit, :InputDatasourceType, :OutputDatasourceType, :NumRecordsIn, :NumRecordsOut, :ReaderDelay, :NumRestarts, :CreateTime, :UpdateTime, :LastRunTime, :StopTime, :HasVersion, :Locked, :Locker, :RunningCu, :TaskAlarmRegularList, :SwitchResource, :ReadPhase, :InstanceVersion, :ArrangeSpaceTaskId, :OfflineTaskStatus, :TaskImportInfo, :BusinessLatency, :CurrentSyncPosition, :TagList, :ErrorMessage
23472
23837
 
23473
- def initialize(taskname=nil, description=nil, synctype=nil, tasktype=nil, workflowid=nil, taskid=nil, scheduletaskid=nil, taskgroupid=nil, projectid=nil, creatoruin=nil, operatoruin=nil, owneruin=nil, appid=nil, status=nil, nodes=nil, executorid=nil, config=nil, extconfig=nil, executecontext=nil, mappings=nil, taskmode=nil, incharge=nil, offlinetaskaddentity=nil, executorgroupname=nil, inlongmanagerurl=nil, inlongstreamid=nil, inlongmanagerversion=nil, dataproxyurl=nil, submit=nil, inputdatasourcetype=nil, outputdatasourcetype=nil, numrecordsin=nil, numrecordsout=nil, readerdelay=nil, numrestarts=nil, createtime=nil, updatetime=nil, lastruntime=nil, stoptime=nil, hasversion=nil, locked=nil, locker=nil, runningcu=nil, taskalarmregularlist=nil, switchresource=nil, readphase=nil, instanceversion=nil, arrangespacetaskid=nil, offlinetaskstatus=nil, taskimportinfo=nil, businesslatency=nil, currentsyncposition=nil)
23838
+ def initialize(taskname=nil, description=nil, synctype=nil, tasktype=nil, workflowid=nil, taskid=nil, scheduletaskid=nil, taskgroupid=nil, projectid=nil, creatoruin=nil, operatoruin=nil, owneruin=nil, appid=nil, status=nil, nodes=nil, executorid=nil, config=nil, extconfig=nil, executecontext=nil, mappings=nil, taskmode=nil, incharge=nil, offlinetaskaddentity=nil, executorgroupname=nil, inlongmanagerurl=nil, inlongstreamid=nil, inlongmanagerversion=nil, dataproxyurl=nil, submit=nil, inputdatasourcetype=nil, outputdatasourcetype=nil, numrecordsin=nil, numrecordsout=nil, readerdelay=nil, numrestarts=nil, createtime=nil, updatetime=nil, lastruntime=nil, stoptime=nil, hasversion=nil, locked=nil, locker=nil, runningcu=nil, taskalarmregularlist=nil, switchresource=nil, readphase=nil, instanceversion=nil, arrangespacetaskid=nil, offlinetaskstatus=nil, taskimportinfo=nil, businesslatency=nil, currentsyncposition=nil, taglist=nil, errormessage=nil)
23474
23839
  @TaskName = taskname
23475
23840
  @Description = description
23476
23841
  @SyncType = synctype
@@ -23523,6 +23888,8 @@ module TencentCloud
23523
23888
  @TaskImportInfo = taskimportinfo
23524
23889
  @BusinessLatency = businesslatency
23525
23890
  @CurrentSyncPosition = currentsyncposition
23891
+ @TagList = taglist
23892
+ @ErrorMessage = errormessage
23526
23893
  end
23527
23894
 
23528
23895
  def deserialize(params)
@@ -23619,6 +23986,15 @@ module TencentCloud
23619
23986
  end
23620
23987
  @BusinessLatency = params['BusinessLatency']
23621
23988
  @CurrentSyncPosition = params['CurrentSyncPosition']
23989
+ unless params['TagList'].nil?
23990
+ @TagList = []
23991
+ params['TagList'].each do |i|
23992
+ integrationtag_tmp = IntegrationTag.new
23993
+ integrationtag_tmp.deserialize(i)
23994
+ @TagList << integrationtag_tmp
23995
+ end
23996
+ end
23997
+ @ErrorMessage = params['ErrorMessage']
23622
23998
  end
23623
23999
  end
23624
24000
 
@@ -24226,10 +24602,16 @@ module TencentCloud
24226
24602
  # @param ScheduleTimeZone: **时区**
24227
24603
  # timeZone, 默认UTC+8
24228
24604
  # @type ScheduleTimeZone: String
24605
+ # @param LastUpdateTimeFrom: **实例最近更新时间过滤条件**
24606
+ # 过滤截止时间,时间格式为 yyyy-MM-dd HH:mm:ss
24607
+ # @type LastUpdateTimeFrom: String
24608
+ # @param LastUpdateTimeTo: **实例最近更新时间过滤条件**
24609
+ # 过滤截止时间,时间格式为 yyyy-MM-dd HH:mm:ss
24610
+ # @type LastUpdateTimeTo: String
24229
24611
 
24230
- attr_accessor :ProjectId, :ScheduleTimeFrom, :ScheduleTimeTo, :PageNumber, :PageSize, :SortColumn, :SortType, :InstanceType, :InstanceStateList, :TaskTypeIdList, :TaskCycleList, :Keyword, :InChargeList, :TaskFolderIdList, :WorkflowIdList, :ExecutorGroupIdList, :StartTimeFrom, :StartTimeTo, :ScheduleTimeZone
24612
+ attr_accessor :ProjectId, :ScheduleTimeFrom, :ScheduleTimeTo, :PageNumber, :PageSize, :SortColumn, :SortType, :InstanceType, :InstanceStateList, :TaskTypeIdList, :TaskCycleList, :Keyword, :InChargeList, :TaskFolderIdList, :WorkflowIdList, :ExecutorGroupIdList, :StartTimeFrom, :StartTimeTo, :ScheduleTimeZone, :LastUpdateTimeFrom, :LastUpdateTimeTo
24231
24613
 
24232
- def initialize(projectid=nil, scheduletimefrom=nil, scheduletimeto=nil, pagenumber=nil, pagesize=nil, sortcolumn=nil, sorttype=nil, instancetype=nil, instancestatelist=nil, tasktypeidlist=nil, taskcyclelist=nil, keyword=nil, inchargelist=nil, taskfolderidlist=nil, workflowidlist=nil, executorgroupidlist=nil, starttimefrom=nil, starttimeto=nil, scheduletimezone=nil)
24614
+ def initialize(projectid=nil, scheduletimefrom=nil, scheduletimeto=nil, pagenumber=nil, pagesize=nil, sortcolumn=nil, sorttype=nil, instancetype=nil, instancestatelist=nil, tasktypeidlist=nil, taskcyclelist=nil, keyword=nil, inchargelist=nil, taskfolderidlist=nil, workflowidlist=nil, executorgroupidlist=nil, starttimefrom=nil, starttimeto=nil, scheduletimezone=nil, lastupdatetimefrom=nil, lastupdatetimeto=nil)
24233
24615
  @ProjectId = projectid
24234
24616
  @ScheduleTimeFrom = scheduletimefrom
24235
24617
  @ScheduleTimeTo = scheduletimeto
@@ -24249,6 +24631,8 @@ module TencentCloud
24249
24631
  @StartTimeFrom = starttimefrom
24250
24632
  @StartTimeTo = starttimeto
24251
24633
  @ScheduleTimeZone = scheduletimezone
24634
+ @LastUpdateTimeFrom = lastupdatetimefrom
24635
+ @LastUpdateTimeTo = lastupdatetimeto
24252
24636
  end
24253
24637
 
24254
24638
  def deserialize(params)
@@ -24271,6 +24655,8 @@ module TencentCloud
24271
24655
  @StartTimeFrom = params['StartTimeFrom']
24272
24656
  @StartTimeTo = params['StartTimeTo']
24273
24657
  @ScheduleTimeZone = params['ScheduleTimeZone']
24658
+ @LastUpdateTimeFrom = params['LastUpdateTimeFrom']
24659
+ @LastUpdateTimeTo = params['LastUpdateTimeTo']
24274
24660
  end
24275
24661
  end
24276
24662
 
@@ -25532,6 +25918,69 @@ module TencentCloud
25532
25918
  end
25533
25919
  end
25534
25920
 
25921
+ # ModifyProject请求参数结构体
25922
+ class ModifyProjectRequest < TencentCloud::Common::AbstractModel
25923
+ # @param ProjectId: 目标修改的项目ID
25924
+ # @type ProjectId: String
25925
+ # @param TaskSubmitApproval: true/false则修改,不带该参数不修改。
25926
+ # @type TaskSubmitApproval: Boolean
25927
+ # @param ResourcePoolInfo: 资源池信息
25928
+ # @type ResourcePoolInfo: :class:`Tencentcloud::Wedata.v20210820.models.ResourcePoolInfo`
25929
+ # @param ProjectManagers: 项目管理员
25930
+ # @type ProjectManagers: Array
25931
+ # @param TaskStrictMode: 调度任务严格模式
25932
+ # @type TaskStrictMode: Boolean
25933
+ # @param ExtraOptions: 以后新增选项可以直接通过前端的json格式写入去实现
25934
+ # @type ExtraOptions: String
25935
+ # @param Model: 项目类型,SIMPLE:简单模式 STANDARD:标准模式
25936
+ # @type Model: String
25937
+ # @param ProjectOwner: 项目负责人
25938
+ # @type ProjectOwner: Array
25939
+
25940
+ attr_accessor :ProjectId, :TaskSubmitApproval, :ResourcePoolInfo, :ProjectManagers, :TaskStrictMode, :ExtraOptions, :Model, :ProjectOwner
25941
+
25942
+ def initialize(projectid=nil, tasksubmitapproval=nil, resourcepoolinfo=nil, projectmanagers=nil, taskstrictmode=nil, extraoptions=nil, model=nil, projectowner=nil)
25943
+ @ProjectId = projectid
25944
+ @TaskSubmitApproval = tasksubmitapproval
25945
+ @ResourcePoolInfo = resourcepoolinfo
25946
+ @ProjectManagers = projectmanagers
25947
+ @TaskStrictMode = taskstrictmode
25948
+ @ExtraOptions = extraoptions
25949
+ @Model = model
25950
+ @ProjectOwner = projectowner
25951
+ end
25952
+
25953
+ def deserialize(params)
25954
+ @ProjectId = params['ProjectId']
25955
+ @TaskSubmitApproval = params['TaskSubmitApproval']
25956
+ unless params['ResourcePoolInfo'].nil?
25957
+ @ResourcePoolInfo = ResourcePoolInfo.new
25958
+ @ResourcePoolInfo.deserialize(params['ResourcePoolInfo'])
25959
+ end
25960
+ @ProjectManagers = params['ProjectManagers']
25961
+ @TaskStrictMode = params['TaskStrictMode']
25962
+ @ExtraOptions = params['ExtraOptions']
25963
+ @Model = params['Model']
25964
+ @ProjectOwner = params['ProjectOwner']
25965
+ end
25966
+ end
25967
+
25968
+ # ModifyProject返回参数结构体
25969
+ class ModifyProjectResponse < TencentCloud::Common::AbstractModel
25970
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
25971
+ # @type RequestId: String
25972
+
25973
+ attr_accessor :RequestId
25974
+
25975
+ def initialize(requestid=nil)
25976
+ @RequestId = requestid
25977
+ end
25978
+
25979
+ def deserialize(params)
25980
+ @RequestId = params['RequestId']
25981
+ end
25982
+ end
25983
+
25535
25984
  # ModifyRuleGroupSubscription请求参数结构体
25536
25985
  class ModifyRuleGroupSubscriptionRequest < TencentCloud::Common::AbstractModel
25537
25986
  # @param RuleGroupId: 规则组ID
@@ -28985,6 +29434,138 @@ module TencentCloud
28985
29434
  end
28986
29435
  end
28987
29436
 
29437
+ # RemoveDatabase请求参数结构体
29438
+ class RemoveDatabaseRequest < TencentCloud::Common::AbstractModel
29439
+ # @param DatasourceId: 数据源id
29440
+ # @type DatasourceId: Integer
29441
+ # @param DatabaseName: database名称
29442
+ # @type DatabaseName: String
29443
+
29444
+ attr_accessor :DatasourceId, :DatabaseName
29445
+
29446
+ def initialize(datasourceid=nil, databasename=nil)
29447
+ @DatasourceId = datasourceid
29448
+ @DatabaseName = databasename
29449
+ end
29450
+
29451
+ def deserialize(params)
29452
+ @DatasourceId = params['DatasourceId']
29453
+ @DatabaseName = params['DatabaseName']
29454
+ end
29455
+ end
29456
+
29457
+ # RemoveDatabase返回参数结构体
29458
+ class RemoveDatabaseResponse < TencentCloud::Common::AbstractModel
29459
+ # @param JobId: 异步删除的任务id,用于查询执行状态
29460
+ # @type JobId: String
29461
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
29462
+ # @type RequestId: String
29463
+
29464
+ attr_accessor :JobId, :RequestId
29465
+
29466
+ def initialize(jobid=nil, requestid=nil)
29467
+ @JobId = jobid
29468
+ @RequestId = requestid
29469
+ end
29470
+
29471
+ def deserialize(params)
29472
+ @JobId = params['JobId']
29473
+ @RequestId = params['RequestId']
29474
+ end
29475
+ end
29476
+
29477
+ # RemoveSchema请求参数结构体
29478
+ class RemoveSchemaRequest < TencentCloud::Common::AbstractModel
29479
+ # @param DatasourceId: 数据源id
29480
+ # @type DatasourceId: Integer
29481
+ # @param DatabaseName: database名称
29482
+ # @type DatabaseName: String
29483
+ # @param SchemaName: schema名称
29484
+ # @type SchemaName: String
29485
+
29486
+ attr_accessor :DatasourceId, :DatabaseName, :SchemaName
29487
+
29488
+ def initialize(datasourceid=nil, databasename=nil, schemaname=nil)
29489
+ @DatasourceId = datasourceid
29490
+ @DatabaseName = databasename
29491
+ @SchemaName = schemaname
29492
+ end
29493
+
29494
+ def deserialize(params)
29495
+ @DatasourceId = params['DatasourceId']
29496
+ @DatabaseName = params['DatabaseName']
29497
+ @SchemaName = params['SchemaName']
29498
+ end
29499
+ end
29500
+
29501
+ # RemoveSchema返回参数结构体
29502
+ class RemoveSchemaResponse < TencentCloud::Common::AbstractModel
29503
+ # @param JobId: 异步删除的任务id,用于查询执行状态
29504
+ # @type JobId: String
29505
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
29506
+ # @type RequestId: String
29507
+
29508
+ attr_accessor :JobId, :RequestId
29509
+
29510
+ def initialize(jobid=nil, requestid=nil)
29511
+ @JobId = jobid
29512
+ @RequestId = requestid
29513
+ end
29514
+
29515
+ def deserialize(params)
29516
+ @JobId = params['JobId']
29517
+ @RequestId = params['RequestId']
29518
+ end
29519
+ end
29520
+
29521
+ # RemoveTable请求参数结构体
29522
+ class RemoveTableRequest < TencentCloud::Common::AbstractModel
29523
+ # @param DatasourceId: 数据源id
29524
+ # @type DatasourceId: Integer
29525
+ # @param DatabaseName: database名称
29526
+ # @type DatabaseName: String
29527
+ # @param SchemaName: schema名称
29528
+ # @type SchemaName: String
29529
+ # @param TableName: 表名称
29530
+ # @type TableName: String
29531
+
29532
+ attr_accessor :DatasourceId, :DatabaseName, :SchemaName, :TableName
29533
+
29534
+ def initialize(datasourceid=nil, databasename=nil, schemaname=nil, tablename=nil)
29535
+ @DatasourceId = datasourceid
29536
+ @DatabaseName = databasename
29537
+ @SchemaName = schemaname
29538
+ @TableName = tablename
29539
+ end
29540
+
29541
+ def deserialize(params)
29542
+ @DatasourceId = params['DatasourceId']
29543
+ @DatabaseName = params['DatabaseName']
29544
+ @SchemaName = params['SchemaName']
29545
+ @TableName = params['TableName']
29546
+ end
29547
+ end
29548
+
29549
+ # RemoveTable返回参数结构体
29550
+ class RemoveTableResponse < TencentCloud::Common::AbstractModel
29551
+ # @param Result: 结果
29552
+ # @type Result: Boolean
29553
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
29554
+ # @type RequestId: String
29555
+
29556
+ attr_accessor :Result, :RequestId
29557
+
29558
+ def initialize(result=nil, requestid=nil)
29559
+ @Result = result
29560
+ @RequestId = requestid
29561
+ end
29562
+
29563
+ def deserialize(params)
29564
+ @Result = params['Result']
29565
+ @RequestId = params['RequestId']
29566
+ end
29567
+ end
29568
+
28988
29569
  # RemoveWorkflowDs请求参数结构体
28989
29570
  class RemoveWorkflowDsRequest < TencentCloud::Common::AbstractModel
28990
29571
  # @param ProjectId: 项目ID
@@ -29209,6 +29790,225 @@ module TencentCloud
29209
29790
  end
29210
29791
  end
29211
29792
 
29793
+ # 上报表元数据的字段结构
29794
+ class ReportColumnInfo < TencentCloud::Common::AbstractModel
29795
+ # @param Name: 字段名称,字符长度128内
29796
+ # @type Name: String
29797
+ # @param Type: 字段类型,字符长度128内
29798
+ # @type Type: String
29799
+ # @param Position: 字段位置,1开始
29800
+ # @type Position: Integer
29801
+ # @param Description: 字段描述,字符长度256内
29802
+ # @type Description: String
29803
+ # @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
29804
+ # @type CreateTime: String
29805
+ # @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
29806
+ # @type ModifiedTime: String
29807
+
29808
+ attr_accessor :Name, :Type, :Position, :Description, :CreateTime, :ModifiedTime
29809
+
29810
+ def initialize(name=nil, type=nil, position=nil, description=nil, createtime=nil, modifiedtime=nil)
29811
+ @Name = name
29812
+ @Type = type
29813
+ @Position = position
29814
+ @Description = description
29815
+ @CreateTime = createtime
29816
+ @ModifiedTime = modifiedtime
29817
+ end
29818
+
29819
+ def deserialize(params)
29820
+ @Name = params['Name']
29821
+ @Type = params['Type']
29822
+ @Position = params['Position']
29823
+ @Description = params['Description']
29824
+ @CreateTime = params['CreateTime']
29825
+ @ModifiedTime = params['ModifiedTime']
29826
+ end
29827
+ end
29828
+
29829
+ # ReportDatabase请求参数结构体
29830
+ class ReportDatabaseRequest < TencentCloud::Common::AbstractModel
29831
+ # @param DatasourceId: 数据源id
29832
+ # @type DatasourceId: Integer
29833
+ # @param DatabaseName: database名称,字符长度128内
29834
+ # @type DatabaseName: String
29835
+ # @param Description: 描述,字符长度3000内
29836
+ # @type Description: String
29837
+ # @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
29838
+ # @type CreateTime: Integer
29839
+ # @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
29840
+ # @type ModifiedTime: Integer
29841
+
29842
+ attr_accessor :DatasourceId, :DatabaseName, :Description, :CreateTime, :ModifiedTime
29843
+
29844
+ def initialize(datasourceid=nil, databasename=nil, description=nil, createtime=nil, modifiedtime=nil)
29845
+ @DatasourceId = datasourceid
29846
+ @DatabaseName = databasename
29847
+ @Description = description
29848
+ @CreateTime = createtime
29849
+ @ModifiedTime = modifiedtime
29850
+ end
29851
+
29852
+ def deserialize(params)
29853
+ @DatasourceId = params['DatasourceId']
29854
+ @DatabaseName = params['DatabaseName']
29855
+ @Description = params['Description']
29856
+ @CreateTime = params['CreateTime']
29857
+ @ModifiedTime = params['ModifiedTime']
29858
+ end
29859
+ end
29860
+
29861
+ # ReportDatabase返回参数结构体
29862
+ class ReportDatabaseResponse < TencentCloud::Common::AbstractModel
29863
+ # @param Guid: 元数据唯一id
29864
+ # @type Guid: String
29865
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
29866
+ # @type RequestId: String
29867
+
29868
+ attr_accessor :Guid, :RequestId
29869
+
29870
+ def initialize(guid=nil, requestid=nil)
29871
+ @Guid = guid
29872
+ @RequestId = requestid
29873
+ end
29874
+
29875
+ def deserialize(params)
29876
+ @Guid = params['Guid']
29877
+ @RequestId = params['RequestId']
29878
+ end
29879
+ end
29880
+
29881
+ # ReportSchema请求参数结构体
29882
+ class ReportSchemaRequest < TencentCloud::Common::AbstractModel
29883
+ # @param DatasourceId: 数据源id
29884
+ # @type DatasourceId: Integer
29885
+ # @param DatabaseName: database名称,字符长度128内
29886
+ # @type DatabaseName: String
29887
+ # @param SchemaName: schema名称,字符长度128内
29888
+ # @type SchemaName: String
29889
+ # @param Description: 描述,字符长度3000内
29890
+ # @type Description: String
29891
+ # @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
29892
+ # @type CreateTime: Integer
29893
+ # @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
29894
+ # @type ModifiedTime: Integer
29895
+
29896
+ attr_accessor :DatasourceId, :DatabaseName, :SchemaName, :Description, :CreateTime, :ModifiedTime
29897
+
29898
+ def initialize(datasourceid=nil, databasename=nil, schemaname=nil, description=nil, createtime=nil, modifiedtime=nil)
29899
+ @DatasourceId = datasourceid
29900
+ @DatabaseName = databasename
29901
+ @SchemaName = schemaname
29902
+ @Description = description
29903
+ @CreateTime = createtime
29904
+ @ModifiedTime = modifiedtime
29905
+ end
29906
+
29907
+ def deserialize(params)
29908
+ @DatasourceId = params['DatasourceId']
29909
+ @DatabaseName = params['DatabaseName']
29910
+ @SchemaName = params['SchemaName']
29911
+ @Description = params['Description']
29912
+ @CreateTime = params['CreateTime']
29913
+ @ModifiedTime = params['ModifiedTime']
29914
+ end
29915
+ end
29916
+
29917
+ # ReportSchema返回参数结构体
29918
+ class ReportSchemaResponse < TencentCloud::Common::AbstractModel
29919
+ # @param Guid: 元数据唯一id
29920
+ # @type Guid: String
29921
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
29922
+ # @type RequestId: String
29923
+
29924
+ attr_accessor :Guid, :RequestId
29925
+
29926
+ def initialize(guid=nil, requestid=nil)
29927
+ @Guid = guid
29928
+ @RequestId = requestid
29929
+ end
29930
+
29931
+ def deserialize(params)
29932
+ @Guid = params['Guid']
29933
+ @RequestId = params['RequestId']
29934
+ end
29935
+ end
29936
+
29937
+ # ReportTable请求参数结构体
29938
+ class ReportTableRequest < TencentCloud::Common::AbstractModel
29939
+ # @param DatasourceId: 数据源id
29940
+ # @type DatasourceId: Integer
29941
+ # @param DatabaseName: database名称,字符长度128内
29942
+ # @type DatabaseName: String
29943
+ # @param TableName: table名称,字符长度128内
29944
+ # @type TableName: String
29945
+ # @param Type: 表类型,VIEW/TABLE
29946
+ # @type Type: String
29947
+ # @param SchemaName: schema名称,字符长度128内
29948
+ # @type SchemaName: String
29949
+ # @param Description: 描述,字符长度1000内
29950
+ # @type Description: String
29951
+ # @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
29952
+ # @type CreateTime: Integer
29953
+ # @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
29954
+ # @type ModifiedTime: Integer
29955
+ # @param Columns: 字段信息
29956
+ # @type Columns: Array
29957
+
29958
+ attr_accessor :DatasourceId, :DatabaseName, :TableName, :Type, :SchemaName, :Description, :CreateTime, :ModifiedTime, :Columns
29959
+
29960
+ def initialize(datasourceid=nil, databasename=nil, tablename=nil, type=nil, schemaname=nil, description=nil, createtime=nil, modifiedtime=nil, columns=nil)
29961
+ @DatasourceId = datasourceid
29962
+ @DatabaseName = databasename
29963
+ @TableName = tablename
29964
+ @Type = type
29965
+ @SchemaName = schemaname
29966
+ @Description = description
29967
+ @CreateTime = createtime
29968
+ @ModifiedTime = modifiedtime
29969
+ @Columns = columns
29970
+ end
29971
+
29972
+ def deserialize(params)
29973
+ @DatasourceId = params['DatasourceId']
29974
+ @DatabaseName = params['DatabaseName']
29975
+ @TableName = params['TableName']
29976
+ @Type = params['Type']
29977
+ @SchemaName = params['SchemaName']
29978
+ @Description = params['Description']
29979
+ @CreateTime = params['CreateTime']
29980
+ @ModifiedTime = params['ModifiedTime']
29981
+ unless params['Columns'].nil?
29982
+ @Columns = []
29983
+ params['Columns'].each do |i|
29984
+ reportcolumninfo_tmp = ReportColumnInfo.new
29985
+ reportcolumninfo_tmp.deserialize(i)
29986
+ @Columns << reportcolumninfo_tmp
29987
+ end
29988
+ end
29989
+ end
29990
+ end
29991
+
29992
+ # ReportTable返回参数结构体
29993
+ class ReportTableResponse < TencentCloud::Common::AbstractModel
29994
+ # @param Guid: 元数据唯一id
29995
+ # @type Guid: String
29996
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
29997
+ # @type RequestId: String
29998
+
29999
+ attr_accessor :Guid, :RequestId
30000
+
30001
+ def initialize(guid=nil, requestid=nil)
30002
+ @Guid = guid
30003
+ @RequestId = requestid
30004
+ end
30005
+
30006
+ def deserialize(params)
30007
+ @Guid = params['Guid']
30008
+ @RequestId = params['RequestId']
30009
+ end
30010
+ end
30011
+
29212
30012
  # 上报任务详情
29213
30013
  class ReportTaskDetail < TencentCloud::Common::AbstractModel
29214
30014
  # @param EngineTaskId: 引擎任务id
@@ -29469,6 +30269,38 @@ module TencentCloud
29469
30269
  end
29470
30270
  end
29471
30271
 
30272
+ # 资源池信息
30273
+ class ResourcePoolInfo < TencentCloud::Common::AbstractModel
30274
+ # @param ResourcePools: 资源池id
30275
+ # @type ResourcePools: Array
30276
+ # @param StorageSize: 存储空间大小,单位 MB
30277
+ # @type StorageSize: Integer
30278
+ # @param StorageFileNum: 存储文件数大小
30279
+ # @type StorageFileNum: Integer
30280
+ # @param ClusterId: 集群id
30281
+ # @type ClusterId: String
30282
+ # @param StorageType: 存储类型,0 代表HDFS,1 代表OZONE
30283
+ # @type StorageType: String
30284
+
30285
+ attr_accessor :ResourcePools, :StorageSize, :StorageFileNum, :ClusterId, :StorageType
30286
+
30287
+ def initialize(resourcepools=nil, storagesize=nil, storagefilenum=nil, clusterid=nil, storagetype=nil)
30288
+ @ResourcePools = resourcepools
30289
+ @StorageSize = storagesize
30290
+ @StorageFileNum = storagefilenum
30291
+ @ClusterId = clusterid
30292
+ @StorageType = storagetype
30293
+ end
30294
+
30295
+ def deserialize(params)
30296
+ @ResourcePools = params['ResourcePools']
30297
+ @StorageSize = params['StorageSize']
30298
+ @StorageFileNum = params['StorageFileNum']
30299
+ @ClusterId = params['ClusterId']
30300
+ @StorageType = params['StorageType']
30301
+ end
30302
+ end
30303
+
29472
30304
  # ResumeIntegrationTask请求参数结构体
29473
30305
  class ResumeIntegrationTaskRequest < TencentCloud::Common::AbstractModel
29474
30306
  # @param TaskId: 任务id
@@ -30847,10 +31679,13 @@ module TencentCloud
30847
31679
  # @type DatasourceId: String
30848
31680
  # @param Description: 任务描述
30849
31681
  # @type Description: String
31682
+ # @param ScheduleTimeZone: 时区
31683
+ # 注意:此字段可能返回 null,表示取不到有效值。
31684
+ # @type ScheduleTimeZone: String
30850
31685
 
30851
- attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName, :RuleGroupName, :DatabaseName, :SchemaName, :TableName, :DatasourceId, :Description
31686
+ attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName, :RuleGroupName, :DatabaseName, :SchemaName, :TableName, :DatasourceId, :Description, :ScheduleTimeZone
30852
31687
 
30853
- def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil, rulegroupname=nil, databasename=nil, schemaname=nil, tablename=nil, datasourceid=nil, description=nil)
31688
+ def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil, rulegroupname=nil, databasename=nil, schemaname=nil, tablename=nil, datasourceid=nil, description=nil, scheduletimezone=nil)
30854
31689
  @RuleGroupId = rulegroupid
30855
31690
  @MonitorType = monitortype
30856
31691
  @ExecQueue = execqueue
@@ -30875,6 +31710,7 @@ module TencentCloud
30875
31710
  @TableName = tablename
30876
31711
  @DatasourceId = datasourceid
30877
31712
  @Description = description
31713
+ @ScheduleTimeZone = scheduletimezone
30878
31714
  end
30879
31715
 
30880
31716
  def deserialize(params)
@@ -30909,6 +31745,7 @@ module TencentCloud
30909
31745
  @TableName = params['TableName']
30910
31746
  @DatasourceId = params['DatasourceId']
30911
31747
  @Description = params['Description']
31748
+ @ScheduleTimeZone = params['ScheduleTimeZone']
30912
31749
  end
30913
31750
  end
30914
31751
 
@@ -33058,10 +33895,12 @@ module TencentCloud
33058
33895
  # @type ScriptContent: String
33059
33896
  # @param VersionId: 版本号
33060
33897
  # @type VersionId: String
33898
+ # @param SubmitTaskTestRunType: 提交任务测试运行类型
33899
+ # @type SubmitTaskTestRunType: String
33061
33900
 
33062
- attr_accessor :TaskIds, :ProjectId, :WorkFlowId, :Name, :Tasks, :Description, :RunParams, :ScriptContent, :VersionId
33901
+ attr_accessor :TaskIds, :ProjectId, :WorkFlowId, :Name, :Tasks, :Description, :RunParams, :ScriptContent, :VersionId, :SubmitTaskTestRunType
33063
33902
 
33064
- def initialize(taskids=nil, projectid=nil, workflowid=nil, name=nil, tasks=nil, description=nil, runparams=nil, scriptcontent=nil, versionid=nil)
33903
+ def initialize(taskids=nil, projectid=nil, workflowid=nil, name=nil, tasks=nil, description=nil, runparams=nil, scriptcontent=nil, versionid=nil, submittasktestruntype=nil)
33065
33904
  @TaskIds = taskids
33066
33905
  @ProjectId = projectid
33067
33906
  @WorkFlowId = workflowid
@@ -33071,6 +33910,7 @@ module TencentCloud
33071
33910
  @RunParams = runparams
33072
33911
  @ScriptContent = scriptcontent
33073
33912
  @VersionId = versionid
33913
+ @SubmitTaskTestRunType = submittasktestruntype
33074
33914
  end
33075
33915
 
33076
33916
  def deserialize(params)
@@ -33090,6 +33930,7 @@ module TencentCloud
33090
33930
  @RunParams = params['RunParams']
33091
33931
  @ScriptContent = params['ScriptContent']
33092
33932
  @VersionId = params['VersionId']
33933
+ @SubmitTaskTestRunType = params['SubmitTaskTestRunType']
33093
33934
  end
33094
33935
  end
33095
33936
 
@@ -35594,10 +36435,13 @@ module TencentCloud
35594
36435
  # @param TemplateId: 引用的代码模版id
35595
36436
  # 注意:此字段可能返回 null,表示取不到有效值。
35596
36437
  # @type TemplateId: String
36438
+ # @param AllowRedoType: 允许重跑类 ALL 无论实例成功或者失败,都允许重跑 FAILURE 只有失败的实例允许重跑,成功的实例不允许重跑 NONE 无论成功或者失败,都不允许重跑
36439
+ # 注意:此字段可能返回 null,表示取不到有效值。
36440
+ # @type AllowRedoType: String
35597
36441
 
35598
- attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :ProjectId, :ProjectIdent, :ProjectName, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :Retriable, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :TaskExt, :Properties, :Notes, :InstanceInitStrategy, :YarnQueue, :Alarms, :Alarm, :ScriptChange, :Submit, :LastSchedulerCommitTime, :NormalizedJobStartTime, :RecoverFreezeStartTime, :SourceServer, :TargetServer, :Tasks, :Creater, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :DependencyConfigList, :VirtualTaskStatus, :RecycleTips, :RecycleUser, :NewOrUpdate, :Params, :TaskLinkInfo, :ImportResult, :ImportErrMsg, :ContentType, :TaskAutoSubmit, :ProductName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :SchedulerDesc, :ResourceGroup, :VersionDesc, :LinkId, :UserFileId, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :ParamInList, :ParamOutList, :TaskFolderId, :MaxRetryAttempts, :ResourceGroupName, :SourceServiceName, :TaskRegisterOutputTable, :CycleDependencyConfigList, :Warning, :ScheduleRunType, :ConcurrentStrategy, :ScheduleTimeZone, :TemplateId
36442
+ attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :ProjectId, :ProjectIdent, :ProjectName, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :Retriable, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :TaskExt, :Properties, :Notes, :InstanceInitStrategy, :YarnQueue, :Alarms, :Alarm, :ScriptChange, :Submit, :LastSchedulerCommitTime, :NormalizedJobStartTime, :RecoverFreezeStartTime, :SourceServer, :TargetServer, :Tasks, :Creater, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :DependencyConfigList, :VirtualTaskStatus, :RecycleTips, :RecycleUser, :NewOrUpdate, :Params, :TaskLinkInfo, :ImportResult, :ImportErrMsg, :ContentType, :TaskAutoSubmit, :ProductName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :SchedulerDesc, :ResourceGroup, :VersionDesc, :LinkId, :UserFileId, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :ParamInList, :ParamOutList, :TaskFolderId, :MaxRetryAttempts, :ResourceGroupName, :SourceServiceName, :TaskRegisterOutputTable, :CycleDependencyConfigList, :Warning, :ScheduleRunType, :ConcurrentStrategy, :ScheduleTimeZone, :TemplateId, :AllowRedoType
35599
36443
 
35600
- 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, projectid=nil, projectident=nil, projectname=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retriable=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, taskext=nil, properties=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, alarms=nil, alarm=nil, scriptchange=nil, submit=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, recoverfreezestarttime=nil, sourceserver=nil, targetserver=nil, tasks=nil, creater=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, dependencyconfiglist=nil, virtualtaskstatus=nil, recycletips=nil, recycleuser=nil, neworupdate=nil, params=nil, tasklinkinfo=nil, importresult=nil, importerrmsg=nil, contenttype=nil, taskautosubmit=nil, productname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, schedulerdesc=nil, resourcegroup=nil, versiondesc=nil, linkid=nil, userfileid=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, paraminlist=nil, paramoutlist=nil, taskfolderid=nil, maxretryattempts=nil, resourcegroupname=nil, sourceservicename=nil, taskregisteroutputtable=nil, cycledependencyconfiglist=nil, warning=nil, scheduleruntype=nil, concurrentstrategy=nil, scheduletimezone=nil, templateid=nil)
36444
+ 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, projectid=nil, projectident=nil, projectname=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retriable=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, taskext=nil, properties=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, alarms=nil, alarm=nil, scriptchange=nil, submit=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, recoverfreezestarttime=nil, sourceserver=nil, targetserver=nil, tasks=nil, creater=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, dependencyconfiglist=nil, virtualtaskstatus=nil, recycletips=nil, recycleuser=nil, neworupdate=nil, params=nil, tasklinkinfo=nil, importresult=nil, importerrmsg=nil, contenttype=nil, taskautosubmit=nil, productname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, schedulerdesc=nil, resourcegroup=nil, versiondesc=nil, linkid=nil, userfileid=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, paraminlist=nil, paramoutlist=nil, taskfolderid=nil, maxretryattempts=nil, resourcegroupname=nil, sourceservicename=nil, taskregisteroutputtable=nil, cycledependencyconfiglist=nil, warning=nil, scheduleruntype=nil, concurrentstrategy=nil, scheduletimezone=nil, templateid=nil, allowredotype=nil)
35601
36445
  @TaskId = taskid
35602
36446
  @VirtualTaskId = virtualtaskid
35603
36447
  @VirtualFlag = virtualflag
@@ -35698,6 +36542,7 @@ module TencentCloud
35698
36542
  @ConcurrentStrategy = concurrentstrategy
35699
36543
  @ScheduleTimeZone = scheduletimezone
35700
36544
  @TemplateId = templateid
36545
+ @AllowRedoType = allowredotype
35701
36546
  end
35702
36547
 
35703
36548
  def deserialize(params)
@@ -35870,6 +36715,7 @@ module TencentCloud
35870
36715
  @ConcurrentStrategy = params['ConcurrentStrategy']
35871
36716
  @ScheduleTimeZone = params['ScheduleTimeZone']
35872
36717
  @TemplateId = params['TemplateId']
36718
+ @AllowRedoType = params['AllowRedoType']
35873
36719
  end
35874
36720
  end
35875
36721
 
@@ -36818,10 +37664,12 @@ module TencentCloud
36818
37664
  # no:任务无需满足自依赖
36819
37665
  # 注意:此字段可能返回 null,表示取不到有效值。
36820
37666
  # @type SelfWorkFlowDependType: String
37667
+ # @param AllowRedoType: 允许重跑类型,ALL 表示无论实例运行成功还是失败都允许重跑,NONE表示无论成功或者失败都不允许重跑,FAILURE 表示只有运行失败才能重跑
37668
+ # @type AllowRedoType: String
36821
37669
 
36822
- 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, :TaskExtInfo, :EventListenerInfos, :ScriptInfo, :DLCResourceConfig, :ParentTaskInfos, :ExtResourceFlag, :NewParentTaskInfos, :SelfWorkFlowDependType
37670
+ 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, :TaskExtInfo, :EventListenerInfos, :ScriptInfo, :DLCResourceConfig, :ParentTaskInfos, :ExtResourceFlag, :NewParentTaskInfos, :SelfWorkFlowDependType, :AllowRedoType
36823
37671
 
36824
- 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, taskextinfo=nil, eventlistenerinfos=nil, scriptinfo=nil, dlcresourceconfig=nil, parenttaskinfos=nil, extresourceflag=nil, newparenttaskinfos=nil, selfworkflowdependtype=nil)
37672
+ 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, taskextinfo=nil, eventlistenerinfos=nil, scriptinfo=nil, dlcresourceconfig=nil, parenttaskinfos=nil, extresourceflag=nil, newparenttaskinfos=nil, selfworkflowdependtype=nil, allowredotype=nil)
36825
37673
  @TaskId = taskid
36826
37674
  @VirtualTaskId = virtualtaskid
36827
37675
  @VirtualFlag = virtualflag
@@ -36912,6 +37760,7 @@ module TencentCloud
36912
37760
  @ExtResourceFlag = extresourceflag
36913
37761
  @NewParentTaskInfos = newparenttaskinfos
36914
37762
  @SelfWorkFlowDependType = selfworkflowdependtype
37763
+ @AllowRedoType = allowredotype
36915
37764
  end
36916
37765
 
36917
37766
  def deserialize(params)
@@ -37037,6 +37886,7 @@ module TencentCloud
37037
37886
  end
37038
37887
  end
37039
37888
  @SelfWorkFlowDependType = params['SelfWorkFlowDependType']
37889
+ @AllowRedoType = params['AllowRedoType']
37040
37890
  end
37041
37891
  end
37042
37892
 
@@ -38206,6 +39056,54 @@ module TencentCloud
38206
39056
  end
38207
39057
  end
38208
39058
 
39059
+ # UnboundProjectExecutorResource请求参数结构体
39060
+ class UnboundProjectExecutorResourceRequest < TencentCloud::Common::AbstractModel
39061
+ # @param ExecutorGroupId: 执行资源组id
39062
+ # @type ExecutorGroupId: String
39063
+ # @param ProjectId: 项目id
39064
+ # @type ProjectId: String
39065
+ # @param ProjectIdList: 可选: 需要绑定的多个项目id, 若申明将带上ProjectId一起绑定
39066
+ # @type ProjectIdList: Array
39067
+ # @param ExecutorResourcePackageIds: 需要绑定项目的资源包id集合,为空则绑定整个资源组
39068
+ # @type ExecutorResourcePackageIds: Array
39069
+
39070
+ attr_accessor :ExecutorGroupId, :ProjectId, :ProjectIdList, :ExecutorResourcePackageIds
39071
+
39072
+ def initialize(executorgroupid=nil, projectid=nil, projectidlist=nil, executorresourcepackageids=nil)
39073
+ @ExecutorGroupId = executorgroupid
39074
+ @ProjectId = projectid
39075
+ @ProjectIdList = projectidlist
39076
+ @ExecutorResourcePackageIds = executorresourcepackageids
39077
+ end
39078
+
39079
+ def deserialize(params)
39080
+ @ExecutorGroupId = params['ExecutorGroupId']
39081
+ @ProjectId = params['ProjectId']
39082
+ @ProjectIdList = params['ProjectIdList']
39083
+ @ExecutorResourcePackageIds = params['ExecutorResourcePackageIds']
39084
+ end
39085
+ end
39086
+
39087
+ # UnboundProjectExecutorResource返回参数结构体
39088
+ class UnboundProjectExecutorResourceResponse < TencentCloud::Common::AbstractModel
39089
+ # @param Data: 是否绑定成功,失败返回异常
39090
+ # @type Data: Boolean
39091
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
39092
+ # @type RequestId: String
39093
+
39094
+ attr_accessor :Data, :RequestId
39095
+
39096
+ def initialize(data=nil, requestid=nil)
39097
+ @Data = data
39098
+ @RequestId = requestid
39099
+ end
39100
+
39101
+ def deserialize(params)
39102
+ @Data = params['Data']
39103
+ @RequestId = params['RequestId']
39104
+ end
39105
+ end
39106
+
38209
39107
  # UnlockIntegrationTask请求参数结构体
38210
39108
  class UnlockIntegrationTaskRequest < TencentCloud::Common::AbstractModel
38211
39109
  # @param TaskId: 任务id
@@ -39306,10 +40204,16 @@ module TencentCloud
39306
40204
  # - manual 手动工作流
39307
40205
  # 注意:此字段可能返回 null,表示取不到有效值。
39308
40206
  # @type WorkflowType: String
40207
+ # @param UpdateUser: 最近更新人名称
40208
+ # 注意:此字段可能返回 null,表示取不到有效值。
40209
+ # @type UpdateUser: String
40210
+ # @param UpdateUserId: 最近更新人id
40211
+ # 注意:此字段可能返回 null,表示取不到有效值。
40212
+ # @type UpdateUserId: String
39309
40213
 
39310
- attr_accessor :WorkflowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkflowDesc, :WorkflowName, :FolderId, :SparkParams, :Tasks, :Links, :Params, :WorkflowType
40214
+ attr_accessor :WorkflowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkflowDesc, :WorkflowName, :FolderId, :SparkParams, :Tasks, :Links, :Params, :WorkflowType, :UpdateUser, :UpdateUserId
39311
40215
 
39312
- def initialize(workflowid=nil, owner=nil, ownerid=nil, projectid=nil, projectident=nil, projectname=nil, workflowdesc=nil, workflowname=nil, folderid=nil, sparkparams=nil, tasks=nil, links=nil, params=nil, workflowtype=nil)
40216
+ def initialize(workflowid=nil, owner=nil, ownerid=nil, projectid=nil, projectident=nil, projectname=nil, workflowdesc=nil, workflowname=nil, folderid=nil, sparkparams=nil, tasks=nil, links=nil, params=nil, workflowtype=nil, updateuser=nil, updateuserid=nil)
39313
40217
  @WorkflowId = workflowid
39314
40218
  @Owner = owner
39315
40219
  @OwnerId = ownerid
@@ -39324,6 +40228,8 @@ module TencentCloud
39324
40228
  @Links = links
39325
40229
  @Params = params
39326
40230
  @WorkflowType = workflowtype
40231
+ @UpdateUser = updateuser
40232
+ @UpdateUserId = updateuserid
39327
40233
  end
39328
40234
 
39329
40235
  def deserialize(params)
@@ -39362,6 +40268,8 @@ module TencentCloud
39362
40268
  end
39363
40269
  end
39364
40270
  @WorkflowType = params['WorkflowType']
40271
+ @UpdateUser = params['UpdateUser']
40272
+ @UpdateUserId = params['UpdateUserId']
39365
40273
  end
39366
40274
  end
39367
40275
 
@@ -39409,13 +40317,16 @@ module TencentCloud
39409
40317
  # @param ModifyTime: 最近更新时间
39410
40318
  # 注意:此字段可能返回 null,表示取不到有效值。
39411
40319
  # @type ModifyTime: String
40320
+ # @param ModifyUser: 最近更新人
40321
+ # 注意:此字段可能返回 null,表示取不到有效值。
40322
+ # @type ModifyUser: String
39412
40323
  # @param WorkflowType: 工作流类型,周期cycle,手动manual
39413
40324
  # 注意:此字段可能返回 null,表示取不到有效值。
39414
40325
  # @type WorkflowType: String
39415
40326
 
39416
- attr_accessor :TaskCount, :FolderName, :WorkFlowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkFlowDesc, :WorkFlowName, :FolderId, :Status, :CreateTime, :ModifyTime, :WorkflowType
40327
+ attr_accessor :TaskCount, :FolderName, :WorkFlowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkFlowDesc, :WorkFlowName, :FolderId, :Status, :CreateTime, :ModifyTime, :ModifyUser, :WorkflowType
39417
40328
 
39418
- def initialize(taskcount=nil, foldername=nil, workflowid=nil, owner=nil, ownerid=nil, projectid=nil, projectident=nil, projectname=nil, workflowdesc=nil, workflowname=nil, folderid=nil, status=nil, createtime=nil, modifytime=nil, workflowtype=nil)
40329
+ def initialize(taskcount=nil, foldername=nil, workflowid=nil, owner=nil, ownerid=nil, projectid=nil, projectident=nil, projectname=nil, workflowdesc=nil, workflowname=nil, folderid=nil, status=nil, createtime=nil, modifytime=nil, modifyuser=nil, workflowtype=nil)
39419
40330
  @TaskCount = taskcount
39420
40331
  @FolderName = foldername
39421
40332
  @WorkFlowId = workflowid
@@ -39430,6 +40341,7 @@ module TencentCloud
39430
40341
  @Status = status
39431
40342
  @CreateTime = createtime
39432
40343
  @ModifyTime = modifytime
40344
+ @ModifyUser = modifyuser
39433
40345
  @WorkflowType = workflowtype
39434
40346
  end
39435
40347
 
@@ -39448,6 +40360,7 @@ module TencentCloud
39448
40360
  @Status = params['Status']
39449
40361
  @CreateTime = params['CreateTime']
39450
40362
  @ModifyTime = params['ModifyTime']
40363
+ @ModifyUser = params['ModifyUser']
39451
40364
  @WorkflowType = params['WorkflowType']
39452
40365
  end
39453
40366
  end