tencentcloud-sdk-wedata 3.0.980 → 3.0.982
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/models.rb +172 -26
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2625dcda751462e12f437248d3b5e44ffed1d72
|
4
|
+
data.tar.gz: bfd21305ea7c81e0426cb2b447d51fe9ba6e1524
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd22948b23e075d3cf98e98a59c099e468d40236d317b9a5e289bf394890dfdbb7f9577459fa31e58fd885e03c57129953fdd5eac940f0969afa3c6a6a006644
|
7
|
+
data.tar.gz: 10ed09d5daca94a9140c0a7e57bda4da21fb75b2e51a84a748610cc4c677ccb669f95ca62cb02c7155c23fc67e2a7d805703524c029c96c5e23db924b262bc48
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.982
|
data/lib/v20210820/models.rb
CHANGED
@@ -3832,10 +3832,12 @@ module TencentCloud
|
|
3832
3832
|
# @type DataOptimizationResource: String
|
3833
3833
|
# @param SmartOptimizerWritten: 是否开启数据优化
|
3834
3834
|
# @type SmartOptimizerWritten: String
|
3835
|
+
# @param TableName: 数据优化表名
|
3836
|
+
# @type TableName: String
|
3835
3837
|
|
3836
|
-
attr_accessor :DatasourceId, :Database, :DDLSql, :Privilege, :ProjectId, :Type, :Incharge, :SchemaName, :Async, :DataOptimizationResource, :SmartOptimizerWritten
|
3838
|
+
attr_accessor :DatasourceId, :Database, :DDLSql, :Privilege, :ProjectId, :Type, :Incharge, :SchemaName, :Async, :DataOptimizationResource, :SmartOptimizerWritten, :TableName
|
3837
3839
|
|
3838
|
-
def initialize(datasourceid=nil, database=nil, ddlsql=nil, privilege=nil, projectid=nil, type=nil, incharge=nil, schemaname=nil, async=nil, dataoptimizationresource=nil, smartoptimizerwritten=nil)
|
3840
|
+
def initialize(datasourceid=nil, database=nil, ddlsql=nil, privilege=nil, projectid=nil, type=nil, incharge=nil, schemaname=nil, async=nil, dataoptimizationresource=nil, smartoptimizerwritten=nil, tablename=nil)
|
3839
3841
|
@DatasourceId = datasourceid
|
3840
3842
|
@Database = database
|
3841
3843
|
@DDLSql = ddlsql
|
@@ -3847,6 +3849,7 @@ module TencentCloud
|
|
3847
3849
|
@Async = async
|
3848
3850
|
@DataOptimizationResource = dataoptimizationresource
|
3849
3851
|
@SmartOptimizerWritten = smartoptimizerwritten
|
3852
|
+
@TableName = tablename
|
3850
3853
|
end
|
3851
3854
|
|
3852
3855
|
def deserialize(params)
|
@@ -3861,6 +3864,7 @@ module TencentCloud
|
|
3861
3864
|
@Async = params['Async']
|
3862
3865
|
@DataOptimizationResource = params['DataOptimizationResource']
|
3863
3866
|
@SmartOptimizerWritten = params['SmartOptimizerWritten']
|
3867
|
+
@TableName = params['TableName']
|
3864
3868
|
end
|
3865
3869
|
end
|
3866
3870
|
|
@@ -3906,10 +3910,12 @@ module TencentCloud
|
|
3906
3910
|
# @type DataOptimizationResource: String
|
3907
3911
|
# @param SmartOptimizerWritten: 是否开启数据优化
|
3908
3912
|
# @type SmartOptimizerWritten: String
|
3913
|
+
# @param TableName: 数据优化针对的表
|
3914
|
+
# @type TableName: String
|
3909
3915
|
|
3910
|
-
attr_accessor :DatasourceId, :Database, :DDLSql, :Privilege, :ProjectId, :Incharge, :DataOptimizationResource, :SmartOptimizerWritten
|
3916
|
+
attr_accessor :DatasourceId, :Database, :DDLSql, :Privilege, :ProjectId, :Incharge, :DataOptimizationResource, :SmartOptimizerWritten, :TableName
|
3911
3917
|
|
3912
|
-
def initialize(datasourceid=nil, database=nil, ddlsql=nil, privilege=nil, projectid=nil, incharge=nil, dataoptimizationresource=nil, smartoptimizerwritten=nil)
|
3918
|
+
def initialize(datasourceid=nil, database=nil, ddlsql=nil, privilege=nil, projectid=nil, incharge=nil, dataoptimizationresource=nil, smartoptimizerwritten=nil, tablename=nil)
|
3913
3919
|
@DatasourceId = datasourceid
|
3914
3920
|
@Database = database
|
3915
3921
|
@DDLSql = ddlsql
|
@@ -3918,6 +3924,7 @@ module TencentCloud
|
|
3918
3924
|
@Incharge = incharge
|
3919
3925
|
@DataOptimizationResource = dataoptimizationresource
|
3920
3926
|
@SmartOptimizerWritten = smartoptimizerwritten
|
3927
|
+
@TableName = tablename
|
3921
3928
|
end
|
3922
3929
|
|
3923
3930
|
def deserialize(params)
|
@@ -3929,6 +3936,7 @@ module TencentCloud
|
|
3929
3936
|
@Incharge = params['Incharge']
|
3930
3937
|
@DataOptimizationResource = params['DataOptimizationResource']
|
3931
3938
|
@SmartOptimizerWritten = params['SmartOptimizerWritten']
|
3939
|
+
@TableName = params['TableName']
|
3932
3940
|
end
|
3933
3941
|
end
|
3934
3942
|
|
@@ -4788,14 +4796,20 @@ module TencentCloud
|
|
4788
4796
|
# @type FolderId: String
|
4789
4797
|
# @param WorkflowDesc: 工作流描述
|
4790
4798
|
# @type WorkflowDesc: String
|
4799
|
+
# @param WorkflowType: 工作流类型,取值示例
|
4800
|
+
|
4801
|
+
# - cycle 周期工作流
|
4802
|
+
# - manual 手动工作流
|
4803
|
+
# @type WorkflowType: String
|
4791
4804
|
|
4792
|
-
attr_accessor :ProjectId, :WorkflowName, :FolderId, :WorkflowDesc
|
4805
|
+
attr_accessor :ProjectId, :WorkflowName, :FolderId, :WorkflowDesc, :WorkflowType
|
4793
4806
|
|
4794
|
-
def initialize(projectid=nil, workflowname=nil, folderid=nil, workflowdesc=nil)
|
4807
|
+
def initialize(projectid=nil, workflowname=nil, folderid=nil, workflowdesc=nil, workflowtype=nil)
|
4795
4808
|
@ProjectId = projectid
|
4796
4809
|
@WorkflowName = workflowname
|
4797
4810
|
@FolderId = folderid
|
4798
4811
|
@WorkflowDesc = workflowdesc
|
4812
|
+
@WorkflowType = workflowtype
|
4799
4813
|
end
|
4800
4814
|
|
4801
4815
|
def deserialize(params)
|
@@ -4803,6 +4817,7 @@ module TencentCloud
|
|
4803
4817
|
@WorkflowName = params['WorkflowName']
|
4804
4818
|
@FolderId = params['FolderId']
|
4805
4819
|
@WorkflowDesc = params['WorkflowDesc']
|
4820
|
+
@WorkflowType = params['WorkflowType']
|
4806
4821
|
end
|
4807
4822
|
end
|
4808
4823
|
|
@@ -8444,10 +8459,15 @@ module TencentCloud
|
|
8444
8459
|
# @type NewFolderTreeMode: Boolean
|
8445
8460
|
# @param TaskNodeId: 节点分类ID
|
8446
8461
|
# @type TaskNodeId: String
|
8462
|
+
# @param WorkflowType: 工作流类型, 使用场景: 任务复制,选择工作流. 取值范围
|
8447
8463
|
|
8448
|
-
|
8464
|
+
# - cycle 周期工作流
|
8465
|
+
# - manual 手动工作流
|
8466
|
+
# @type WorkflowType: String
|
8449
8467
|
|
8450
|
-
|
8468
|
+
attr_accessor :ProjectId, :FirstLevelPull, :FolderId, :WorkflowId, :Keyword, :IncludeWorkflow, :IncludeTask, :IncludeVirtualTask, :TaskFolderId, :DisplayType, :IncludeTaskFolder, :NewFolderTreeMode, :TaskNodeId, :WorkflowType
|
8469
|
+
|
8470
|
+
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, workflowtype=nil)
|
8451
8471
|
@ProjectId = projectid
|
8452
8472
|
@FirstLevelPull = firstlevelpull
|
8453
8473
|
@FolderId = folderid
|
@@ -8461,6 +8481,7 @@ module TencentCloud
|
|
8461
8481
|
@IncludeTaskFolder = includetaskfolder
|
8462
8482
|
@NewFolderTreeMode = newfoldertreemode
|
8463
8483
|
@TaskNodeId = tasknodeid
|
8484
|
+
@WorkflowType = workflowtype
|
8464
8485
|
end
|
8465
8486
|
|
8466
8487
|
def deserialize(params)
|
@@ -8477,6 +8498,7 @@ module TencentCloud
|
|
8477
8498
|
@IncludeTaskFolder = params['IncludeTaskFolder']
|
8478
8499
|
@NewFolderTreeMode = params['NewFolderTreeMode']
|
8479
8500
|
@TaskNodeId = params['TaskNodeId']
|
8501
|
+
@WorkflowType = params['WorkflowType']
|
8480
8502
|
end
|
8481
8503
|
end
|
8482
8504
|
|
@@ -9403,10 +9425,20 @@ module TencentCloud
|
|
9403
9425
|
# @type ExtInfo: String
|
9404
9426
|
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
9405
9427
|
# @type RequestFromSource: String
|
9428
|
+
# @param InstanceLifeDetailDtoList: 生命周期为基础数据进行日志匹配
|
9429
|
+
# @type InstanceLifeDetailDtoList: Array
|
9430
|
+
# @param CurrentLifeRound: 当前生命周期
|
9431
|
+
# @type CurrentLifeRound: Integer
|
9432
|
+
# @param MaxLifeRound: 生命周期总数
|
9433
|
+
# @type MaxLifeRound: Integer
|
9434
|
+
# @param Tries: 当前生命周期重试次数
|
9435
|
+
# @type Tries: Integer
|
9436
|
+
# @param Dynamic: 动态加载日志
|
9437
|
+
# @type Dynamic: Boolean
|
9406
9438
|
|
9407
|
-
attr_accessor :ProjectId, :TaskId, :CurRunDate, :LogLevelType, :ExecutionFileType, :ExecutionJobId, :BrokerIp, :OriginFileName, :StartCount, :LineCount, :ExtInfo, :RequestFromSource
|
9439
|
+
attr_accessor :ProjectId, :TaskId, :CurRunDate, :LogLevelType, :ExecutionFileType, :ExecutionJobId, :BrokerIp, :OriginFileName, :StartCount, :LineCount, :ExtInfo, :RequestFromSource, :InstanceLifeDetailDtoList, :CurrentLifeRound, :MaxLifeRound, :Tries, :Dynamic
|
9408
9440
|
|
9409
|
-
def initialize(projectid=nil, taskid=nil, currundate=nil, logleveltype=nil, executionfiletype=nil, executionjobid=nil, brokerip=nil, originfilename=nil, startcount=nil, linecount=nil, extinfo=nil, requestfromsource=nil)
|
9441
|
+
def initialize(projectid=nil, taskid=nil, currundate=nil, logleveltype=nil, executionfiletype=nil, executionjobid=nil, brokerip=nil, originfilename=nil, startcount=nil, linecount=nil, extinfo=nil, requestfromsource=nil, instancelifedetaildtolist=nil, currentliferound=nil, maxliferound=nil, tries=nil, dynamic=nil)
|
9410
9442
|
@ProjectId = projectid
|
9411
9443
|
@TaskId = taskid
|
9412
9444
|
@CurRunDate = currundate
|
@@ -9419,6 +9451,11 @@ module TencentCloud
|
|
9419
9451
|
@LineCount = linecount
|
9420
9452
|
@ExtInfo = extinfo
|
9421
9453
|
@RequestFromSource = requestfromsource
|
9454
|
+
@InstanceLifeDetailDtoList = instancelifedetaildtolist
|
9455
|
+
@CurrentLifeRound = currentliferound
|
9456
|
+
@MaxLifeRound = maxliferound
|
9457
|
+
@Tries = tries
|
9458
|
+
@Dynamic = dynamic
|
9422
9459
|
end
|
9423
9460
|
|
9424
9461
|
def deserialize(params)
|
@@ -9434,6 +9471,18 @@ module TencentCloud
|
|
9434
9471
|
@LineCount = params['LineCount']
|
9435
9472
|
@ExtInfo = params['ExtInfo']
|
9436
9473
|
@RequestFromSource = params['RequestFromSource']
|
9474
|
+
unless params['InstanceLifeDetailDtoList'].nil?
|
9475
|
+
@InstanceLifeDetailDtoList = []
|
9476
|
+
params['InstanceLifeDetailDtoList'].each do |i|
|
9477
|
+
instancelifedetaildto_tmp = InstanceLifeDetailDto.new
|
9478
|
+
instancelifedetaildto_tmp.deserialize(i)
|
9479
|
+
@InstanceLifeDetailDtoList << instancelifedetaildto_tmp
|
9480
|
+
end
|
9481
|
+
end
|
9482
|
+
@CurrentLifeRound = params['CurrentLifeRound']
|
9483
|
+
@MaxLifeRound = params['MaxLifeRound']
|
9484
|
+
@Tries = params['Tries']
|
9485
|
+
@Dynamic = params['Dynamic']
|
9437
9486
|
end
|
9438
9487
|
end
|
9439
9488
|
|
@@ -9481,10 +9530,18 @@ module TencentCloud
|
|
9481
9530
|
# @type LogLevelType: String
|
9482
9531
|
# @param ExecutionFileType: 文件类型,Log/Code
|
9483
9532
|
# @type ExecutionFileType: String
|
9533
|
+
# @param InstanceLifeDetailDtoList: 生命周期为基础数据进行日志匹配。Dynamic=true动态获取日志链路中使用
|
9534
|
+
# @type InstanceLifeDetailDtoList: Array
|
9535
|
+
# @param CurrentLifeRound: 当前生命周期数
|
9536
|
+
# @type CurrentLifeRound: Integer
|
9537
|
+
# @param Tries: 当前生命周期重试次数
|
9538
|
+
# @type Tries: Integer
|
9539
|
+
# @param Dynamic: 动态获取日志信息标识
|
9540
|
+
# @type Dynamic: Boolean
|
9484
9541
|
|
9485
|
-
attr_accessor :ProjectId, :TaskId, :CurRunDate, :RequestFromSource, :BrokerIp, :OriginFileName, :ExecutionJobId, :LogLevelType, :ExecutionFileType
|
9542
|
+
attr_accessor :ProjectId, :TaskId, :CurRunDate, :RequestFromSource, :BrokerIp, :OriginFileName, :ExecutionJobId, :LogLevelType, :ExecutionFileType, :InstanceLifeDetailDtoList, :CurrentLifeRound, :Tries, :Dynamic
|
9486
9543
|
|
9487
|
-
def initialize(projectid=nil, taskid=nil, currundate=nil, requestfromsource=nil, brokerip=nil, originfilename=nil, executionjobid=nil, logleveltype=nil, executionfiletype=nil)
|
9544
|
+
def initialize(projectid=nil, taskid=nil, currundate=nil, requestfromsource=nil, brokerip=nil, originfilename=nil, executionjobid=nil, logleveltype=nil, executionfiletype=nil, instancelifedetaildtolist=nil, currentliferound=nil, tries=nil, dynamic=nil)
|
9488
9545
|
@ProjectId = projectid
|
9489
9546
|
@TaskId = taskid
|
9490
9547
|
@CurRunDate = currundate
|
@@ -9494,6 +9551,10 @@ module TencentCloud
|
|
9494
9551
|
@ExecutionJobId = executionjobid
|
9495
9552
|
@LogLevelType = logleveltype
|
9496
9553
|
@ExecutionFileType = executionfiletype
|
9554
|
+
@InstanceLifeDetailDtoList = instancelifedetaildtolist
|
9555
|
+
@CurrentLifeRound = currentliferound
|
9556
|
+
@Tries = tries
|
9557
|
+
@Dynamic = dynamic
|
9497
9558
|
end
|
9498
9559
|
|
9499
9560
|
def deserialize(params)
|
@@ -9506,6 +9567,17 @@ module TencentCloud
|
|
9506
9567
|
@ExecutionJobId = params['ExecutionJobId']
|
9507
9568
|
@LogLevelType = params['LogLevelType']
|
9508
9569
|
@ExecutionFileType = params['ExecutionFileType']
|
9570
|
+
unless params['InstanceLifeDetailDtoList'].nil?
|
9571
|
+
@InstanceLifeDetailDtoList = []
|
9572
|
+
params['InstanceLifeDetailDtoList'].each do |i|
|
9573
|
+
instancelifedetaildto_tmp = InstanceLifeDetailDto.new
|
9574
|
+
instancelifedetaildto_tmp.deserialize(i)
|
9575
|
+
@InstanceLifeDetailDtoList << instancelifedetaildto_tmp
|
9576
|
+
end
|
9577
|
+
end
|
9578
|
+
@CurrentLifeRound = params['CurrentLifeRound']
|
9579
|
+
@Tries = params['Tries']
|
9580
|
+
@Dynamic = params['Dynamic']
|
9509
9581
|
end
|
9510
9582
|
end
|
9511
9583
|
|
@@ -10700,10 +10772,14 @@ module TencentCloud
|
|
10700
10772
|
# @type SortType: String
|
10701
10773
|
# @param ProjectIds: 项目ID列表,用于多项目工作流筛选
|
10702
10774
|
# @type ProjectIds: Array
|
10775
|
+
# @param WorkflowTypeList: 工作流类型列表 多个用英文逗号连接 cycle,manual. 默认只查询 cycle
|
10776
|
+
# @type WorkflowTypeList: Array
|
10777
|
+
# @param KeyWord: 工作流过滤keyword,支持工作流 id/name 模糊匹配, 多个用|分割
|
10778
|
+
# @type KeyWord: String
|
10703
10779
|
|
10704
|
-
attr_accessor :ProjectId, :ProductNameList, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :StatusList, :InChargeList, :PageNumber, :PageSize, :SortItem, :SortType, :ProjectIds
|
10780
|
+
attr_accessor :ProjectId, :ProductNameList, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :StatusList, :InChargeList, :PageNumber, :PageSize, :SortItem, :SortType, :ProjectIds, :WorkflowTypeList, :KeyWord
|
10705
10781
|
|
10706
|
-
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)
|
10782
|
+
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)
|
10707
10783
|
@ProjectId = projectid
|
10708
10784
|
@ProductNameList = productnamelist
|
10709
10785
|
@FolderIdList = folderidlist
|
@@ -10718,6 +10794,8 @@ module TencentCloud
|
|
10718
10794
|
@SortItem = sortitem
|
10719
10795
|
@SortType = sorttype
|
10720
10796
|
@ProjectIds = projectids
|
10797
|
+
@WorkflowTypeList = workflowtypelist
|
10798
|
+
@KeyWord = keyword
|
10721
10799
|
end
|
10722
10800
|
|
10723
10801
|
def deserialize(params)
|
@@ -10735,6 +10813,8 @@ module TencentCloud
|
|
10735
10813
|
@SortItem = params['SortItem']
|
10736
10814
|
@SortType = params['SortType']
|
10737
10815
|
@ProjectIds = params['ProjectIds']
|
10816
|
+
@WorkflowTypeList = params['WorkflowTypeList']
|
10817
|
+
@KeyWord = params['KeyWord']
|
10738
10818
|
end
|
10739
10819
|
end
|
10740
10820
|
|
@@ -17167,6 +17247,9 @@ module TencentCloud
|
|
17167
17247
|
# @param TaskId: 任务id
|
17168
17248
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
17169
17249
|
# @type TaskId: String
|
17250
|
+
# @param TaskName: 任务名
|
17251
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17252
|
+
# @type TaskName: String
|
17170
17253
|
# @param CurRunDate: 数据时间
|
17171
17254
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
17172
17255
|
# @type CurRunDate: String
|
@@ -17206,11 +17289,17 @@ module TencentCloud
|
|
17206
17289
|
# @param InstanceRunType: 实例运行类型: 0: 普通运行, 1: 空跑运行
|
17207
17290
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
17208
17291
|
# @type InstanceRunType: Integer
|
17292
|
+
# @param TotalLifeRound: 实例当前总生命周期数
|
17293
|
+
# @type TotalLifeRound: Integer
|
17294
|
+
# @param TaskType: 任务类型
|
17295
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17296
|
+
# @type TaskType: :class:`Tencentcloud::Wedata.v20210820.models.TaskTypeOpsDto`
|
17209
17297
|
|
17210
|
-
attr_accessor :TaskId, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType
|
17298
|
+
attr_accessor :TaskId, :TaskName, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType, :TotalLifeRound, :TaskType
|
17211
17299
|
|
17212
|
-
def initialize(taskid=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)
|
17300
|
+
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)
|
17213
17301
|
@TaskId = taskid
|
17302
|
+
@TaskName = taskname
|
17214
17303
|
@CurRunDate = currundate
|
17215
17304
|
@LifeRound = liferound
|
17216
17305
|
@RunType = runtype
|
@@ -17224,10 +17313,13 @@ module TencentCloud
|
|
17224
17313
|
@ScheduleRunType = scheduleruntype
|
17225
17314
|
@ExecutionJobId = executionjobid
|
17226
17315
|
@InstanceRunType = instanceruntype
|
17316
|
+
@TotalLifeRound = totalliferound
|
17317
|
+
@TaskType = tasktype
|
17227
17318
|
end
|
17228
17319
|
|
17229
17320
|
def deserialize(params)
|
17230
17321
|
@TaskId = params['TaskId']
|
17322
|
+
@TaskName = params['TaskName']
|
17231
17323
|
@CurRunDate = params['CurRunDate']
|
17232
17324
|
@LifeRound = params['LifeRound']
|
17233
17325
|
@RunType = params['RunType']
|
@@ -17251,6 +17343,11 @@ module TencentCloud
|
|
17251
17343
|
@ScheduleRunType = params['ScheduleRunType']
|
17252
17344
|
@ExecutionJobId = params['ExecutionJobId']
|
17253
17345
|
@InstanceRunType = params['InstanceRunType']
|
17346
|
+
@TotalLifeRound = params['TotalLifeRound']
|
17347
|
+
unless params['TaskType'].nil?
|
17348
|
+
@TaskType = TaskTypeOpsDto.new
|
17349
|
+
@TaskType.deserialize(params['TaskType'])
|
17350
|
+
end
|
17254
17351
|
end
|
17255
17352
|
end
|
17256
17353
|
|
@@ -17481,10 +17578,12 @@ module TencentCloud
|
|
17481
17578
|
# @param FileSize: 文件大小
|
17482
17579
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
17483
17580
|
# @type FileSize: String
|
17581
|
+
# @param MatchedBrokerIp: 日志匹配节点信息
|
17582
|
+
# @type MatchedBrokerIp: String
|
17484
17583
|
|
17485
|
-
attr_accessor :LogInfo, :YarnLogInfo, :DataLogInfo, :ThirdTaskRunLogInfo, :ThirdTaskLogUrlDesc, :LineCount, :ExtInfo, :IsEnd, :FileSize
|
17584
|
+
attr_accessor :LogInfo, :YarnLogInfo, :DataLogInfo, :ThirdTaskRunLogInfo, :ThirdTaskLogUrlDesc, :LineCount, :ExtInfo, :IsEnd, :FileSize, :MatchedBrokerIp
|
17486
17585
|
|
17487
|
-
def initialize(loginfo=nil, yarnloginfo=nil, dataloginfo=nil, thirdtaskrunloginfo=nil, thirdtasklogurldesc=nil, linecount=nil, extinfo=nil, isend=nil, filesize=nil)
|
17586
|
+
def initialize(loginfo=nil, yarnloginfo=nil, dataloginfo=nil, thirdtaskrunloginfo=nil, thirdtasklogurldesc=nil, linecount=nil, extinfo=nil, isend=nil, filesize=nil, matchedbrokerip=nil)
|
17488
17587
|
@LogInfo = loginfo
|
17489
17588
|
@YarnLogInfo = yarnloginfo
|
17490
17589
|
@DataLogInfo = dataloginfo
|
@@ -17494,6 +17593,7 @@ module TencentCloud
|
|
17494
17593
|
@ExtInfo = extinfo
|
17495
17594
|
@IsEnd = isend
|
17496
17595
|
@FileSize = filesize
|
17596
|
+
@MatchedBrokerIp = matchedbrokerip
|
17497
17597
|
end
|
17498
17598
|
|
17499
17599
|
def deserialize(params)
|
@@ -17506,6 +17606,7 @@ module TencentCloud
|
|
17506
17606
|
@ExtInfo = params['ExtInfo']
|
17507
17607
|
@IsEnd = params['IsEnd']
|
17508
17608
|
@FileSize = params['FileSize']
|
17609
|
+
@MatchedBrokerIp = params['MatchedBrokerIp']
|
17509
17610
|
end
|
17510
17611
|
end
|
17511
17612
|
|
@@ -19321,10 +19422,15 @@ module TencentCloud
|
|
19321
19422
|
# @param SelfWorkflowDependency: 工作流自依赖类型
|
19322
19423
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
19323
19424
|
# @type SelfWorkflowDependency: String
|
19425
|
+
# @param MakeDataTimeOrder: 补录时间顺序
|
19426
|
+
# NORMAL: 正常
|
19427
|
+
# ORDER : 按照实例时间顺序执行
|
19428
|
+
# REVERSE: 实例数据时间逆序
|
19429
|
+
# @type MakeDataTimeOrder: String
|
19324
19430
|
|
19325
|
-
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
|
19431
|
+
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, :MakeDataTimeOrder
|
19326
19432
|
|
19327
|
-
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)
|
19433
|
+
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, makedatatimeorder=nil)
|
19328
19434
|
@PlanId = planid
|
19329
19435
|
@MakeName = makename
|
19330
19436
|
@ProjectId = projectid
|
@@ -19352,6 +19458,7 @@ module TencentCloud
|
|
19352
19458
|
@CheckParentType = checkparenttype
|
19353
19459
|
@SameSelfWorkflowDependType = sameselfworkflowdependtype
|
19354
19460
|
@SelfWorkflowDependency = selfworkflowdependency
|
19461
|
+
@MakeDataTimeOrder = makedatatimeorder
|
19355
19462
|
end
|
19356
19463
|
|
19357
19464
|
def deserialize(params)
|
@@ -19396,6 +19503,7 @@ module TencentCloud
|
|
19396
19503
|
@CheckParentType = params['CheckParentType']
|
19397
19504
|
@SameSelfWorkflowDependType = params['SameSelfWorkflowDependType']
|
19398
19505
|
@SelfWorkflowDependency = params['SelfWorkflowDependency']
|
19506
|
+
@MakeDataTimeOrder = params['MakeDataTimeOrder']
|
19399
19507
|
end
|
19400
19508
|
end
|
19401
19509
|
|
@@ -24792,10 +24900,24 @@ module TencentCloud
|
|
24792
24900
|
# @type IsCount: Boolean
|
24793
24901
|
# @param AsyncMode: 是否异步模式
|
24794
24902
|
# @type AsyncMode: Boolean
|
24903
|
+
# @param CheckParentType: 是否检查上游任务: ALL(全部)、 MAKE_SCOPE(选中)、NONE (全部不检查)
|
24904
|
+
# @type CheckParentType: String
|
24905
|
+
# @param SameSelfDependType: 任务原有自依赖配置 true(是)、false(否)
|
24906
|
+
# @type SameSelfDependType: Boolean
|
24907
|
+
# @param ParallelNum: 实例运行并发度
|
24908
|
+
# @type ParallelNum: Integer
|
24909
|
+
# @param SameSelfWorkflowDependType: 任务原有自依赖配置 true(是)、false(否)
|
24910
|
+
# @type SameSelfWorkflowDependType: Boolean
|
24911
|
+
# @param SelfWorkflowDependency: 代表重新指定 的 是 或者 否 yes、 no
|
24912
|
+
# @type SelfWorkflowDependency: String
|
24913
|
+
# @param DataTimeOrder: 运行实例数据时间排序 0---正常 1--正序 2 – 逆序
|
24914
|
+
# @type DataTimeOrder: Integer
|
24915
|
+
# @param ReDoParams: 重跑参数
|
24916
|
+
# @type ReDoParams: String
|
24795
24917
|
|
24796
|
-
attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount, :AsyncMode
|
24918
|
+
attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount, :AsyncMode, :CheckParentType, :SameSelfDependType, :ParallelNum, :SameSelfWorkflowDependType, :SelfWorkflowDependency, :DataTimeOrder, :ReDoParams
|
24797
24919
|
|
24798
|
-
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)
|
24920
|
+
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, checkparenttype=nil, sameselfdependtype=nil, parallelnum=nil, sameselfworkflowdependtype=nil, selfworkflowdependency=nil, datatimeorder=nil, redoparams=nil)
|
24799
24921
|
@Instances = instances
|
24800
24922
|
@CheckFather = checkfather
|
24801
24923
|
@RerunType = reruntype
|
@@ -24815,6 +24937,13 @@ module TencentCloud
|
|
24815
24937
|
@RequestBaseInfo = requestbaseinfo
|
24816
24938
|
@IsCount = iscount
|
24817
24939
|
@AsyncMode = asyncmode
|
24940
|
+
@CheckParentType = checkparenttype
|
24941
|
+
@SameSelfDependType = sameselfdependtype
|
24942
|
+
@ParallelNum = parallelnum
|
24943
|
+
@SameSelfWorkflowDependType = sameselfworkflowdependtype
|
24944
|
+
@SelfWorkflowDependency = selfworkflowdependency
|
24945
|
+
@DataTimeOrder = datatimeorder
|
24946
|
+
@ReDoParams = redoparams
|
24818
24947
|
end
|
24819
24948
|
|
24820
24949
|
def deserialize(params)
|
@@ -24850,6 +24979,13 @@ module TencentCloud
|
|
24850
24979
|
end
|
24851
24980
|
@IsCount = params['IsCount']
|
24852
24981
|
@AsyncMode = params['AsyncMode']
|
24982
|
+
@CheckParentType = params['CheckParentType']
|
24983
|
+
@SameSelfDependType = params['SameSelfDependType']
|
24984
|
+
@ParallelNum = params['ParallelNum']
|
24985
|
+
@SameSelfWorkflowDependType = params['SameSelfWorkflowDependType']
|
24986
|
+
@SelfWorkflowDependency = params['SelfWorkflowDependency']
|
24987
|
+
@DataTimeOrder = params['DataTimeOrder']
|
24988
|
+
@ReDoParams = params['ReDoParams']
|
24853
24989
|
end
|
24854
24990
|
end
|
24855
24991
|
|
@@ -30144,10 +30280,13 @@ module TencentCloud
|
|
30144
30280
|
# @param OwnerId: 责任人UserId
|
30145
30281
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
30146
30282
|
# @type OwnerId: String
|
30283
|
+
# @param WorkflowType: 工作流类型,周期cycle,手动manual
|
30284
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30285
|
+
# @type WorkflowType: String
|
30147
30286
|
|
30148
|
-
attr_accessor :WorkflowId, :WorkflowDesc, :WorkflowName, :FolderId, :FolderIds, :Tasks, :Links, :UserGroupId, :UserGroupName, :ProjectId, :ProjectIdent, :ProjectName, :Owner, :OwnerId
|
30287
|
+
attr_accessor :WorkflowId, :WorkflowDesc, :WorkflowName, :FolderId, :FolderIds, :Tasks, :Links, :UserGroupId, :UserGroupName, :ProjectId, :ProjectIdent, :ProjectName, :Owner, :OwnerId, :WorkflowType
|
30149
30288
|
|
30150
|
-
def initialize(workflowid=nil, workflowdesc=nil, workflowname=nil, folderid=nil, folderids=nil, tasks=nil, links=nil, usergroupid=nil, usergroupname=nil, projectid=nil, projectident=nil, projectname=nil, owner=nil, ownerid=nil)
|
30289
|
+
def initialize(workflowid=nil, workflowdesc=nil, workflowname=nil, folderid=nil, folderids=nil, tasks=nil, links=nil, usergroupid=nil, usergroupname=nil, projectid=nil, projectident=nil, projectname=nil, owner=nil, ownerid=nil, workflowtype=nil)
|
30151
30290
|
@WorkflowId = workflowid
|
30152
30291
|
@WorkflowDesc = workflowdesc
|
30153
30292
|
@WorkflowName = workflowname
|
@@ -30162,6 +30301,7 @@ module TencentCloud
|
|
30162
30301
|
@ProjectName = projectname
|
30163
30302
|
@Owner = owner
|
30164
30303
|
@OwnerId = ownerid
|
30304
|
+
@WorkflowType = workflowtype
|
30165
30305
|
end
|
30166
30306
|
|
30167
30307
|
def deserialize(params)
|
@@ -30193,6 +30333,7 @@ module TencentCloud
|
|
30193
30333
|
@ProjectName = params['ProjectName']
|
30194
30334
|
@Owner = params['Owner']
|
30195
30335
|
@OwnerId = params['OwnerId']
|
30336
|
+
@WorkflowType = params['WorkflowType']
|
30196
30337
|
end
|
30197
30338
|
end
|
30198
30339
|
|
@@ -30240,10 +30381,13 @@ module TencentCloud
|
|
30240
30381
|
# @param ModifyTime: 最近更新时间
|
30241
30382
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
30242
30383
|
# @type ModifyTime: String
|
30384
|
+
# @param WorkflowType: 工作流类型,周期cycle,手动manual
|
30385
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30386
|
+
# @type WorkflowType: String
|
30243
30387
|
|
30244
|
-
attr_accessor :TaskCount, :FolderName, :WorkFlowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkFlowDesc, :WorkFlowName, :FolderId, :Status, :CreateTime, :ModifyTime
|
30388
|
+
attr_accessor :TaskCount, :FolderName, :WorkFlowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkFlowDesc, :WorkFlowName, :FolderId, :Status, :CreateTime, :ModifyTime, :WorkflowType
|
30245
30389
|
|
30246
|
-
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)
|
30390
|
+
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)
|
30247
30391
|
@TaskCount = taskcount
|
30248
30392
|
@FolderName = foldername
|
30249
30393
|
@WorkFlowId = workflowid
|
@@ -30258,6 +30402,7 @@ module TencentCloud
|
|
30258
30402
|
@Status = status
|
30259
30403
|
@CreateTime = createtime
|
30260
30404
|
@ModifyTime = modifytime
|
30405
|
+
@WorkflowType = workflowtype
|
30261
30406
|
end
|
30262
30407
|
|
30263
30408
|
def deserialize(params)
|
@@ -30275,6 +30420,7 @@ module TencentCloud
|
|
30275
30420
|
@Status = params['Status']
|
30276
30421
|
@CreateTime = params['CreateTime']
|
30277
30422
|
@ModifyTime = params['ModifyTime']
|
30423
|
+
@WorkflowType = params['WorkflowType']
|
30278
30424
|
end
|
30279
30425
|
end
|
30280
30426
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-wedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.982
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|