tencentcloud-sdk-wedata 3.0.963 → 3.0.964

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210820/models.rb +301 -65
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c2eaaab82e172d99885b4881d741b3b7a177bf5a
4
- data.tar.gz: 20d3812cd7fbe330c70fc7a002c6e56cbf12280a
3
+ metadata.gz: 48dfb748b23bbb725280d82b8460c81f1299e5eb
4
+ data.tar.gz: 7833e54e847ae0c2923ab530b7cd0db8cc93e2b7
5
5
  SHA512:
6
- metadata.gz: 3cb23c798bf4accc5d0bc216b1601ae006771694630d5027f6350f8f900245d8195478ca686770a83195c148e0a3e50ae2084f294659b9174114dc68ba1fd8b9
7
- data.tar.gz: 6302377a0789d5f38bd57546b907cb81b43ef5b2e164cb3d6226835ea37ba4598249529af7eed1f77bf8d5841a9daea70f3ab3b4ac1b18ca13341ffa434b86b1
6
+ metadata.gz: 64c66d8e2ef77090ec294e5f583b5059a828f3211a2a4132fc776599fa4a6aa37614541a39d77a1aa86151ab3ef341cc20e6404c8679698adfda6e3abbe1f746
7
+ data.tar.gz: 8a6d6178b65a9fa5843066941f9d8fe4688a9b3d87290192871df144d460283aca8fc63205a1537f8ff287b3cd94e8fb244af146ea205eef20ce6a3d6f45eb1b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.963
1
+ 3.0.964
@@ -1496,19 +1496,24 @@ module TencentCloud
1496
1496
  # @param ErrorDesc: 错误说明
1497
1497
  # 注意:此字段可能返回 null,表示取不到有效值。
1498
1498
  # @type ErrorDesc: String
1499
+ # @param AsyncActionId: 异步操作id
1500
+ # 注意:此字段可能返回 null,表示取不到有效值。
1501
+ # @type AsyncActionId: String
1499
1502
 
1500
- attr_accessor :Result, :ErrorId, :ErrorDesc
1503
+ attr_accessor :Result, :ErrorId, :ErrorDesc, :AsyncActionId
1501
1504
 
1502
- def initialize(result=nil, errorid=nil, errordesc=nil)
1505
+ def initialize(result=nil, errorid=nil, errordesc=nil, asyncactionid=nil)
1503
1506
  @Result = result
1504
1507
  @ErrorId = errorid
1505
1508
  @ErrorDesc = errordesc
1509
+ @AsyncActionId = asyncactionid
1506
1510
  end
1507
1511
 
1508
1512
  def deserialize(params)
1509
1513
  @Result = params['Result']
1510
1514
  @ErrorId = params['ErrorId']
1511
1515
  @ErrorDesc = params['ErrorDesc']
1516
+ @AsyncActionId = params['AsyncActionId']
1512
1517
  end
1513
1518
  end
1514
1519
 
@@ -1523,19 +1528,24 @@ module TencentCloud
1523
1528
  # @param TotalCount: 批量操作的总数
1524
1529
  # 注意:此字段可能返回 null,表示取不到有效值。
1525
1530
  # @type TotalCount: Integer
1531
+ # @param AsyncActionId: 异步操作记录的唯一id
1532
+ # 注意:此字段可能返回 null,表示取不到有效值。
1533
+ # @type AsyncActionId: String
1526
1534
 
1527
- attr_accessor :SuccessCount, :FailedCount, :TotalCount
1535
+ attr_accessor :SuccessCount, :FailedCount, :TotalCount, :AsyncActionId
1528
1536
 
1529
- def initialize(successcount=nil, failedcount=nil, totalcount=nil)
1537
+ def initialize(successcount=nil, failedcount=nil, totalcount=nil, asyncactionid=nil)
1530
1538
  @SuccessCount = successcount
1531
1539
  @FailedCount = failedcount
1532
1540
  @TotalCount = totalcount
1541
+ @AsyncActionId = asyncactionid
1533
1542
  end
1534
1543
 
1535
1544
  def deserialize(params)
1536
1545
  @SuccessCount = params['SuccessCount']
1537
1546
  @FailedCount = params['FailedCount']
1538
1547
  @TotalCount = params['TotalCount']
1548
+ @AsyncActionId = params['AsyncActionId']
1539
1549
  end
1540
1550
  end
1541
1551
 
@@ -1950,19 +1960,23 @@ module TencentCloud
1950
1960
  # @type ProjectId: String
1951
1961
  # @param KillInstance: 是否终止已生成的实例
1952
1962
  # @type KillInstance: Boolean
1963
+ # @param AsyncMode: 是否异步模式
1964
+ # @type AsyncMode: Boolean
1953
1965
 
1954
- attr_accessor :TaskIdList, :ProjectId, :KillInstance
1966
+ attr_accessor :TaskIdList, :ProjectId, :KillInstance, :AsyncMode
1955
1967
 
1956
- def initialize(taskidlist=nil, projectid=nil, killinstance=nil)
1968
+ def initialize(taskidlist=nil, projectid=nil, killinstance=nil, asyncmode=nil)
1957
1969
  @TaskIdList = taskidlist
1958
1970
  @ProjectId = projectid
1959
1971
  @KillInstance = killinstance
1972
+ @AsyncMode = asyncmode
1960
1973
  end
1961
1974
 
1962
1975
  def deserialize(params)
1963
1976
  @TaskIdList = params['TaskIdList']
1964
1977
  @ProjectId = params['ProjectId']
1965
1978
  @KillInstance = params['KillInstance']
1979
+ @AsyncMode = params['AsyncMode']
1966
1980
  end
1967
1981
  end
1968
1982
 
@@ -1997,19 +2011,23 @@ module TencentCloud
1997
2011
  # @type ProjectId: String
1998
2012
  # @param KillInstance: 是否终止已生成的实例
1999
2013
  # @type KillInstance: Boolean
2014
+ # @param AsyncMode: 是否异步模式
2015
+ # @type AsyncMode: Boolean
2000
2016
 
2001
- attr_accessor :WorkflowIds, :ProjectId, :KillInstance
2017
+ attr_accessor :WorkflowIds, :ProjectId, :KillInstance, :AsyncMode
2002
2018
 
2003
- def initialize(workflowids=nil, projectid=nil, killinstance=nil)
2019
+ def initialize(workflowids=nil, projectid=nil, killinstance=nil, asyncmode=nil)
2004
2020
  @WorkflowIds = workflowids
2005
2021
  @ProjectId = projectid
2006
2022
  @KillInstance = killinstance
2023
+ @AsyncMode = asyncmode
2007
2024
  end
2008
2025
 
2009
2026
  def deserialize(params)
2010
2027
  @WorkflowIds = params['WorkflowIds']
2011
2028
  @ProjectId = params['ProjectId']
2012
2029
  @KillInstance = params['KillInstance']
2030
+ @AsyncMode = params['AsyncMode']
2013
2031
  end
2014
2032
  end
2015
2033
 
@@ -3499,16 +3517,19 @@ module TencentCloud
3499
3517
  # @type DbName: String
3500
3518
  # @param ProjectId: 项目ID
3501
3519
  # @type ProjectId: String
3520
+ # @param FunctionResourceFileType: 函数资源文件类型
3521
+ # @type FunctionResourceFileType: String
3502
3522
 
3503
- attr_accessor :Type, :Kind, :Name, :ClusterIdentifier, :DbName, :ProjectId
3523
+ attr_accessor :Type, :Kind, :Name, :ClusterIdentifier, :DbName, :ProjectId, :FunctionResourceFileType
3504
3524
 
3505
- def initialize(type=nil, kind=nil, name=nil, clusteridentifier=nil, dbname=nil, projectid=nil)
3525
+ def initialize(type=nil, kind=nil, name=nil, clusteridentifier=nil, dbname=nil, projectid=nil, functionresourcefiletype=nil)
3506
3526
  @Type = type
3507
3527
  @Kind = kind
3508
3528
  @Name = name
3509
3529
  @ClusterIdentifier = clusteridentifier
3510
3530
  @DbName = dbname
3511
3531
  @ProjectId = projectid
3532
+ @FunctionResourceFileType = functionresourcefiletype
3512
3533
  end
3513
3534
 
