tencentcloud-sdk-wedata 3.0.831 → 3.0.832
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/client.rb +1 -1
- data/lib/v20210820/models.rb +83 -20
- 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: ecee8866ad1e41e7e09d887cff5df5ef9180867f
|
4
|
+
data.tar.gz: 810225cf97d17f86aa79bde726ba9dbfcfcdd9d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a3ba562e20bbce81940ba1da7235ad741537828dcd5d909c387eb68e18432a319bdfcafdabf286ca7fb04b48c65cac350fc66eab20632210dbaa8889e9f8ccb
|
7
|
+
data.tar.gz: 42762cb442309fa0c2c4a2e6de3ce0b674e97a8a2a8d644b6627eea8c1e2bfa27a4828bdd333f2aa2ee6d15464f3f3d7f690dfc8333ffc595c0033cf8b02366d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.832
|
data/lib/v20210820/client.rb
CHANGED
@@ -4064,7 +4064,7 @@ module TencentCloud
|
|
4064
4064
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4065
4065
|
end
|
4066
4066
|
|
4067
|
-
#
|
4067
|
+
# 任务运维-批量暂停任务
|
4068
4068
|
|
4069
4069
|
# @param request: Request instance for FreezeOpsTasks.
|
4070
4070
|
# @type request: :class:`Tencentcloud::wedata::V20210820::FreezeOpsTasksRequest`
|
data/lib/v20210820/models.rb
CHANGED
@@ -1644,17 +1644,21 @@ module TencentCloud
|
|
1644
1644
|
# @type TaskIdList: Array
|
1645
1645
|
# @param ProjectId: 项目Id
|
1646
1646
|
# @type ProjectId: String
|
1647
|
+
# @param KillInstance: 是否终止已生成的实例
|
1648
|
+
# @type KillInstance: Boolean
|
1647
1649
|
|
1648
|
-
attr_accessor :TaskIdList, :ProjectId
|
1650
|
+
attr_accessor :TaskIdList, :ProjectId, :KillInstance
|
1649
1651
|
|
1650
|
-
def initialize(taskidlist=nil, projectid=nil)
|
1652
|
+
def initialize(taskidlist=nil, projectid=nil, killinstance=nil)
|
1651
1653
|
@TaskIdList = taskidlist
|
1652
1654
|
@ProjectId = projectid
|
1655
|
+
@KillInstance = killinstance
|
1653
1656
|
end
|
1654
1657
|
|
1655
1658
|
def deserialize(params)
|
1656
1659
|
@TaskIdList = params['TaskIdList']
|
1657
1660
|
@ProjectId = params['ProjectId']
|
1661
|
+
@KillInstance = params['KillInstance']
|
1658
1662
|
end
|
1659
1663
|
end
|
1660
1664
|
|
@@ -1687,17 +1691,21 @@ module TencentCloud
|
|
1687
1691
|
# @type WorkflowIds: Array
|
1688
1692
|
# @param ProjectId: 项目id
|
1689
1693
|
# @type ProjectId: String
|
1694
|
+
# @param KillInstance: 是否终止已生成的实例
|
1695
|
+
# @type KillInstance: Boolean
|
1690
1696
|
|
1691
|
-
attr_accessor :WorkflowIds, :ProjectId
|
1697
|
+
attr_accessor :WorkflowIds, :ProjectId, :KillInstance
|
1692
1698
|
|
1693
|
-
def initialize(workflowids=nil, projectid=nil)
|
1699
|
+
def initialize(workflowids=nil, projectid=nil, killinstance=nil)
|
1694
1700
|
@WorkflowIds = workflowids
|
1695
1701
|
@ProjectId = projectid
|
1702
|
+
@KillInstance = killinstance
|
1696
1703
|
end
|
1697
1704
|
|
1698
1705
|
def deserialize(params)
|
1699
1706
|
@WorkflowIds = params['WorkflowIds']
|
1700
1707
|
@ProjectId = params['ProjectId']
|
1708
|
+
@KillInstance = params['KillInstance']
|
1701
1709
|
end
|
1702
1710
|
end
|
1703
1711
|
|
@@ -3321,10 +3329,12 @@ module TencentCloud
|
|
3321
3329
|
# @type Type: String
|
3322
3330
|
# @param Incharge: 责任人
|
3323
3331
|
# @type Incharge: String
|
3332
|
+
# @param SchemaName: schema名称
|
3333
|
+
# @type SchemaName: String
|
3324
3334
|
|
3325
|
-
attr_accessor :DatasourceId, :Database, :DDLSql, :Privilege, :ProjectId, :Type, :Incharge
|
3335
|
+
attr_accessor :DatasourceId, :Database, :DDLSql, :Privilege, :ProjectId, :Type, :Incharge, :SchemaName
|
3326
3336
|
|
3327
|
-
def initialize(datasourceid=nil, database=nil, ddlsql=nil, privilege=nil, projectid=nil, type=nil, incharge=nil)
|
3337
|
+
def initialize(datasourceid=nil, database=nil, ddlsql=nil, privilege=nil, projectid=nil, type=nil, incharge=nil, schemaname=nil)
|
3328
3338
|
@DatasourceId = datasourceid
|
3329
3339
|
@Database = database
|
3330
3340
|
@DDLSql = ddlsql
|
@@ -3332,6 +3342,7 @@ module TencentCloud
|
|
3332
3342
|
@ProjectId = projectid
|
3333
3343
|
@Type = type
|
3334
3344
|
@Incharge = incharge
|
3345
|
+
@SchemaName = schemaname
|
3335
3346
|
end
|
3336
3347
|
|
3337
3348
|
def deserialize(params)
|
@@ -3342,6 +3353,7 @@ module TencentCloud
|
|
3342
3353
|
@ProjectId = params['ProjectId']
|
3343
3354
|
@Type = params['Type']
|
3344
3355
|
@Incharge = params['Incharge']
|
3356
|
+
@SchemaName = params['SchemaName']
|
3345
3357
|
end
|
3346
3358
|
end
|
3347
3359
|
|
@@ -4800,10 +4812,13 @@ module TencentCloud
|
|
4800
4812
|
# @param ParamsString: 数据源附带参数信息Params json字符串
|
4801
4813
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4802
4814
|
# @type ParamsString: String
|
4815
|
+
# @param Category: 区分数据源类型自定义源还是系统源
|
4816
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4817
|
+
# @type Category: String
|
4803
4818
|
|
4804
|
-
attr_accessor :DatabaseNames, :Description, :ID, :Instance, :Name, :Region, :Type, :ClusterId, :Version, :ParamsString
|
4819
|
+
attr_accessor :DatabaseNames, :Description, :ID, :Instance, :Name, :Region, :Type, :ClusterId, :Version, :ParamsString, :Category
|
4805
4820
|
|
4806
|
-
def initialize(databasenames=nil, description=nil, id=nil, instance=nil, name=nil, region=nil, type=nil, clusterid=nil, version=nil, paramsstring=nil)
|
4821
|
+
def initialize(databasenames=nil, description=nil, id=nil, instance=nil, name=nil, region=nil, type=nil, clusterid=nil, version=nil, paramsstring=nil, category=nil)
|
4807
4822
|
@DatabaseNames = databasenames
|
4808
4823
|
@Description = description
|
4809
4824
|
@ID = id
|
@@ -4814,6 +4829,7 @@ module TencentCloud
|
|
4814
4829
|
@ClusterId = clusterid
|
4815
4830
|
@Version = version
|
4816
4831
|
@ParamsString = paramsstring
|
4832
|
+
@Category = category
|
4817
4833
|
end
|
4818
4834
|
|
4819
4835
|
def deserialize(params)
|
@@ -4827,6 +4843,7 @@ module TencentCloud
|
|
4827
4843
|
@ClusterId = params['ClusterId']
|
4828
4844
|
@Version = params['Version']
|
4829
4845
|
@ParamsString = params['ParamsString']
|
4846
|
+
@Category = params['Category']
|
4830
4847
|
end
|
4831
4848
|
end
|
4832
4849
|
|
@@ -8968,10 +8985,14 @@ module TencentCloud
|
|
8968
8985
|
# @type TaskTags: Array
|
8969
8986
|
# @param KeyWord: 查询关键字
|
8970
8987
|
# @type KeyWord: String
|
8988
|
+
# @param InitStrategy: 实例生成方式
|
8989
|
+
# @type InitStrategy: String
|
8990
|
+
# @param RequestResourceTypes: 额外请求的资源类型
|
8991
|
+
# @type RequestResourceTypes: Array
|
8971
8992
|
|
8972
|
-
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
|
8993
|
+
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
|
8973
8994
|
|
8974
|
-
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)
|
8995
|
+
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)
|
8975
8996
|
@ProjectId = projectid
|
8976
8997
|
@FolderIdList = folderidlist
|
8977
8998
|
@WorkFlowIdList = workflowidlist
|
@@ -8995,6 +9016,8 @@ module TencentCloud
|
|
8995
9016
|
@ExecutorGroupIdList = executorgroupidlist
|
8996
9017
|
@TaskTags = tasktags
|
8997
9018
|
@KeyWord = keyword
|
9019
|
+
@InitStrategy = initstrategy
|
9020
|
+
@RequestResourceTypes = requestresourcetypes
|
8998
9021
|
end
|
8999
9022
|
|
9000
9023
|
def deserialize(params)
|
@@ -9028,6 +9051,8 @@ module TencentCloud
|
|
9028
9051
|
end
|
9029
9052
|
end
|
9030
9053
|
@KeyWord = params['KeyWord']
|
9054
|
+
@InitStrategy = params['InitStrategy']
|
9055
|
+
@RequestResourceTypes = params['RequestResourceTypes']
|
9031
9056
|
end
|
9032
9057
|
end
|
9033
9058
|
|
@@ -14182,12 +14207,15 @@ module TencentCloud
|
|
14182
14207
|
# @type Tasks: Array
|
14183
14208
|
# @param OperateIsInform: 任务操作是否消息通知下游任务责任人
|
14184
14209
|
# @type OperateIsInform: Boolean
|
14210
|
+
# @param KillInstance: 是否终止已生成的实例
|
14211
|
+
# @type KillInstance: Boolean
|
14185
14212
|
|
14186
|
-
attr_accessor :Tasks, :OperateIsInform
|
14213
|
+
attr_accessor :Tasks, :OperateIsInform, :KillInstance
|
14187
14214
|
|
14188
|
-
def initialize(tasks=nil, operateisinform=nil)
|
14215
|
+
def initialize(tasks=nil, operateisinform=nil, killinstance=nil)
|
14189
14216
|
@Tasks = tasks
|
14190
14217
|
@OperateIsInform = operateisinform
|
14218
|
+
@KillInstance = killinstance
|
14191
14219
|
end
|
14192
14220
|
|
14193
14221
|
def deserialize(params)
|
@@ -14200,6 +14228,7 @@ module TencentCloud
|
|
14200
14228
|
end
|
14201
14229
|
end
|
14202
14230
|
@OperateIsInform = params['OperateIsInform']
|
14231
|
+
@KillInstance = params['KillInstance']
|
14203
14232
|
end
|
14204
14233
|
end
|
14205
14234
|
|
@@ -14229,17 +14258,21 @@ module TencentCloud
|
|
14229
14258
|
# @type WorkflowIds: Array
|
14230
14259
|
# @param ProjectId: 项目id
|
14231
14260
|
# @type ProjectId: String
|
14261
|
+
# @param KillInstance: 是否终止已生成的实例
|
14262
|
+
# @type KillInstance: Boolean
|
14232
14263
|
|
14233
|
-
attr_accessor :WorkflowIds, :ProjectId
|
14264
|
+
attr_accessor :WorkflowIds, :ProjectId, :KillInstance
|
14234
14265
|
|
14235
|
-
def initialize(workflowids=nil, projectid=nil)
|
14266
|
+
def initialize(workflowids=nil, projectid=nil, killinstance=nil)
|
14236
14267
|
@WorkflowIds = workflowids
|
14237
14268
|
@ProjectId = projectid
|
14269
|
+
@KillInstance = killinstance
|
14238
14270
|
end
|
14239
14271
|
|
14240
14272
|
def deserialize(params)
|
14241
14273
|
@WorkflowIds = params['WorkflowIds']
|
14242
14274
|
@ProjectId = params['ProjectId']
|
14275
|
+
@KillInstance = params['KillInstance']
|
14243
14276
|
end
|
14244
14277
|
end
|
14245
14278
|
|
@@ -15540,10 +15573,16 @@ module TencentCloud
|
|
15540
15573
|
# @param RetryAttempts: 自动重试次数
|
15541
15574
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
15542
15575
|
# @type RetryAttempts: Integer
|
15576
|
+
# @param DeletedFatherList: 紧急去除的依赖父实例列表
|
15577
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15578
|
+
# @type DeletedFatherList: Array
|
15579
|
+
# @param CirculateInstanceList: 循环依赖关联的实例
|
15580
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15581
|
+
# @type CirculateInstanceList: Array
|
15543
15582
|
|
15544
|
-
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
|
15583
|
+
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
|
15545
15584
|
|
15546
|
-
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)
|
15585
|
+
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)
|
15547
15586
|
@TaskId = taskid
|
15548
15587
|
@TaskName = taskname
|
15549
15588
|
@WorkflowId = workflowid
|
@@ -15604,6 +15643,8 @@ module TencentCloud
|
|
15604
15643
|
@UserId = userid
|
15605
15644
|
@InstanceLifeCycleOpsDto = instancelifecycleopsdto
|
15606
15645
|
@RetryAttempts = retryattempts
|
15646
|
+
@DeletedFatherList = deletedfatherlist
|
15647
|
+
@CirculateInstanceList = circulateinstancelist
|
15607
15648
|
end
|
15608
15649
|
|
15609
15650
|
def deserialize(params)
|
@@ -15680,6 +15721,15 @@ module TencentCloud
|
|
15680
15721
|
@InstanceLifeCycleOpsDto.deserialize(params['InstanceLifeCycleOpsDto'])
|
15681
15722
|
end
|
15682
15723
|
@RetryAttempts = params['RetryAttempts']
|
15724
|
+
@DeletedFatherList = params['DeletedFatherList']
|
15725
|
+
unless params['CirculateInstanceList'].nil?
|
15726
|
+
@CirculateInstanceList = []
|
15727
|
+
params['CirculateInstanceList'].each do |i|
|
15728
|
+
instanceopsdto_tmp = InstanceOpsDto.new
|
15729
|
+
instanceopsdto_tmp.deserialize(i)
|
15730
|
+
@CirculateInstanceList << instanceopsdto_tmp
|
15731
|
+
end
|
15732
|
+
end
|
15683
15733
|
end
|
15684
15734
|
end
|
15685
15735
|
|
@@ -18988,12 +19038,16 @@ module TencentCloud
|
|
18988
19038
|
# @type TasksList: Array
|
18989
19039
|
# @param LinksList: 画布任务链接信息
|
18990
19040
|
# @type LinksList: Array
|
19041
|
+
# @param CirculateTaskList: 画布循环依赖任务信息
|
19042
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
19043
|
+
# @type CirculateTaskList: :class:`Tencentcloud::Wedata.v20210820.models.OpsTaskCanvasDto`
|
18991
19044
|
|
18992
|
-
attr_accessor :TasksList, :LinksList
|
19045
|
+
attr_accessor :TasksList, :LinksList, :CirculateTaskList
|
18993
19046
|
|
18994
|
-
def initialize(taskslist=nil, linkslist=nil)
|
19047
|
+
def initialize(taskslist=nil, linkslist=nil, circulatetasklist=nil)
|
18995
19048
|
@TasksList = taskslist
|
18996
19049
|
@LinksList = linkslist
|
19050
|
+
@CirculateTaskList = circulatetasklist
|
18997
19051
|
end
|
18998
19052
|
|
18999
19053
|
def deserialize(params)
|
@@ -19013,6 +19067,10 @@ module TencentCloud
|
|
19013
19067
|
@LinksList << opstasklinkinfodto_tmp
|
19014
19068
|
end
|
19015
19069
|
end
|
19070
|
+
unless params['CirculateTaskList'].nil?
|
19071
|
+
@CirculateTaskList = OpsTaskCanvasDto.new
|
19072
|
+
@CirculateTaskList.deserialize(params['CirculateTaskList'])
|
19073
|
+
end
|
19016
19074
|
end
|
19017
19075
|
end
|
19018
19076
|
|
@@ -19069,14 +19127,18 @@ module TencentCloud
|
|
19069
19127
|
# @type LinkType: String
|
19070
19128
|
# @param LinkId: 依赖边id
|
19071
19129
|
# @type LinkId: String
|
19130
|
+
# @param LinkStyle: 为了区分新增的循环依赖新增的类型。默认是normal,循环依赖则是circulate
|
19131
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
19132
|
+
# @type LinkStyle: String
|
19072
19133
|
|
19073
|
-
attr_accessor :TaskTo, :TaskFrom, :LinkType, :LinkId
|
19134
|
+
attr_accessor :TaskTo, :TaskFrom, :LinkType, :LinkId, :LinkStyle
|
19074
19135
|
|
19075
|
-
def initialize(taskto=nil, taskfrom=nil, linktype=nil, linkid=nil)
|
19136
|
+
def initialize(taskto=nil, taskfrom=nil, linktype=nil, linkid=nil, linkstyle=nil)
|
19076
19137
|
@TaskTo = taskto
|
19077
19138
|
@TaskFrom = taskfrom
|
19078
19139
|
@LinkType = linktype
|
19079
19140
|
@LinkId = linkid
|
19141
|
+
@LinkStyle = linkstyle
|
19080
19142
|
end
|
19081
19143
|
|
19082
19144
|
def deserialize(params)
|
@@ -19084,6 +19146,7 @@ module TencentCloud
|
|
19084
19146
|
@TaskFrom = params['TaskFrom']
|
19085
19147
|
@LinkType = params['LinkType']
|
19086
19148
|
@LinkId = params['LinkId']
|
19149
|
+
@LinkStyle = params['LinkStyle']
|
19087
19150
|
end
|
19088
19151
|
end
|
19089
19152
|
|
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.832
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|