tencentcloud-sdk-wedata 3.0.1021 → 3.0.1023
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 +59 -14
- 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: 6425edc9e99dc03b247d9b385636eb93132704bc
|
4
|
+
data.tar.gz: 3cd6e06a0342377ae0ce7bb6dd212883467a0363
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13aaedc8a7145ed9ee2046f651e3665268cf2122e4ed74233b385792cb26278c82049e23fb2c3107b29cacdbdfec424e524d5250b729d49b649cf084add88ef4
|
7
|
+
data.tar.gz: c973da7c6ee965b9cb4cc3d51543676567a0fd0ec8a909dfe8e4c019047a3cfb8058b2ada8ca00656315819ed19ca290bc161385b864e5df00b5ae12e0943631
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1023
|
data/lib/v20210820/models.rb
CHANGED
@@ -3820,19 +3820,23 @@ module TencentCloud
|
|
3820
3820
|
# @type FolderName: String
|
3821
3821
|
# @param ParentsFolderId: 父文件夹ID
|
3822
3822
|
# @type ParentsFolderId: String
|
3823
|
+
# @param FolderForm: 文件夹来源 template管理,orchestrationSpace 编排空间
|
3824
|
+
# @type FolderForm: String
|
3823
3825
|
|
3824
|
-
attr_accessor :ProjectId, :FolderName, :ParentsFolderId
|
3826
|
+
attr_accessor :ProjectId, :FolderName, :ParentsFolderId, :FolderForm
|
3825
3827
|
|
3826
|
-
def initialize(projectid=nil, foldername=nil, parentsfolderid=nil)
|
3828
|
+
def initialize(projectid=nil, foldername=nil, parentsfolderid=nil, folderform=nil)
|
3827
3829
|
@ProjectId = projectid
|
3828
3830
|
@FolderName = foldername
|
3829
3831
|
@ParentsFolderId = parentsfolderid
|
3832
|
+
@FolderForm = folderform
|
3830
3833
|
end
|
3831
3834
|
|
3832
3835
|
def deserialize(params)
|
3833
3836
|
@ProjectId = params['ProjectId']
|
3834
3837
|
@FolderName = params['FolderName']
|
3835
3838
|
@ParentsFolderId = params['ParentsFolderId']
|
3839
|
+
@FolderForm = params['FolderForm']
|
3836
3840
|
end
|
3837
3841
|
end
|
3838
3842
|
|
@@ -8620,10 +8624,20 @@ module TencentCloud
|
|
8620
8624
|
# - cycle 周期工作流
|
8621
8625
|
# - manual 手动工作流
|
8622
8626
|
# @type WorkflowType: String
|
8623
|
-
|
8624
|
-
|
8625
|
-
|
8626
|
-
|
8627
|
+
# @param TaskTypeIdList: 任务类型id列表
|
8628
|
+
# @type TaskTypeIdList: Array
|
8629
|
+
# @param InChargeIdList: 责任人id列表
|
8630
|
+
# @type InChargeIdList: Array
|
8631
|
+
# @param OnlyMe: 自身责任人
|
8632
|
+
# @type OnlyMe: Boolean
|
8633
|
+
# @param IncludeCodeTemplate: 是否包含代码模版
|
8634
|
+
# @type IncludeCodeTemplate: Boolean
|
8635
|
+
# @param FolderForm: 编排空间 或代码模版 orchestrationSpace 编排空间 template模版管理
|
8636
|
+
# @type FolderForm: String
|
8637
|
+
|
8638
|
+
attr_accessor :ProjectId, :FirstLevelPull, :FolderId, :WorkflowId, :Keyword, :IncludeWorkflow, :IncludeTask, :IncludeVirtualTask, :TaskFolderId, :DisplayType, :IncludeTaskFolder, :NewFolderTreeMode, :TaskNodeId, :WorkflowType, :TaskTypeIdList, :InChargeIdList, :OnlyMe, :IncludeCodeTemplate, :FolderForm
|
8639
|
+
|
8640
|
+
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, tasktypeidlist=nil, inchargeidlist=nil, onlyme=nil, includecodetemplate=nil, folderform=nil)
|
8627
8641
|
@ProjectId = projectid
|
8628
8642
|
@FirstLevelPull = firstlevelpull
|
8629
8643
|
@FolderId = folderid
|
@@ -8638,6 +8652,11 @@ module TencentCloud
|
|
8638
8652
|
@NewFolderTreeMode = newfoldertreemode
|
8639
8653
|
@TaskNodeId = tasknodeid
|
8640
8654
|
@WorkflowType = workflowtype
|
8655
|
+
@TaskTypeIdList = tasktypeidlist
|
8656
|
+
@InChargeIdList = inchargeidlist
|
8657
|
+
@OnlyMe = onlyme
|
8658
|
+
@IncludeCodeTemplate = includecodetemplate
|
8659
|
+
@FolderForm = folderform
|
8641
8660
|
end
|
8642
8661
|
|
8643
8662
|
def deserialize(params)
|
@@ -8655,6 +8674,11 @@ module TencentCloud
|
|
8655
8674
|
@NewFolderTreeMode = params['NewFolderTreeMode']
|
8656
8675
|
@TaskNodeId = params['TaskNodeId']
|
8657
8676
|
@WorkflowType = params['WorkflowType']
|
8677
|
+
@TaskTypeIdList = params['TaskTypeIdList']
|
8678
|
+
@InChargeIdList = params['InChargeIdList']
|
8679
|
+
@OnlyMe = params['OnlyMe']
|
8680
|
+
@IncludeCodeTemplate = params['IncludeCodeTemplate']
|
8681
|
+
@FolderForm = params['FolderForm']
|
8658
8682
|
end
|
8659
8683
|
end
|
8660
8684
|
|
@@ -17695,10 +17719,14 @@ module TencentCloud
|
|
17695
17719
|
# @type OnlyRerun: Boolean
|
17696
17720
|
# @param ScheduleTimeZone: 时区
|
17697
17721
|
# @type ScheduleTimeZone: String
|
17722
|
+
# @param ScheduleTimeFrom: 计划调度时间
|
17723
|
+
# @type ScheduleTimeFrom: String
|
17724
|
+
# @param ScheduleTimeTo: 计划调度时间
|
17725
|
+
# @type ScheduleTimeTo: String
|
17698
17726
|
|
17699
|
-
attr_accessor :Instance, :SortCol, :TaskIdList, :TaskNameList, :FolderList, :Sort, :StateList, :TaskTypeList, :CycleList, :OwnerList, :DateFrom, :DateTo, :CreateTimeFrom, :CreateTimeTo, :StartFrom, :StartTo, :WorkflowIdList, :WorkflowNameList, :Keyword, :SearchColumns, :ProjectId, :Limit, :TaskTypeMap, :InstanceType, :DagDeal, :DagType, :DagDependent, :DagDepth, :TenantId, :DataTimeCycle, :ExecutorGroupIdList, :OnlyRerun, :ScheduleTimeZone
|
17727
|
+
attr_accessor :Instance, :SortCol, :TaskIdList, :TaskNameList, :FolderList, :Sort, :StateList, :TaskTypeList, :CycleList, :OwnerList, :DateFrom, :DateTo, :CreateTimeFrom, :CreateTimeTo, :StartFrom, :StartTo, :WorkflowIdList, :WorkflowNameList, :Keyword, :SearchColumns, :ProjectId, :Limit, :TaskTypeMap, :InstanceType, :DagDeal, :DagType, :DagDependent, :DagDepth, :TenantId, :DataTimeCycle, :ExecutorGroupIdList, :OnlyRerun, :ScheduleTimeZone, :ScheduleTimeFrom, :ScheduleTimeTo
|
17700
17728
|
|
17701
|
-
def initialize(instance=nil, sortcol=nil, taskidlist=nil, tasknamelist=nil, folderlist=nil, sort=nil, statelist=nil, tasktypelist=nil, cyclelist=nil, ownerlist=nil, datefrom=nil, dateto=nil, createtimefrom=nil, createtimeto=nil, startfrom=nil, startto=nil, workflowidlist=nil, workflownamelist=nil, keyword=nil, searchcolumns=nil, projectid=nil, limit=nil, tasktypemap=nil, instancetype=nil, dagdeal=nil, dagtype=nil, dagdependent=nil, dagdepth=nil, tenantid=nil, datatimecycle=nil, executorgroupidlist=nil, onlyrerun=nil, scheduletimezone=nil)
|
17729
|
+
def initialize(instance=nil, sortcol=nil, taskidlist=nil, tasknamelist=nil, folderlist=nil, sort=nil, statelist=nil, tasktypelist=nil, cyclelist=nil, ownerlist=nil, datefrom=nil, dateto=nil, createtimefrom=nil, createtimeto=nil, startfrom=nil, startto=nil, workflowidlist=nil, workflownamelist=nil, keyword=nil, searchcolumns=nil, projectid=nil, limit=nil, tasktypemap=nil, instancetype=nil, dagdeal=nil, dagtype=nil, dagdependent=nil, dagdepth=nil, tenantid=nil, datatimecycle=nil, executorgroupidlist=nil, onlyrerun=nil, scheduletimezone=nil, scheduletimefrom=nil, scheduletimeto=nil)
|
17702
17730
|
@Instance = instance
|
17703
17731
|
@SortCol = sortcol
|
17704
17732
|
@TaskIdList = taskidlist
|
@@ -17732,6 +17760,8 @@ module TencentCloud
|
|
17732
17760
|
@ExecutorGroupIdList = executorgroupidlist
|
17733
17761
|
@OnlyRerun = onlyrerun
|
17734
17762
|
@ScheduleTimeZone = scheduletimezone
|
17763
|
+
@ScheduleTimeFrom = scheduletimefrom
|
17764
|
+
@ScheduleTimeTo = scheduletimeto
|
17735
17765
|
end
|
17736
17766
|
|
17737
17767
|
def deserialize(params)
|
@@ -17778,6 +17808,8 @@ module TencentCloud
|
|
17778
17808
|
@ExecutorGroupIdList = params['ExecutorGroupIdList']
|
17779
17809
|
@OnlyRerun = params['OnlyRerun']
|
17780
17810
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
17811
|
+
@ScheduleTimeFrom = params['ScheduleTimeFrom']
|
17812
|
+
@ScheduleTimeTo = params['ScheduleTimeTo']
|
17781
17813
|
end
|
17782
17814
|
end
|
17783
17815
|
|
@@ -20045,10 +20077,13 @@ module TencentCloud
|
|
20045
20077
|
# @type ScheduleTimeZone: String
|
20046
20078
|
# @param AppParam: 执行应用参数
|
20047
20079
|
# @type AppParam: String
|
20080
|
+
# @param TimeType: 补录计划时间范围的类型:
|
20081
|
+
# DATA_TIME:实例数据时间;SCHEDULE_TIME 计划调度时间
|
20082
|
+
# @type TimeType: String
|
20048
20083
|
|
20049
|
-
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, :ScheduleTimeZone, :AppParam
|
20084
|
+
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, :ScheduleTimeZone, :AppParam, :TimeType
|
20050
20085
|
|
20051
|
-
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, scheduletimezone=nil, appparam=nil)
|
20086
|
+
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, scheduletimezone=nil, appparam=nil, timetype=nil)
|
20052
20087
|
@PlanId = planid
|
20053
20088
|
@MakeName = makename
|
20054
20089
|
@ProjectId = projectid
|
@@ -20079,6 +20114,7 @@ module TencentCloud
|
|
20079
20114
|
@MakeDataTimeOrder = makedatatimeorder
|
20080
20115
|
@ScheduleTimeZone = scheduletimezone
|
20081
20116
|
@AppParam = appparam
|
20117
|
+
@TimeType = timetype
|
20082
20118
|
end
|
20083
20119
|
|
20084
20120
|
def deserialize(params)
|
@@ -20126,6 +20162,7 @@ module TencentCloud
|
|
20126
20162
|
@MakeDataTimeOrder = params['MakeDataTimeOrder']
|
20127
20163
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
20128
20164
|
@AppParam = params['AppParam']
|
20165
|
+
@TimeType = params['TimeType']
|
20129
20166
|
end
|
20130
20167
|
end
|
20131
20168
|
|
@@ -20321,10 +20358,12 @@ module TencentCloud
|
|
20321
20358
|
# @param ScheduleTimeZone: 数据实例时间的时区
|
20322
20359
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
20323
20360
|
# @type ScheduleTimeZone: String
|
20361
|
+
# @param TimeType: 时间类型,DATA_TIME:数据时间、SCHEDULE_TIME:计划调度时间, 为空时会被当成DATA_TIME处理
|
20362
|
+
# @type TimeType: String
|
20324
20363
|
|
20325
|
-
attr_accessor :TriggerId, :TriggerName, :Remark, :DatetimeList, :TaskCnt, :InstanceCnt, :FinishedInstanceCnt, :SuccessInstanceCnt, :Status, :TriggerParams, :OwnerUin, :UserUin, :UserName, :TenantId, :ProjectId, :CreateTime, :ScheduleTimeZone
|
20364
|
+
attr_accessor :TriggerId, :TriggerName, :Remark, :DatetimeList, :TaskCnt, :InstanceCnt, :FinishedInstanceCnt, :SuccessInstanceCnt, :Status, :TriggerParams, :OwnerUin, :UserUin, :UserName, :TenantId, :ProjectId, :CreateTime, :ScheduleTimeZone, :TimeType
|
20326
20365
|
|
20327
|
-
def initialize(triggerid=nil, triggername=nil, remark=nil, datetimelist=nil, taskcnt=nil, instancecnt=nil, finishedinstancecnt=nil, successinstancecnt=nil, status=nil, triggerparams=nil, owneruin=nil, useruin=nil, username=nil, tenantid=nil, projectid=nil, createtime=nil, scheduletimezone=nil)
|
20366
|
+
def initialize(triggerid=nil, triggername=nil, remark=nil, datetimelist=nil, taskcnt=nil, instancecnt=nil, finishedinstancecnt=nil, successinstancecnt=nil, status=nil, triggerparams=nil, owneruin=nil, useruin=nil, username=nil, tenantid=nil, projectid=nil, createtime=nil, scheduletimezone=nil, timetype=nil)
|
20328
20367
|
@TriggerId = triggerid
|
20329
20368
|
@TriggerName = triggername
|
20330
20369
|
@Remark = remark
|
@@ -20342,6 +20381,7 @@ module TencentCloud
|
|
20342
20381
|
@ProjectId = projectid
|
20343
20382
|
@CreateTime = createtime
|
20344
20383
|
@ScheduleTimeZone = scheduletimezone
|
20384
|
+
@TimeType = timetype
|
20345
20385
|
end
|
20346
20386
|
|
20347
20387
|
def deserialize(params)
|
@@ -20362,6 +20402,7 @@ module TencentCloud
|
|
20362
20402
|
@ProjectId = params['ProjectId']
|
20363
20403
|
@CreateTime = params['CreateTime']
|
20364
20404
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
20405
|
+
@TimeType = params['TimeType']
|
20365
20406
|
end
|
20366
20407
|
end
|
20367
20408
|
|
@@ -30683,10 +30724,12 @@ module TencentCloud
|
|
30683
30724
|
# @type ExtraParams: String
|
30684
30725
|
# @param ScheduleTimeZone: 实例时间的时区
|
30685
30726
|
# @type ScheduleTimeZone: String
|
30727
|
+
# @param TimeType: 时间类型,DATA_TIME:数据时间、SCHEDULE_TIME:计划调度时间, 为空时会被当成DATA_TIME处理
|
30728
|
+
# @type TimeType: String
|
30686
30729
|
|
30687
|
-
attr_accessor :ProjectId, :TriggerName, :TriggerScope, :DataTimeList, :WorkflowId, :Remark, :TaskIds, :SchedulerResourceGroup, :IntegrationResourceGroup, :ExecOrder, :CustomParams, :ExtraParams, :ScheduleTimeZone
|
30730
|
+
attr_accessor :ProjectId, :TriggerName, :TriggerScope, :DataTimeList, :WorkflowId, :Remark, :TaskIds, :SchedulerResourceGroup, :IntegrationResourceGroup, :ExecOrder, :CustomParams, :ExtraParams, :ScheduleTimeZone, :TimeType
|
30688
30731
|
|
30689
|
-
def initialize(projectid=nil, triggername=nil, triggerscope=nil, datatimelist=nil, workflowid=nil, remark=nil, taskids=nil, schedulerresourcegroup=nil, integrationresourcegroup=nil, execorder=nil, customparams=nil, extraparams=nil, scheduletimezone=nil)
|
30732
|
+
def initialize(projectid=nil, triggername=nil, triggerscope=nil, datatimelist=nil, workflowid=nil, remark=nil, taskids=nil, schedulerresourcegroup=nil, integrationresourcegroup=nil, execorder=nil, customparams=nil, extraparams=nil, scheduletimezone=nil, timetype=nil)
|
30690
30733
|
@ProjectId = projectid
|
30691
30734
|
@TriggerName = triggername
|
30692
30735
|
@TriggerScope = triggerscope
|
@@ -30700,6 +30743,7 @@ module TencentCloud
|
|
30700
30743
|
@CustomParams = customparams
|
30701
30744
|
@ExtraParams = extraparams
|
30702
30745
|
@ScheduleTimeZone = scheduletimezone
|
30746
|
+
@TimeType = timetype
|
30703
30747
|
end
|
30704
30748
|
|
30705
30749
|
def deserialize(params)
|
@@ -30723,6 +30767,7 @@ module TencentCloud
|
|
30723
30767
|
end
|
30724
30768
|
@ExtraParams = params['ExtraParams']
|
30725
30769
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
30770
|
+
@TimeType = params['TimeType']
|
30726
30771
|
end
|
30727
30772
|
end
|
30728
30773
|
|
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.1023
|
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-03-
|
11
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|