3514
3535
  def deserialize(params)
@@ -3518,6 +3539,7 @@ module TencentCloud
3518
3539
  @ClusterIdentifier = params['ClusterIdentifier']
3519
3540
  @DbName = params['DbName']
3520
3541
  @ProjectId = params['ProjectId']
3542
+ @FunctionResourceFileType = params['FunctionResourceFileType']
3521
3543
  end
3522
3544
  end
3523
3545
 
@@ -3779,10 +3801,12 @@ module TencentCloud
3779
3801
  # @type Incharge: String
3780
3802
  # @param SchemaName: schema名称
3781
3803
  # @type SchemaName: String
3804
+ # @param Async: 是否异步建表
3805
+ # @type Async: Boolean
3782
3806
 
3783
- attr_accessor :DatasourceId, :Database, :DDLSql, :Privilege, :ProjectId, :Type, :Incharge, :SchemaName
3807
+ attr_accessor :DatasourceId, :Database, :DDLSql, :Privilege, :ProjectId, :Type, :Incharge, :SchemaName, :Async
3784
3808
 
3785
- def initialize(datasourceid=nil, database=nil, ddlsql=nil, privilege=nil, projectid=nil, type=nil, incharge=nil, schemaname=nil)
3809
+ def initialize(datasourceid=nil, database=nil, ddlsql=nil, privilege=nil, projectid=nil, type=nil, incharge=nil, schemaname=nil, async=nil)
3786
3810
  @DatasourceId = datasourceid
3787
3811
  @Database = database
3788
3812
  @DDLSql = ddlsql
@@ -3791,6 +3815,7 @@ module TencentCloud
3791
3815
  @Type = type
3792
3816
  @Incharge = incharge
3793
3817
  @SchemaName = schemaname
3818
+ @Async = async
3794
3819
  end
3795
3820
 
3796
3821
  def deserialize(params)
@@ -3802,25 +3827,30 @@ module TencentCloud
3802
3827
  @Type = params['Type']
3803
3828
  @Incharge = params['Incharge']
3804
3829
  @SchemaName = params['SchemaName']
3830
+ @Async = params['Async']
3805
3831
  end
3806
3832
  end
3807
3833
 
3808
3834
  # CreateHiveTableByDDL返回参数结构体
3809
3835
  class CreateHiveTableByDDLResponse < TencentCloud::Common::AbstractModel
3810
- # @param Data: 表名称
3836
+ # @param Data: 返回表名称,无论是否异步都有值
3811
3837
  # @type Data: String
3838
+ # @param TaskId: 异步任务轮询 id,只有异步才有值
3839
+ # @type TaskId: String
3812
3840
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3813
3841
  # @type RequestId: String
3814
3842
 
3815
- attr_accessor :Data, :RequestId
3843
+ attr_accessor :Data, :TaskId, :RequestId
3816
3844
 
3817
- def initialize(data=nil, requestid=nil)
3845
+ def initialize(data=nil, taskid=nil, requestid=nil)
3818
3846
  @Data = data
3847
+ @TaskId = taskid
3819
3848
  @RequestId = requestid
3820
3849
  end
3821
3850
 
3822
3851
  def deserialize(params)
3823
3852
  @Data = params['Data']
3853
+ @TaskId = params['TaskId']
3824
3854
  @RequestId = params['RequestId']
3825
3855
  end
3826
3856
  end
@@ -4030,10 +4060,12 @@ module TencentCloud
4030
4060
  # @type TaskAction: String
4031
4061
  # @param TaskMode: 区分画布和表单
4032
4062
  # @type TaskMode: String
4063
+ # @param TaskImportInfo: 导入编排空间配置
4064
+ # @type TaskImportInfo: :class:`Tencentcloud::Wedata.v20210820.models.TaskImportInfo`
4033
4065
 
4034
- attr_accessor :ProjectId, :CycleStep, :DelayTime, :EndTime, :Notes, :StartTime, :TaskName, :TypeId, :TaskAction, :TaskMode
4066
+ attr_accessor :ProjectId, :CycleStep, :DelayTime, :EndTime, :Notes, :StartTime, :TaskName, :TypeId, :TaskAction, :TaskMode, :TaskImportInfo
4035
4067
 
4036
- def initialize(projectid=nil, cyclestep=nil, delaytime=nil, endtime=nil, notes=nil, starttime=nil, taskname=nil, typeid=nil, taskaction=nil, taskmode=nil)
4068
+ def initialize(projectid=nil, cyclestep=nil, delaytime=nil, endtime=nil, notes=nil, starttime=nil, taskname=nil, typeid=nil, taskaction=nil, taskmode=nil, taskimportinfo=nil)
4037
4069
  @ProjectId = projectid
4038
4070
  @CycleStep = cyclestep
4039
4071
  @DelayTime = delaytime
@@ -4044,6 +4076,7 @@ module TencentCloud
4044
4076
  @TypeId = typeid
4045
4077
  @TaskAction = taskaction
4046
4078
  @TaskMode = taskmode
4079
+ @TaskImportInfo = taskimportinfo
4047
4080
  end
4048
4081
 
4049
4082
  def deserialize(params)
@@ -4057,6 +4090,10 @@ module TencentCloud
4057
4090
  @TypeId = params['TypeId']
4058
4091
  @TaskAction = params['TaskAction']
4059
4092
  @TaskMode = params['TaskMode']
4093
+ unless params['TaskImportInfo'].nil?
4094
+ @TaskImportInfo = TaskImportInfo.new
4095
+ @TaskImportInfo.deserialize(params['TaskImportInfo'])
4096
+ end
4060
4097
  end
4061
4098
  end
4062
4099
 
@@ -4065,21 +4102,26 @@ module TencentCloud
4065
4102
  # @param TaskId: 任务ID
4066
4103
  # 注意:此字段可能返回 null,表示取不到有效值。
4067
4104
  # @type TaskId: String
4105
+ # @param ArrangeSpaceTaskId: 导入到编排空间的任务id
4106
+ # 注意:此字段可能返回 null,表示取不到有效值。
4107
+ # @type ArrangeSpaceTaskId: String
4068
4108
  # @param Data: 结果
4069
4109
  # @type Data: String
4070
4110
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4071
4111
  # @type RequestId: String
4072
4112
 
4073
- attr_accessor :TaskId, :Data, :RequestId
4113
+ attr_accessor :TaskId, :ArrangeSpaceTaskId, :Data, :RequestId
4074
4114
 
4075
- def initialize(taskid=nil, data=nil, requestid=nil)
4115
+ def initialize(taskid=nil, arrangespacetaskid=nil, data=nil, requestid=nil)
4076
4116
  @TaskId = taskid
4117
+ @ArrangeSpaceTaskId = arrangespacetaskid
4077
4118
  @Data = data
4078
4119
  @RequestId = requestid
4079
4120
  end
4080
4121
 
4081
4122
  def deserialize(params)
4082
4123
  @TaskId = params['TaskId']
4124
+ @ArrangeSpaceTaskId = params['ArrangeSpaceTaskId']
4083
4125
  @Data = params['Data']
4084
4126
  @RequestId = params['RequestId']
4085
4127
  end
@@ -8348,10 +8390,14 @@ module TencentCloud
8348
8390
  # @param IncludeTaskFolder: 是否包含任务目录 true 是
8349
8391
  # false 否
8350
8392
  # @type IncludeTaskFolder: Boolean
8393
+ # @param NewFolderTreeMode: 是否使用最新模式展示目录树
8394
+ # @type NewFolderTreeMode: Boolean
8395
+ # @param TaskNodeId: 节点分类ID
8396
+ # @type TaskNodeId: String
8351
8397
 
8352
- attr_accessor :ProjectId, :FirstLevelPull, :FolderId, :WorkflowId, :Keyword, :IncludeWorkflow, :IncludeTask, :IncludeVirtualTask, :TaskFolderId, :DisplayType, :IncludeTaskFolder
8398
+ attr_accessor :ProjectId, :FirstLevelPull, :FolderId, :WorkflowId, :Keyword, :IncludeWorkflow, :IncludeTask, :IncludeVirtualTask, :TaskFolderId, :DisplayType, :IncludeTaskFolder, :NewFolderTreeMode, :TaskNodeId
8353
8399
 
