tencentcloud-sdk-wedata 3.0.685 → 3.0.686
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 +33 -2
- 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: 9e84c272aeb6c8b44ef0239ca43a89e7a3b97fac
|
4
|
+
data.tar.gz: ae98d7f14ec5adf2a1819160450d39df566a1beb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09b6c721edc5fbd9af700faaa7b7020fc7021e73d503b3ec86ac25ce4dbde01ab3bec8ac225b8275345c6849f0fdfeb6e561d448f1f27d4104e62b08a18a6955
|
7
|
+
data.tar.gz: e33f5fa4bf4027ebc2bd062154bb62004cc8232f8647c2dc8d7b0ea85c9ee30a128829b1b91191d31d6e3cce540e9b900694ffa6ff19e70a7fb3916e2cd50cd2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.686
|
data/lib/v20210820/models.rb
CHANGED
@@ -11394,10 +11394,12 @@ module TencentCloud
|
|
11394
11394
|
# @type AlarmType: String
|
11395
11395
|
# @param ExecutorGroupIdList: 资源组id,多个资源组id之间以英文字符逗号分隔
|
11396
11396
|
# @type ExecutorGroupIdList: String
|
11397
|
+
# @param TaskTags: 任务标签
|
11398
|
+
# @type TaskTags: Array
|
11397
11399
|
|
11398
|
-
attr_accessor :ProjectId, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :PageNumber, :PageSize, :SortItem, :SortType, :InChargeList, :TaskTypeIdList, :StatusList, :TaskCycleUnitList, :ProductNameList, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :ExecutorGroupIdList
|
11400
|
+
attr_accessor :ProjectId, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :PageNumber, :PageSize, :SortItem, :SortType, :InChargeList, :TaskTypeIdList, :StatusList, :TaskCycleUnitList, :ProductNameList, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :ExecutorGroupIdList, :TaskTags
|
11399
11401
|
|
11400
|
-
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)
|
11402
|
+
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)
|
11401
11403
|
@ProjectId = projectid
|
11402
11404
|
@FolderIdList = folderidlist
|
11403
11405
|
@WorkFlowIdList = workflowidlist
|
@@ -11419,6 +11421,7 @@ module TencentCloud
|
|
11419
11421
|
@TargetServiceType = targetservicetype
|
11420
11422
|
@AlarmType = alarmtype
|
11421
11423
|
@ExecutorGroupIdList = executorgroupidlist
|
11424
|
+
@TaskTags = tasktags
|
11422
11425
|
end
|
11423
11426
|
|
11424
11427
|
def deserialize(params)
|
@@ -11443,6 +11446,14 @@ module TencentCloud
|
|
11443
11446
|
@TargetServiceType = params['TargetServiceType']
|
11444
11447
|
@AlarmType = params['AlarmType']
|
11445
11448
|
@ExecutorGroupIdList = params['ExecutorGroupIdList']
|
11449
|
+
unless params['TaskTags'].nil?
|
11450
|
+
@TaskTags = []
|
11451
|
+
params['TaskTags'].each do |i|
|
11452
|
+
tasktag_tmp = TaskTag.new
|
11453
|
+
tasktag_tmp.deserialize(i)
|
11454
|
+
@TaskTags << tasktag_tmp
|
11455
|
+
end
|
11456
|
+
end
|
11446
11457
|
end
|
11447
11458
|
end
|
11448
11459
|
|
@@ -30737,6 +30748,26 @@ module TencentCloud
|
|
30737
30748
|
end
|
30738
30749
|
end
|
30739
30750
|
|
30751
|
+
# 任务标签,可用于检索任务的条件
|
30752
|
+
class TaskTag < TencentCloud::Common::AbstractModel
|
30753
|
+
# @param TagName: 标签名称
|
30754
|
+
# @type TagName: String
|
30755
|
+
# @param TagValues: 标签值列表
|
30756
|
+
# @type TagValues: Array
|
30757
|
+
|
30758
|
+
attr_accessor :TagName, :TagValues
|
30759
|
+
|
30760
|
+
def initialize(tagname=nil, tagvalues=nil)
|
30761
|
+
@TagName = tagname
|
30762
|
+
@TagValues = tagvalues
|
30763
|
+
end
|
30764
|
+
|
30765
|
+
def deserialize(params)
|
30766
|
+
@TagName = params['TagName']
|
30767
|
+
@TagValues = params['TagValues']
|
30768
|
+
end
|
30769
|
+
end
|
30770
|
+
|
30740
30771
|
# TaskTypeCnt
|
30741
30772
|
class TaskTypeCnt < TencentCloud::Common::AbstractModel
|
30742
30773
|
# @param Number: 统计值
|
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.686
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|