tencentcloud-sdk-tat 3.0.1108 → 3.0.1162
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/v20201028/models.rb +19 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 802944ea2d1bbbe9dc681a98e771ce7af3eb1350
|
|
4
|
+
data.tar.gz: aa9317230ea4be246092f7bbb529f2b67d578c3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d2f7b0730c8b829abd2a13cfbe602ca3ffa033d9515a81fa22be155756fd047dc95320a91ff4d0570921f688e5a8141bff98986b69e0bc162f521be95f22bb2
|
|
7
|
+
data.tar.gz: 99f797eda719e618e4eb5ffc013b5a4068b1c220f60145c2e143356475e1d06acec35d43d7ee105bd34791ce896331eaec6e36a16cd1179d595b438c3d95f80e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1162
|
data/lib/v20201028/models.rb
CHANGED
|
@@ -383,10 +383,12 @@ module TencentCloud
|
|
|
383
383
|
|
|
384
384
|
# 当执行器类型为 `SCHEDULE` 时,必须指定此参数。
|
|
385
385
|
# @type ScheduleSettings: :class:`Tencentcloud::Tat.v20201028.models.ScheduleSettings`
|
|
386
|
+
# @param Tags: 为命令关联的标签,列表长度不超过10
|
|
387
|
+
# @type Tags: Array
|
|
386
388
|
|
|
387
|
-
attr_accessor :Name, :Type, :CommandId, :InstanceIds, :Username, :Parameters, :ScheduleSettings
|
|
389
|
+
attr_accessor :Name, :Type, :CommandId, :InstanceIds, :Username, :Parameters, :ScheduleSettings, :Tags
|
|
388
390
|
|
|
389
|
-
def initialize(name=nil, type=nil, commandid=nil, instanceids=nil, username=nil, parameters=nil, schedulesettings=nil)
|
|
391
|
+
def initialize(name=nil, type=nil, commandid=nil, instanceids=nil, username=nil, parameters=nil, schedulesettings=nil, tags=nil)
|
|
390
392
|
@Name = name
|
|
391
393
|
@Type = type
|
|
392
394
|
@CommandId = commandid
|
|
@@ -394,6 +396,7 @@ module TencentCloud
|
|
|
394
396
|
@Username = username
|
|
395
397
|
@Parameters = parameters
|
|
396
398
|
@ScheduleSettings = schedulesettings
|
|
399
|
+
@Tags = tags
|
|
397
400
|
end
|
|
398
401
|
|
|
399
402
|
def deserialize(params)
|
|
@@ -407,6 +410,14 @@ module TencentCloud
|
|
|
407
410
|
@ScheduleSettings = ScheduleSettings.new
|
|
408
411
|
@ScheduleSettings.deserialize(params['ScheduleSettings'])
|
|
409
412
|
end
|
|
413
|
+
unless params['Tags'].nil?
|
|
414
|
+
@Tags = []
|
|
415
|
+
params['Tags'].each do |i|
|
|
416
|
+
tag_tmp = Tag.new
|
|
417
|
+
tag_tmp.deserialize(i)
|
|
418
|
+
@Tags << tag_tmp
|
|
419
|
+
end
|
|
420
|
+
end
|
|
410
421
|
end
|
|
411
422
|
end
|
|
412
423
|
|
|
@@ -1802,10 +1813,12 @@ module TencentCloud
|
|
|
1802
1813
|
# - USER:来源于用户调用。
|
|
1803
1814
|
# - INVOKER:来源于定时执行。
|
|
1804
1815
|
# @type InvocationSource: String
|
|
1816
|
+
# @param CommandName: 执行的命令的名称。
|
|
1817
|
+
# @type CommandName: String
|
|
1805
1818
|
|
|
1806
|
-
attr_accessor :InvocationId, :InvocationTaskId, :CommandId, :TaskStatus, :InstanceId, :TaskResult, :StartTime, :EndTime, :CreatedTime, :UpdatedTime, :CommandDocument, :ErrorInfo, :InvocationSource
|
|
1819
|
+
attr_accessor :InvocationId, :InvocationTaskId, :CommandId, :TaskStatus, :InstanceId, :TaskResult, :StartTime, :EndTime, :CreatedTime, :UpdatedTime, :CommandDocument, :ErrorInfo, :InvocationSource, :CommandName
|
|
1807
1820
|
|
|
1808
|
-
def initialize(invocationid=nil, invocationtaskid=nil, commandid=nil, taskstatus=nil, instanceid=nil, taskresult=nil, starttime=nil, endtime=nil, createdtime=nil, updatedtime=nil, commanddocument=nil, errorinfo=nil, invocationsource=nil)
|
|
1821
|
+
def initialize(invocationid=nil, invocationtaskid=nil, commandid=nil, taskstatus=nil, instanceid=nil, taskresult=nil, starttime=nil, endtime=nil, createdtime=nil, updatedtime=nil, commanddocument=nil, errorinfo=nil, invocationsource=nil, commandname=nil)
|
|
1809
1822
|
@InvocationId = invocationid
|
|
1810
1823
|
@InvocationTaskId = invocationtaskid
|
|
1811
1824
|
@CommandId = commandid
|
|
@@ -1819,6 +1832,7 @@ module TencentCloud
|
|
|
1819
1832
|
@CommandDocument = commanddocument
|
|
1820
1833
|
@ErrorInfo = errorinfo
|
|
1821
1834
|
@InvocationSource = invocationsource
|
|
1835
|
+
@CommandName = commandname
|
|
1822
1836
|
end
|
|
1823
1837
|
|
|
1824
1838
|
def deserialize(params)
|
|
@@ -1841,6 +1855,7 @@ module TencentCloud
|
|
|
1841
1855
|
end
|
|
1842
1856
|
@ErrorInfo = params['ErrorInfo']
|
|
1843
1857
|
@InvocationSource = params['InvocationSource']
|
|
1858
|
+
@CommandName = params['CommandName']
|
|
1844
1859
|
end
|
|
1845
1860
|
end
|
|
1846
1861
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1162
|
|
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-
|
|
11
|
+
date: 2025-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-tat.rb
|
|
36
37
|
- lib/v20201028/client.rb
|
|
37
38
|
- lib/v20201028/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-tat.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|