8354
- def initialize(projectid=nil, firstlevelpull=nil, folderid=nil, workflowid=nil, keyword=nil, includeworkflow=nil, includetask=nil, includevirtualtask=nil, taskfolderid=nil, displaytype=nil, includetaskfolder=nil)
8400
+ def initialize(projectid=nil, firstlevelpull=nil, folderid=nil, workflowid=nil, keyword=nil, includeworkflow=nil, includetask=nil, includevirtualtask=nil, taskfolderid=nil, displaytype=nil, includetaskfolder=nil, newfoldertreemode=nil, tasknodeid=nil)
8355
8401
  @ProjectId = projectid
8356
8402
  @FirstLevelPull = firstlevelpull
8357
8403
  @FolderId = folderid
@@ -8363,6 +8409,8 @@ module TencentCloud
8363
8409
  @TaskFolderId = taskfolderid
8364
8410
  @DisplayType = displaytype
8365
8411
  @IncludeTaskFolder = includetaskfolder
8412
+ @NewFolderTreeMode = newfoldertreemode
8413
+ @TaskNodeId = tasknodeid
8366
8414
  end
8367
8415
 
8368
8416
  def deserialize(params)
@@ -8377,6 +8425,8 @@ module TencentCloud
8377
8425
  @TaskFolderId = params['TaskFolderId']
8378
8426
  @DisplayType = params['DisplayType']
8379
8427
  @IncludeTaskFolder = params['IncludeTaskFolder']
8428
+ @NewFolderTreeMode = params['NewFolderTreeMode']
8429
+ @TaskNodeId = params['TaskNodeId']
8380
8430
  end
8381
8431
  end
8382
8432
 
@@ -8421,15 +8471,18 @@ module TencentCloud
8421
8471
  # - classification:分类展示
8422
8472
  # - catalog:目录展示
8423
8473
  # @type DisplayType: String
8474
+ # @param NewFolderTreeMode: 是否新模式展示目录树
8475
+ # @type NewFolderTreeMode: Boolean
8424
8476
 
8425
- attr_accessor :ProjectId, :FolderId, :WorkflowId, :TaskId, :DisplayType
8477
+ attr_accessor :ProjectId, :FolderId, :WorkflowId, :TaskId, :DisplayType, :NewFolderTreeMode
8426
8478
 
8427
- def initialize(projectid=nil, folderid=nil, workflowid=nil, taskid=nil, displaytype=nil)
8479
+ def initialize(projectid=nil, folderid=nil, workflowid=nil, taskid=nil, displaytype=nil, newfoldertreemode=nil)
8428
8480
  @ProjectId = projectid
8429
8481
  @FolderId = folderid
8430
8482
  @WorkflowId = workflowid
8431
8483
  @TaskId = taskid
8432
8484
  @DisplayType = displaytype
8485
+ @NewFolderTreeMode = newfoldertreemode
8433
8486
  end
8434
8487
 
8435
8488
  def deserialize(params)
@@ -8438,6 +8491,7 @@ module TencentCloud
8438
8491
  @WorkflowId = params['WorkflowId']
8439
8492
  @TaskId = params['TaskId']
8440
8493
  @DisplayType = params['DisplayType']
8494
+ @NewFolderTreeMode = params['NewFolderTreeMode']
8441
8495
  end
8442
8496
  end
8443
8497
 
@@ -10224,10 +10278,12 @@ module TencentCloud
10224
10278
  # @type InitStrategy: String
10225
10279
  # @param RequestResourceTypes: 额外请求的资源类型
10226
10280
  # @type RequestResourceTypes: Array
10281
+ # @param ProjectIds: 项目ID列表
10282
+ # @type ProjectIds: Array
10227
10283
 
10228
- attr_accessor :ProjectId, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :PageNumber, :PageSize, :SortItem, :SortType, :InChargeList, :TaskTypeIdList, :StatusList, :TaskCycleUnitList, :ProductNameList, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :ExecutorGroupIdList, :TaskTags, :KeyWord, :InitStrategy, :RequestResourceTypes
10284
+ attr_accessor :ProjectId, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :PageNumber, :PageSize, :SortItem, :SortType, :InChargeList, :TaskTypeIdList, :StatusList, :TaskCycleUnitList, :ProductNameList, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :ExecutorGroupIdList, :TaskTags, :KeyWord, :InitStrategy, :RequestResourceTypes, :ProjectIds
10229
10285
 
10230
- 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, tasktags=nil, keyword=nil, initstrategy=nil, requestresourcetypes=nil)
10286
+ 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, tasktags=nil, keyword=nil, initstrategy=nil, requestresourcetypes=nil, projectids=nil)
10231
10287
  @ProjectId = projectid
10232
10288
  @FolderIdList = folderidlist
10233
10289
  @WorkFlowIdList = workflowidlist
@@ -10253,6 +10309,7 @@ module TencentCloud
10253
10309
  @KeyWord = keyword
10254
10310
  @InitStrategy = initstrategy
10255
10311
  @RequestResourceTypes = requestresourcetypes
10312
+ @ProjectIds = projectids
10256
10313
  end
10257
10314
 
10258
10315
  def deserialize(params)
@@ -10288,6 +10345,7 @@ module TencentCloud
10288
10345
  @KeyWord = params['KeyWord']
10289
10346
  @InitStrategy = params['InitStrategy']
10290
10347
  @RequestResourceTypes = params['RequestResourceTypes']
10348
+ @ProjectIds = params['ProjectIds']
10291
10349
  end
10292
10350
  end
10293
10351
 
@@ -10428,16 +10486,19 @@ module TencentCloud
10428
10486
  # @type ProjectId: String
10429
10487
  # @param PlanId: 补录计划ID
10430
10488
  # @type PlanId: String
10489
+ # @param StateList: 实例状态过滤条件
10490
+ # @type StateList: Array
10431
10491
  # @param PageNumber: 分页页码,默认值1
10432
10492
  # @type PageNumber: Integer
10433
10493
  # @param PageSize: 分页大小,默认值10
10434
10494
  # @type PageSize: Integer
10435
10495
 
10436
- attr_accessor :ProjectId, :PlanId, :PageNumber, :PageSize
10496
+ attr_accessor :ProjectId, :PlanId, :StateList, :PageNumber, :PageSize
10437
10497
 
10438
- def initialize(projectid=nil, planid=nil, pagenumber=nil, pagesize=nil)
10498
+ def initialize(projectid=nil, planid=nil, statelist=nil, pagenumber=nil, pagesize=nil)
10439
10499
  @ProjectId = projectid
10440
10500
  @PlanId = planid
10501
+ @StateList = statelist
10441
10502
  @PageNumber = pagenumber
10442
10503
  @PageSize = pagesize
10443
10504
  end
@@ -10445,6 +10506,7 @@ module TencentCloud
10445
10506
  def deserialize(params)
10446
10507
  @ProjectId = params['ProjectId']
10447
10508
  @PlanId = params['PlanId']
10509
+ @StateList = params['StateList']
10448
10510
  @PageNumber = params['PageNumber']
10449
10511
  @PageSize = params['PageSize']
10450
10512
  end
@@ -10496,10 +10558,14 @@ module TencentCloud
10496
10558
  # @type MinCreateTime: String
10497
10559
  # @param MaxCreateTime: 补录计划最大创建时间
10498
10560
  # @type MaxCreateTime: String
10561
+ # @param StateList: 实例状态过滤条件
10562
+ # @type StateList: Array
10563
+ # @param Keyword: 模糊查询关键字
10564
+ # @type Keyword: String
10499
10565
 
10500
- attr_accessor :ProjectId, :PageNumber, :PageSize, :PlanId, :PlanName, :TaskName, :TaskId, :Creator, :MinCreateTime, :MaxCreateTime
10566
+ attr_accessor :ProjectId, :PageNumber, :PageSize, :PlanId, :PlanName, :TaskName, :TaskId, :Creator, :MinCreateTime, :MaxCreateTime, :StateList, :Keyword
10501
10567
 
10502
- def initialize(projectid=nil, pagenumber=nil, pagesize=nil, planid=nil, planname=nil, taskname=nil, taskid=nil, creator=nil, mincreatetime=nil, maxcreatetime=nil)
10568
+ def initialize(projectid=nil, pagenumber=nil, pagesize=nil, planid=nil, planname=nil, taskname=nil, taskid=nil, creator=nil, mincreatetime=nil, maxcreatetime=nil, statelist=nil, keyword=nil)
10503
10569
  @ProjectId = projectid
10504
10570
  @PageNumber = pagenumber
10505
10571
  @PageSize = pagesize
@@ -10510,6 +10576,8 @@ module TencentCloud
10510
10576
  @Creator = creator
10511
10577
  @MinCreateTime = mincreatetime
10512
10578
  @MaxCreateTime = maxcreatetime
10579
+ @StateList = statelist
10580
+ @Keyword = keyword
10513
10581
  end
10514
10582
 
10515
10583
  def deserialize(params)
@@ -10523,6 +10591,8 @@ module TencentCloud
10523
10591
  @Creator = params['Creator']
10524
10592
  @MinCreateTime = params['MinCreateTime']
10525
10593
  @MaxCreateTime = params['MaxCreateTime']
10594
+ @StateList = params['StateList']
10595
+ @Keyword = params['Keyword']
10526
10596
  end
10527
10597
  end
10528
10598
 
@@ -10578,10 +10648,12 @@ module TencentCloud
10578
10648
  # @type SortItem: String
10579
10649
  # @param SortType: 排序方式,DESC或ASC
10580
10650
  # @type SortType: String
10651
+ # @param ProjectIds: 项目ID列表,用于多项目工作流筛选
10652
+ # @type ProjectIds: Array
10581
10653
 
10582
- attr_accessor :ProjectId, :ProductNameList, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :StatusList, :InChargeList, :PageNumber, :PageSize, :SortItem, :SortType
10654
+ attr_accessor :ProjectId, :ProductNameList, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :StatusList, :InChargeList, :PageNumber, :PageSize, :SortItem, :SortType, :ProjectIds
10583
10655
 
10584
- 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)
10656
+ 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)
10585
10657
  @ProjectId = projectid
10586
10658
  @ProductNameList = productnamelist
10587
10659
  @FolderIdList = folderidlist
@@ -10595,6 +10667,7 @@ module TencentCloud
10595
10667
  @PageSize = pagesize
10596
10668
  @SortItem = sortitem
10597
10669
  @SortType = sorttype
10670
+ @ProjectIds = projectids
10598
10671
  end
10599
10672
 
10600
10673
  def deserialize(params)
@@ -10611,6 +10684,7 @@ module TencentCloud
10611
10684
  @PageSize = params['PageSize']
10612
10685
  @SortItem = params['SortItem']
10613
10686
  @SortType = params['SortType']
10687
+ @ProjectIds = params['ProjectIds']
10614
10688
  end
10615
10689
  end
10616
10690
 
@@ -12359,10 +12433,12 @@ module TencentCloud
12359
12433
  # @type InCharge: String
12360
12434
  # @param WorkflowId: 工作流ID
12361
12435
  # @type WorkflowId: String
12436
+ # @param ProjectIds: 任务ID列表
12437
+ # @type ProjectIds: Array
12362
12438
 
12363
- attr_accessor :ProjectId, :TaskTypeId, :ExecutionGroupId, :ExecutionGroupName, :StartTime, :EndTime, :InCharge, :WorkflowId
12439
+ attr_accessor :ProjectId, :TaskTypeId, :ExecutionGroupId, :ExecutionGroupName, :StartTime, :EndTime, :InCharge, :WorkflowId, :ProjectIds
12364
12440
 
12365
- def initialize(projectid=nil, tasktypeid=nil, executiongroupid=nil, executiongroupname=nil, starttime=nil, endtime=nil, incharge=nil, workflowid=nil)
12441
+ def initialize(projectid=nil, tasktypeid=nil, executiongroupid=nil, executiongroupname=nil, starttime=nil, endtime=nil, incharge=nil, workflowid=nil, projectids=nil)
12366
12442
  @ProjectId = projectid
12367
12443
  @TaskTypeId = tasktypeid
12368
12444
  @ExecutionGroupId = executiongroupid
@@ -12371,6 +12447,7 @@ module TencentCloud
12371
12447
  @EndTime = endtime
12372
12448
  @InCharge = incharge
12373
12449
  @WorkflowId = workflowid
12450
+ @ProjectIds = projectids
12374
12451
  end
12375
12452
 
12376
12453
  def deserialize(params)
@@ -12382,6 +12459,7 @@ module TencentCloud
12382
12459
  @EndTime = params['EndTime']
12383
12460
  @InCharge = params['InCharge']
12384
12461
  @WorkflowId = params['WorkflowId']
12462
+ @ProjectIds = params['ProjectIds']
12385
12463
  end
12386
12464
  end
12387
12465
 
@@ -12435,10 +12513,12 @@ module TencentCloud
12435
12513
  # @type SortItem: String
12436
12514
  # @param SortType: 升序降序
12437
12515
  # @type SortType: String
12516
+ # @param ProjectIds: 项目ID列表,如果传了 ProjectIds,则 ProjectId 不会生效,用于多项目筛选
12517
+ # @type ProjectIds: Array
12438
12518
 
12439
- attr_accessor :ProjectId, :CycleUnit, :TimeUnit, :StartTime, :EndTime, :TaskType, :InCharge, :WorkflowId, :SortItem, :SortType
12519
+ attr_accessor :ProjectId, :CycleUnit, :TimeUnit, :StartTime, :EndTime, :TaskType, :InCharge, :WorkflowId, :SortItem, :SortType, :ProjectIds
12440
12520
 
12441
- def initialize(projectid=nil, cycleunit=nil, timeunit=nil, starttime=nil, endtime=nil, tasktype=nil, incharge=nil, workflowid=nil, sortitem=nil, sorttype=nil)
12521
+ def initialize(projectid=nil, cycleunit=nil, timeunit=nil, starttime=nil, endtime=nil, tasktype=nil, incharge=nil, workflowid=nil, sortitem=nil, sorttype=nil, projectids=nil)
12442
12522
  @ProjectId = projectid
12443
12523
  @CycleUnit = cycleunit
12444
12524
  @TimeUnit = timeunit
@@ -12449,6 +12529,7 @@ module TencentCloud
12449
12529
  @WorkflowId = workflowid
12450
12530
  @SortItem = sortitem
12451
12531
  @SortType = sorttype
12532
+ @ProjectIds = projectids
12452
12533
  end
12453
12534
 
12454
12535
  def deserialize(params)
@@ -12462,6 +12543,7 @@ module TencentCloud
12462
12543
  @WorkflowId = params['WorkflowId']
12463
12544
  @SortItem = params['SortItem']
12464
12545
  @SortType = params['SortType']
12546
+ @ProjectIds = params['ProjectIds']
12465
12547
  end
12466
12548
  end
12467
12549
 
@@ -12505,15 +12587,21 @@ module TencentCloud
12505
12587
  # @type InCharge: String
12506
12588
  # @param WorkflowId: 工作流ID
12507
12589
  # @type WorkflowId: String
12590
+ # @param ProjectIds: 项目ID列表,如果传了 ProjectIds ,ProjectId 不会生效
12591
+ # @type ProjectIds: Array
12592
+ # @param ResourceGroupIds: 资源组ID筛选
12593
+ # @type ResourceGroupIds: Array
12508
12594
 
12509
- attr_accessor :TaskType, :TypeName, :ProjectId, :InCharge, :WorkflowId
12595
+ attr_accessor :TaskType, :TypeName, :ProjectId, :InCharge, :WorkflowId, :ProjectIds, :ResourceGroupIds
12510
12596
 
12511
- def initialize(tasktype=nil, typename=nil, projectid=nil, incharge=nil, workflowid=nil)
12597
+ def initialize(tasktype=nil, typename=nil, projectid=nil, incharge=nil, workflowid=nil, projectids=nil, resourcegroupids=nil)
12512
12598
  @TaskType = tasktype
12513
12599
  @TypeName = typename
12514
12600
  @ProjectId = projectid
12515
12601
  @InCharge = incharge
12516
12602
  @WorkflowId = workflowid
12603
+ @ProjectIds = projectids
12604
+ @ResourceGroupIds = resourcegroupids
12517
12605
  end
12518
12606
 
12519
12607
  def deserialize(params)
@@ -12522,6 +12610,8 @@ module TencentCloud
12522
12610
  @ProjectId = params['ProjectId']
12523
12611
  @InCharge = params['InCharge']
12524
12612
  @WorkflowId = params['WorkflowId']
12613
+ @ProjectIds = params['ProjectIds']
12614
+ @ResourceGroupIds = params['ResourceGroupIds']
12525
12615
  end
12526
12616
  end
12527
12617
 
@@ -12631,10 +12721,14 @@ module TencentCloud
12631
12721
  # @type AverageWindowSize: Integer
12632
12722
  # @param WorkflowId: 工作流ID
12633
12723
  # @type WorkflowId: String
12724
+ # @param ProjectIds: 项目ID列表,用于多项目实例趋势筛选,当指定了 ProjectIds 的时候,ProjectId 将只用来鉴权,不做筛选
12725
+ # @type ProjectIds: Array
12726
+ # @param TimePoint: 指定时间点,当统计时常为整天的时候使用,必须小于 24
12727
+ # @type TimePoint: Integer
12634
12728
 
12635
- attr_accessor :ProjectId, :TaskTypeId, :TimeType, :TypeName, :StartTime, :EndTime, :ExecutionGroupId, :ExecutionGroupName, :InCharge, :TaskType, :StateList, :AggregationUnit, :AverageWindowSize, :WorkflowId
12729
+ attr_accessor :ProjectId, :TaskTypeId, :TimeType, :TypeName, :StartTime, :EndTime, :ExecutionGroupId, :ExecutionGroupName, :InCharge, :TaskType, :StateList, :AggregationUnit, :AverageWindowSize, :WorkflowId, :ProjectIds, :TimePoint
12636
12730
 
12637
- def initialize(projectid=nil, tasktypeid=nil, timetype=nil, typename=nil, starttime=nil, endtime=nil, executiongroupid=nil, executiongroupname=nil, incharge=nil, tasktype=nil, statelist=nil, aggregationunit=nil, averagewindowsize=nil, workflowid=nil)
12731
+ def initialize(projectid=nil, tasktypeid=nil, timetype=nil, typename=nil, starttime=nil, endtime=nil, executiongroupid=nil, executiongroupname=nil, incharge=nil, tasktype=nil, statelist=nil, aggregationunit=nil, averagewindowsize=nil, workflowid=nil, projectids=nil, timepoint=nil)
12638
12732
  @ProjectId = projectid
12639
12733
  @TaskTypeId = tasktypeid
12640
12734
  @TimeType = timetype
@@ -12649,6 +12743,8 @@ module TencentCloud
12649
12743
  @AggregationUnit = aggregationunit
12650
12744
  @AverageWindowSize = averagewindowsize
12651
12745
  @WorkflowId = workflowid
12746
+ @ProjectIds = projectids
12747
+ @TimePoint = timepoint
12652
12748
  end
12653
12749
 
12654
12750
  def deserialize(params)
@@ -12666,6 +12762,8 @@ module TencentCloud
12666
12762
  @AggregationUnit = params['AggregationUnit']
12667
12763
  @AverageWindowSize = params['AverageWindowSize']
12668
12764
  @WorkflowId = params['WorkflowId']
12765
+ @ProjectIds = params['ProjectIds']
12766
+ @TimePoint = params['TimePoint']
12669
12767
  end
12670
12768
  end
12671
12769
 
@@ -13704,19 +13802,31 @@ module TencentCloud
13704
13802
  # @type InCharge: String
13705
13803
  # @param WorkflowId: 工作流ID
13706
13804
  # @type WorkflowId: String
13805
+ # @param ProjectIds: 项目ID列表筛选
13806
+ # @type ProjectIds: Array
13807
+ # @param ResourceGroupIds: 资源组ID列表筛选
13808
+ # @type ResourceGroupIds: Array
13809
+ # @param TaskTypeIdList: 任务类型ID筛选
13810
+ # @type TaskTypeIdList: Array
13707
13811
 
13708
- attr_accessor :ProjectId, :InCharge, :WorkflowId
13812
+ attr_accessor :ProjectId, :InCharge, :WorkflowId, :ProjectIds, :ResourceGroupIds, :TaskTypeIdList
13709
13813
 
13710
- def initialize(projectid=nil, incharge=nil, workflowid=nil)
13814
+ def initialize(projectid=nil, incharge=nil, workflowid=nil, projectids=nil, resourcegroupids=nil, tasktypeidlist=nil)
13711
13815
  @ProjectId = projectid
13712
13816
  @InCharge = incharge
13713
13817
  @WorkflowId = workflowid
13818
+ @ProjectIds = projectids
13819
+ @ResourceGroupIds = resourcegroupids
13820
+ @TaskTypeIdList = tasktypeidlist
13714
13821
  end
13715
13822
 
13716
13823
  def deserialize(params)
13717
13824
  @ProjectId = params['ProjectId']
13718
13825
  @InCharge = params['InCharge']
13719
13826
  @WorkflowId = params['WorkflowId']
13827
+ @ProjectIds = params['ProjectIds']
13828
+ @ResourceGroupIds = params['ResourceGroupIds']
13829
+ @TaskTypeIdList = params['TaskTypeIdList']
13720
13830
  end
13721
13831
  end
13722
13832
 
@@ -13771,10 +13881,12 @@ module TencentCloud
13771
13881
  # @type InCharge: String
13772
13882
  # @param WorkflowId: 工作流ID
13773
13883
  # @type WorkflowId: String
13884
+ # @param ProjectIds: 项目ID列表,用于多项目实例趋势筛选,当指定了 ProjectIds 的时候,ProjectId 将只用来鉴权,不做筛选
13885
+ # @type ProjectIds: Array
13774
13886
 
13775
- attr_accessor :ProjectId, :Type, :TaskType, :TypeName, :StartTime, :EndTime, :AggregationUnit, :CycleUnit, :Status, :InCharge, :WorkflowId
13887
+ attr_accessor :ProjectId, :Type, :TaskType, :TypeName, :StartTime, :EndTime, :AggregationUnit, :CycleUnit, :Status, :InCharge, :WorkflowId, :ProjectIds
13776
13888
 
13777
- def initialize(projectid=nil, type=nil, tasktype=nil, typename=nil, starttime=nil, endtime=nil, aggregationunit=nil, cycleunit=nil, status=nil, incharge=nil, workflowid=nil)
13889
+ def initialize(projectid=nil, type=nil, tasktype=nil, typename=nil, starttime=nil, endtime=nil, aggregationunit=nil, cycleunit=nil, status=nil, incharge=nil, workflowid=nil, projectids=nil)
13778
13890
  @ProjectId = projectid
13779
13891
  @Type = type
13780
13892
  @TaskType = tasktype
@@ -13786,6 +13898,7 @@ module TencentCloud
13786
13898
  @Status = status
13787
13899
  @InCharge = incharge
13788
13900
  @WorkflowId = workflowid
13901
+ @ProjectIds = projectids
13789
13902
  end
13790
13903
 
13791
13904
  def deserialize(params)
@@ -13800,6 +13913,7 @@ module TencentCloud
13800
13913
  @Status = params['Status']
13801
13914
  @InCharge = params['InCharge']
13802
13915
  @WorkflowId = params['WorkflowId']
13916
+ @ProjectIds = params['ProjectIds']
13803
13917
  end
13804
13918
  end
13805
13919
 
@@ -16149,19 +16263,23 @@ module TencentCloud
16149
16263
  # @type ProjectId: String
16150
16264
  # @param KillInstance: 是否终止已生成的实例
16151
16265
  # @type KillInstance: Boolean
16266
+ # @param AsyncMode: 是否异步模式
16267
+ # @type AsyncMode: Boolean
16152
16268
 
16153
- attr_accessor :WorkflowIds, :ProjectId, :KillInstance
16269
+ attr_accessor :WorkflowIds, :ProjectId, :KillInstance, :AsyncMode
16154
16270
 
16155
- def initialize(workflowids=nil, projectid=nil, killinstance=nil)
16271
+ def initialize(workflowids=nil, projectid=nil, killinstance=nil, asyncmode=nil)
16156
16272
  @WorkflowIds = workflowids
16157
16273
  @ProjectId = projectid
16158
16274
  @KillInstance = killinstance
16275
+ @AsyncMode = asyncmode
16159
16276
  end
16160
16277
 
16161
16278
  def deserialize(params)
16162
16279
  @WorkflowIds = params['WorkflowIds']
16163
16280
  @ProjectId = params['ProjectId']
16164
16281
  @KillInstance = params['KillInstance']
16282
+ @AsyncMode = params['AsyncMode']
16165
16283
  end
16166
16284
  end
16167
16285
 
@@ -18427,10 +18545,19 @@ module TencentCloud
18427
18545
  # @param OfflineTaskStatus: 离线任务状态区分1.未提交2.已提交3.已导出
18428
18546
  # 注意:此字段可能返回 null,表示取不到有效值。
18429
18547
  # @type OfflineTaskStatus: Integer
18548
+ # @param TaskImportInfo: 导入到编排空间配置
18549
+ # 注意:此字段可能返回 null,表示取不到有效值。
18550
+ # @type TaskImportInfo: :class:`Tencentcloud::Wedata.v20210820.models.TaskImportInfo`
18551
+ # @param BusinessLatency: 业务延迟
18552
+ # 注意:此字段可能返回 null,表示取不到有效值。
18553
+ # @type BusinessLatency: Integer
18554
+ # @param CurrentSyncPosition: 当前同步位点
18555
+ # 注意:此字段可能返回 null,表示取不到有效值。
18556
+ # @type CurrentSyncPosition: Integer
18430
18557
 
18431
- 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
18558
+ 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
18432
18559
 
18433
- 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)
18560
+ 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)
18434
18561
  @TaskName = taskname
18435
18562
  @Description = description
18436
18563
  @SyncType = synctype
@@ -18480,6 +18607,9 @@ module TencentCloud
18480
18607
  @InstanceVersion = instanceversion
18481
18608
  @ArrangeSpaceTaskId = arrangespacetaskid
18482
18609
  @OfflineTaskStatus = offlinetaskstatus
18610
+ @TaskImportInfo = taskimportinfo
18611
+ @BusinessLatency = businesslatency
18612
+ @CurrentSyncPosition = currentsyncposition
18483
18613
  end
18484
18614
 
18485
18615
  def deserialize(params)
@@ -18570,6 +18700,12 @@ module TencentCloud
18570
18700
  @InstanceVersion = params['InstanceVersion']
18571
18701
  @ArrangeSpaceTaskId = params['ArrangeSpaceTaskId']
18572
18702
  @OfflineTaskStatus = params['OfflineTaskStatus']
18703
+ unless params['TaskImportInfo'].nil?
18704
+ @TaskImportInfo = TaskImportInfo.new
18705
+ @TaskImportInfo.deserialize(params['TaskImportInfo'])
18706
+ end
18707
+ @BusinessLatency = params['BusinessLatency']
18708
+ @CurrentSyncPosition = params['CurrentSyncPosition']
18573
18709
  end
18574
18710
  end
18575
18711
 
@@ -18619,17 +18755,25 @@ module TencentCloud
18619
18755
  # @type ProjectId: String
18620
18756
  # @param PlanId: 补录计划ID
18621
18757
  # @type PlanId: String
18758
+ # @param AsyncMode: 是否异步模式
18759
+ # @type AsyncMode: Boolean
18760
+ # @param PlanName: 补录计划名
18761
+ # @type PlanName: String
18622
18762
 
18623
- attr_accessor :ProjectId, :PlanId
18763
+ attr_accessor :ProjectId, :PlanId, :AsyncMode, :PlanName
18624
18764
 
18625
- def initialize(projectid=nil, planid=nil)
18765
+ def initialize(projectid=nil, planid=nil, asyncmode=nil, planname=nil)
18626
18766
  @ProjectId = projectid
18627
18767
  @PlanId = planid
18768
+ @AsyncMode = asyncmode
18769
+ @PlanName = planname
18628
18770
  end
18629
18771
 
18630
18772
  def deserialize(params)
18631
18773
  @ProjectId = params['ProjectId']
18632
18774
  @PlanId = params['PlanId']
18775
+ @AsyncMode = params['AsyncMode']
18776
+ @PlanName = params['PlanName']
18633
18777
  end
18634
18778
  end
18635
18779
 
@@ -18694,10 +18838,12 @@ module TencentCloud
18694
18838
  # @type RequestBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.ProjectBaseInfoOpsRequest`
18695
18839
  # @param IsCount: 是否计算总数
18696
18840
  # @type IsCount: Boolean
18841
+ # @param AsyncMode: 是否异步模式
18842
+ # @type AsyncMode: Boolean
18697
18843
 
18698
- attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount
18844
+ attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount, :AsyncMode
18699
18845
 
18700
- 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)
18846
+ 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, asyncmode=nil)
18701
18847
  @Instances = instances
18702
18848
  @CheckFather = checkfather
18703
18849
  @RerunType = reruntype
@@ -18716,6 +18862,7 @@ module TencentCloud
18716
18862
  @Count = count
18717
18863
  @RequestBaseInfo = requestbaseinfo
18718
18864
  @IsCount = iscount
18865
+ @AsyncMode = asyncmode
18719
18866
  end
18720
18867
 
18721
18868
  def deserialize(params)
@@ -18750,6 +18897,7 @@ module TencentCloud
18750
18897
  @RequestBaseInfo.deserialize(params['RequestBaseInfo'])
18751
18898
  end
18752
18899
  @IsCount = params['IsCount']
18900
+ @AsyncMode = params['AsyncMode']
18753
18901
  end
18754
18902
  end
18755
18903
 
@@ -19113,10 +19261,16 @@ module TencentCloud
19113
19261
  # <li> MAKE_SCOPE: 只在(当前补录计划)选中任务中检查 </li>
19114
19262
  # 注意:此字段可能返回 null,表示取不到有效值。
19115
19263
  # @type CheckParentType: String
19264
+ # @param SameSelfWorkflowDependType: 是否和原任务保持相同工作流自依赖属性
19265
+ # 注意:此字段可能返回 null,表示取不到有效值。
19266
+ # @type SameSelfWorkflowDependType: Boolean
19267
+ # @param SelfWorkflowDependency: 工作流自依赖类型
19268
+ # 注意:此字段可能返回 null,表示取不到有效值。
19269
+ # @type SelfWorkflowDependency: String
19116
19270
 
19117
- attr_accessor :PlanId, :MakeName, :ProjectId, :CheckParent, :SameSelfDependType, :ParallelNum, :SameCycle, :SourceTaskCycle, :TargetTaskCycle, :TargetTaskAction, :MapParamList, :CreatorId, :Creator, :CreateTime, :TaskIdList, :MakeDatetimeList, :Remark, :SchedulerResourceGroup, :SchedulerResourceGroupName, :IntegrationResourceGroup, :IntegrationResourceGroupName, :TaskCount, :CompletePercent, :SuccessPercent, :CheckParentType
19271
+ attr_accessor :PlanId, :MakeName, :ProjectId, :CheckParent, :SameSelfDependType, :ParallelNum, :SameCycle, :SourceTaskCycle, :TargetTaskCycle, :TargetTaskAction, :MapParamList, :CreatorId, :Creator, :CreateTime, :TaskIdList, :MakeDatetimeList, :Remark, :SchedulerResourceGroup, :SchedulerResourceGroupName, :IntegrationResourceGroup, :IntegrationResourceGroupName, :TaskCount, :CompletePercent, :SuccessPercent, :CheckParentType, :SameSelfWorkflowDependType, :SelfWorkflowDependency
19118
19272
 
19119
- def initialize(planid=nil, makename=nil, projectid=nil, checkparent=nil, sameselfdependtype=nil, parallelnum=nil, samecycle=nil, sourcetaskcycle=nil, targettaskcycle=nil, targettaskaction=nil, mapparamlist=nil, creatorid=nil, creator=nil, createtime=nil, taskidlist=nil, makedatetimelist=nil, remark=nil, schedulerresourcegroup=nil, schedulerresourcegroupname=nil, integrationresourcegroup=nil, integrationresourcegroupname=nil, taskcount=nil, completepercent=nil, successpercent=nil, checkparenttype=nil)
19273
+ def initialize(planid=nil, makename=nil, projectid=nil, checkparent=nil, sameselfdependtype=nil, parallelnum=nil, samecycle=nil, sourcetaskcycle=nil, targettaskcycle=nil, targettaskaction=nil, mapparamlist=nil, creatorid=nil, creator=nil, createtime=nil, taskidlist=nil, makedatetimelist=nil, remark=nil, schedulerresourcegroup=nil, schedulerresourcegroupname=nil, integrationresourcegroup=nil, integrationresourcegroupname=nil, taskcount=nil, completepercent=nil, successpercent=nil, checkparenttype=nil, sameselfworkflowdependtype=nil, selfworkflowdependency=nil)
19120
19274
  @PlanId = planid
19121
19275
  @MakeName = makename
19122
19276
  @ProjectId = projectid
@@ -19142,6 +19296,8 @@ module TencentCloud
19142
19296
  @CompletePercent = completepercent
19143
19297
  @SuccessPercent = successpercent
19144
19298
  @CheckParentType = checkparenttype
19299
+ @SameSelfWorkflowDependType = sameselfworkflowdependtype
19300
+ @SelfWorkflowDependency = selfworkflowdependency
19145
19301
  end
19146
19302
 
19147
19303
  def deserialize(params)
@@ -19184,6 +19340,8 @@ module TencentCloud
19184
19340
  @CompletePercent = params['CompletePercent']
19185
19341
  @SuccessPercent = params['SuccessPercent']
19186
19342
  @CheckParentType = params['CheckParentType']
19343
+ @SameSelfWorkflowDependType = params['SameSelfWorkflowDependType']
19344
+ @SelfWorkflowDependency = params['SelfWorkflowDependency']
19187
19345
  end
19188
19346
  end
19189
19347
 
@@ -20984,14 +21142,17 @@ module TencentCloud
20984
21142
  # @param ErrorDesc: 操作失败描述
20985
21143
  # 注意:此字段可能返回 null,表示取不到有效值。
20986
21144
  # @type ErrorDesc: String
21145
+ # @param AsyncActionId: 异步操作记录id
21146
+ # @type AsyncActionId: String
20987
21147
 
20988
- attr_accessor :Result, :ResultMsg, :ErrorId, :ErrorDesc
21148
+ attr_accessor :Result, :ResultMsg, :ErrorId, :ErrorDesc, :AsyncActionId
20989
21149
 
20990
- def initialize(result=nil, resultmsg=nil, errorid=nil, errordesc=nil)
21150
+ def initialize(result=nil, resultmsg=nil, errorid=nil, errordesc=nil, asyncactionid=nil)
20991
21151
  @Result = result
20992
21152
  @ResultMsg = resultmsg
20993
21153
  @ErrorId = errorid
20994
21154
  @ErrorDesc = errordesc
21155
+ @AsyncActionId = asyncactionid
20995
21156
  end
20996
21157
 
20997
21158
  def deserialize(params)
@@ -20999,6 +21160,7 @@ module TencentCloud
20999
21160
  @ResultMsg = params['ResultMsg']
21000
21161
  @ErrorId = params['ErrorId']
21001
21162
  @ErrorDesc = params['ErrorDesc']
21163
+ @AsyncActionId = params['AsyncActionId']
21002
21164
  end
21003
21165
  end
21004
21166
 
@@ -24450,10 +24612,12 @@ module TencentCloud
24450
24612
  # @type RequestBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.ProjectBaseInfoOpsRequest`
24451
24613
  # @param IsCount: 是否计算总数
24452
24614
  # @type IsCount: Boolean
24615
+ # @param AsyncMode: 是否异步模式
24616
+ # @type AsyncMode: Boolean
24453
24617
 
24454
- attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount
24618
+ attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount, :AsyncMode
24455
24619
 
24456
- 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)
24620
+ 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, asyncmode=nil)
24457
24621
  @Instances = instances
24458
24622
  @CheckFather = checkfather
24459
24623
  @RerunType = reruntype
@@ -24472,6 +24636,7 @@ module TencentCloud
24472
24636
  @Count = count
24473
24637
  @RequestBaseInfo = requestbaseinfo
24474
24638
  @IsCount = iscount
24639
+ @AsyncMode = asyncmode
24475
24640
  end
24476
24641
 
24477
24642
  def deserialize(params)
@@ -24506,6 +24671,7 @@ module TencentCloud
24506
24671
  @RequestBaseInfo.deserialize(params['RequestBaseInfo'])
24507
24672
  end
24508
24673
  @IsCount = params['IsCount']
24674
+ @AsyncMode = params['AsyncMode']
24509
24675
  end
24510
24676
  end
24511
24677
 
@@ -24570,10 +24736,12 @@ module TencentCloud
24570
24736
  # @type RequestBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.ProjectBaseInfoOpsRequest`
24571
24737
  # @param IsCount: 是否计算总数
24572
24738
  # @type IsCount: Boolean
24739
+ # @param AsyncMode: 是否异步模式
24740
+ # @type AsyncMode: Boolean
24573
24741
 
24574
- attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount
24742
+ attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount, :AsyncMode
24575
24743
 
24576
- 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)
24744
+ 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, asyncmode=nil)
24577
24745
  @Instances = instances
24578
24746
  @CheckFather = checkfather
24579
24747
  @RerunType = reruntype
@@ -24592,6 +24760,7 @@ module TencentCloud
24592
24760
  @Count = count
24593
24761
  @RequestBaseInfo = requestbaseinfo
24594
24762
  @IsCount = iscount
24763
+ @AsyncMode = asyncmode
24595
24764
  end
24596
24765
 
24597
24766
  def deserialize(params)
@@ -24626,6 +24795,7 @@ module TencentCloud
24626
24795
  @RequestBaseInfo.deserialize(params['RequestBaseInfo'])
24627
24796
  end
24628
24797
  @IsCount = params['IsCount']
24798
+ @AsyncMode = params['AsyncMode']
24629
24799
  end
24630
24800
  end
24631
24801
 
@@ -24726,10 +24896,16 @@ module TencentCloud
24726
24896
  # @param WaitScheduleTime: 等待调度耗时
24727
24897
  # 注意:此字段可能返回 null,表示取不到有效值。
24728
24898
  # @type WaitScheduleTime: Integer
24899
+ # @param ProjectId: 项目ID
24900
+ # 注意:此字段可能返回 null,表示取不到有效值。
24901
+ # @type ProjectId: String
24902
+ # @param ProjectName: 项目名称
24903
+ # 注意:此字段可能返回 null,表示取不到有效值。
24904
+ # @type ProjectName: String
24729
24905
 
24730
- attr_accessor :TaskId, :TaskName, :InCharge, :CycleUnit, :State, :RunTime, :CurRunTime, :WaitScheduleTime
24906
+ attr_accessor :TaskId, :TaskName, :InCharge, :CycleUnit, :State, :RunTime, :CurRunTime, :WaitScheduleTime, :ProjectId, :ProjectName
24731
24907
 
24732
- def initialize(taskid=nil, taskname=nil, incharge=nil, cycleunit=nil, state=nil, runtime=nil, curruntime=nil, waitscheduletime=nil)
24908
+ def initialize(taskid=nil, taskname=nil, incharge=nil, cycleunit=nil, state=nil, runtime=nil, curruntime=nil, waitscheduletime=nil, projectid=nil, projectname=nil)
24733
24909
  @TaskId = taskid
24734
24910
  @TaskName = taskname
24735
24911
  @InCharge = incharge
@@ -24738,6 +24914,8 @@ module TencentCloud
24738
24914
  @RunTime = runtime
24739
24915
  @CurRunTime = curruntime
24740
24916
  @WaitScheduleTime = waitscheduletime
24917
+ @ProjectId = projectid
24918
+ @ProjectName = projectname
24741
24919
  end
24742
24920
 
24743
24921
  def deserialize(params)
@@ -24749,6 +24927,8 @@ module TencentCloud
24749
24927
  @RunTime = params['RunTime']
24750
24928
  @CurRunTime = params['CurRunTime']
24751
24929
  @WaitScheduleTime = params['WaitScheduleTime']
24930
+ @ProjectId = params['ProjectId']
24931
+ @ProjectName = params['ProjectName']
24752
24932
  end
24753
24933
  end
24754
24934
 
@@ -24930,10 +25110,12 @@ module TencentCloud
24930
25110
  # @param FailedNum: 失败
24931
25111
  # 注意:此字段可能返回 null,表示取不到有效值。
24932
25112
  # @type FailedNum: Integer
25113
+ # @param SkipRunningNum: 跳过运行总数
25114
+ # @type SkipRunningNum: Integer
24933
25115
 
24934
- attr_accessor :CountTag, :TotalNum, :RunningNum, :WaitRunningNum, :DependencyNum, :WaitEventNum, :StoppingNum, :SucceedNum, :FailedNum
25116
+ attr_accessor :CountTag, :TotalNum, :RunningNum, :WaitRunningNum, :DependencyNum, :WaitEventNum, :StoppingNum, :SucceedNum, :FailedNum, :SkipRunningNum
24935
25117
 
24936
- def initialize(counttag=nil, totalnum=nil, runningnum=nil, waitrunningnum=nil, dependencynum=nil, waiteventnum=nil, stoppingnum=nil, succeednum=nil, failednum=nil)
25118
+ def initialize(counttag=nil, totalnum=nil, runningnum=nil, waitrunningnum=nil, dependencynum=nil, waiteventnum=nil, stoppingnum=nil, succeednum=nil, failednum=nil, skiprunningnum=nil)
24937
25119
  @CountTag = counttag
24938
25120
  @TotalNum = totalnum
24939
25121
  @RunningNum = runningnum
@@ -24943,6 +25125,7 @@ module TencentCloud
24943
25125
  @StoppingNum = stoppingnum
24944
25126
  @SucceedNum = succeednum
24945
25127
  @FailedNum = failednum
25128
+ @SkipRunningNum = skiprunningnum
24946
25129
  end
24947
25130
 
24948
25131
  def deserialize(params)
@@ -24955,6 +25138,7 @@ module TencentCloud
24955
25138
  @StoppingNum = params['StoppingNum']
24956
25139
  @SucceedNum = params['SucceedNum']
24957
25140
  @FailedNum = params['FailedNum']
25141
+ @SkipRunningNum = params['SkipRunningNum']
24958
25142
  end
24959
25143
  end
24960
25144
 
@@ -24977,6 +25161,9 @@ module TencentCloud
24977
25161
  # @param FrozenNum: 暂停
24978
25162
  # 注意:此字段可能返回 null,表示取不到有效值。
24979
25163
  # @type FrozenNum: Integer
25164
+ # @param InvalidNum: 无效任务数
25165
+ # 注意:此字段可能返回 null,表示取不到有效值。
25166
+ # @type InvalidNum: Integer
24980
25167
  # @param YearNum: 年任务
24981
25168
  # 注意:此字段可能返回 null,表示取不到有效值。
24982
25169
  # @type YearNum: Integer
@@ -24996,15 +25183,16 @@ module TencentCloud
24996
25183
  # 注意:此字段可能返回 null,表示取不到有效值。
24997
25184
  # @type MinuteNum: Integer
24998
25185
 
24999
- attr_accessor :CountTag, :TotalNum, :RunningNum, :StoppingNum, :StoppedNum, :FrozenNum, :YearNum, :MonthNum, :WeekNum, :DayNum, :HourNum, :MinuteNum
25186
+ attr_accessor :CountTag, :TotalNum, :RunningNum, :StoppingNum, :StoppedNum, :FrozenNum, :InvalidNum, :YearNum, :MonthNum, :WeekNum, :DayNum, :HourNum, :MinuteNum
25000
25187
 
25001
- def initialize(counttag=nil, totalnum=nil, runningnum=nil, stoppingnum=nil, stoppednum=nil, frozennum=nil, yearnum=nil, monthnum=nil, weeknum=nil, daynum=nil, hournum=nil, minutenum=nil)
25188
+ def initialize(counttag=nil, totalnum=nil, runningnum=nil, stoppingnum=nil, stoppednum=nil, frozennum=nil, invalidnum=nil, yearnum=nil, monthnum=nil, weeknum=nil, daynum=nil, hournum=nil, minutenum=nil)
25002
25189
  @CountTag = counttag
25003
25190
  @TotalNum = totalnum
25004
25191
  @RunningNum = runningnum
25005
25192
  @StoppingNum = stoppingnum
25006
25193
  @StoppedNum = stoppednum
25007
25194
  @FrozenNum = frozennum
25195
+ @InvalidNum = invalidnum
25008
25196
  @YearNum = yearnum
25009
25197
  @MonthNum = monthnum
25010
25198
  @WeekNum = weeknum
@@ -25020,6 +25208,7 @@ module TencentCloud
25020
25208
  @StoppingNum = params['StoppingNum']
25021
25209
  @StoppedNum = params['StoppedNum']
25022
25210
  @FrozenNum = params['FrozenNum']
25211
+ @InvalidNum = params['InvalidNum']
25023
25212
  @YearNum = params['YearNum']
25024
25213
  @MonthNum = params['MonthNum']
25025
25214
  @WeekNum = params['WeekNum']
@@ -27931,6 +28120,53 @@ module TencentCloud
27931
28120
  end
27932
28121
  end
27933
28122
 
28123
+ # 集成任务导入到编排空间配置
28124
+ class TaskImportInfo < TencentCloud::Common::AbstractModel
28125
+ # @param IsImport: 是否导入编排空间
28126
+ # 注意:此字段可能返回 null,表示取不到有效值。
28127
+ # @type IsImport: Boolean
28128
+ # @param IsNewWorkFlow: 是否新建工作流
28129
+ # 注意:此字段可能返回 null,表示取不到有效值。
28130
+ # @type IsNewWorkFlow: Boolean
28131
+ # @param WorkFlowFolderId: 工作流所属目录id
28132
+ # 注意:此字段可能返回 null,表示取不到有效值。
28133
+ # @type WorkFlowFolderId: String
28134
+ # @param WorkFlowFolderName: 工作流所属目录名称
28135
+ # 注意:此字段可能返回 null,表示取不到有效值。
28136
+ # @type WorkFlowFolderName: String
28137
+ # @param WorkFlowId: 工作流id
28138
+ # 注意:此字段可能返回 null,表示取不到有效值。
28139
+ # @type WorkFlowId: String
28140
+ # @param WorkFlowName: 工作流名称
28141
+ # 注意:此字段可能返回 null,表示取不到有效值。
28142
+ # @type WorkFlowName: String
28143
+ # @param TaskNameExistMode: 重名任务处理策略, 0:跳过,不导入; 1: 重命名
28144
+ # 注意:此字段可能返回 null,表示取不到有效值。
28145
+ # @type TaskNameExistMode: Integer
28146
+
28147
+ attr_accessor :IsImport, :IsNewWorkFlow, :WorkFlowFolderId, :WorkFlowFolderName, :WorkFlowId, :WorkFlowName, :TaskNameExistMode
28148
+
28149
+ def initialize(isimport=nil, isnewworkflow=nil, workflowfolderid=nil, workflowfoldername=nil, workflowid=nil, workflowname=nil, tasknameexistmode=nil)
28150
+ @IsImport = isimport
28151
+ @IsNewWorkFlow = isnewworkflow
28152
+ @WorkFlowFolderId = workflowfolderid
28153
+ @WorkFlowFolderName = workflowfoldername
28154
+ @WorkFlowId = workflowid
28155
+ @WorkFlowName = workflowname
28156
+ @TaskNameExistMode = tasknameexistmode
28157
+ end
28158
+
28159
+ def deserialize(params)
28160
+ @IsImport = params['IsImport']
28161
+ @IsNewWorkFlow = params['IsNewWorkFlow']
28162
+ @WorkFlowFolderId = params['WorkFlowFolderId']
28163
+ @WorkFlowFolderName = params['WorkFlowFolderName']
28164
+ @WorkFlowId = params['WorkFlowId']
28165
+ @WorkFlowName = params['WorkFlowName']
28166
+ @TaskNameExistMode = params['TaskNameExistMode']
28167
+ end
28168
+ end
28169
+
27934
28170
  # 任务属性
27935
28171
  class TaskInnerInfo < TencentCloud::Common::AbstractModel
27936
28172
  # @param TaskId: 任务ID
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-wedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.963
4
+ version: 3.0.964
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud