tencentcloud-sdk-tat 3.0.511 → 3.0.512

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201028/models.rb +16 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d5671dd9fc664e1418da76c612056cf48850627
4
- data.tar.gz: 8455528c58a2db257d8a0b11ca3908b93c96b2c9
3
+ metadata.gz: 373d8ff58148c64d06d61d77a2cc95dcbdd46737
4
+ data.tar.gz: 248ce7208cfa353411f373656d0266b23adaec69
5
5
  SHA512:
6
- metadata.gz: d47cdfa2031b51a45c524f89b0176bfe4ebab0ff2bceb207c4db09f6257fe38a923ff800fc94698d55381b6fbdcae889dc1492a9a92916d36071f2378d1b8d88
7
- data.tar.gz: 8698a92398f74b09e913f11d6d7bb83f736ad3c1bfb33bed16979113cb9cd31466cb1fd0168a9745d81e72aa29462520cd493299e12b4a21a111291f13c720eb
6
+ metadata.gz: 4006cae8984272fd20dec132dd8d1d700f7032cf032dc344bd2b2ef355aefbe426026502e805d3ba1961d575465fc24ae7f3da5c42a38412a41f28fc7c952514
7
+ data.tar.gz: 60982f1fc9c4334a295bf03685f33bb4f7427c41e8168291b55409ef507a2fe7de72cc527b69220d3e33994b3f534521c533ea6c44c342e04ea28d7226ba7848
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.511
1
+ 3.0.512
@@ -33,15 +33,18 @@ module TencentCloud
33
33
  # <li> Linux:Linux实例
34
34
  # <li> Windows:Windows实例
35
35
  # @type Environment: String
36
+ # @param SupportFeatures: Agent 支持的功能列表。
37
+ # @type SupportFeatures: Array
36
38
 
37
- attr_accessor :InstanceId, :Version, :LastHeartbeatTime, :AgentStatus, :Environment
39
+ attr_accessor :InstanceId, :Version, :LastHeartbeatTime, :AgentStatus, :Environment, :SupportFeatures
38
40
 
39
- def initialize(instanceid=nil, version=nil, lastheartbeattime=nil, agentstatus=nil, environment=nil)
41
+ def initialize(instanceid=nil, version=nil, lastheartbeattime=nil, agentstatus=nil, environment=nil, supportfeatures=nil)
40
42
  @InstanceId = instanceid
41
43
  @Version = version
42
44
  @LastHeartbeatTime = lastheartbeattime
43
45
  @AgentStatus = agentstatus
44
46
  @Environment = environment
47
+ @SupportFeatures = supportfeatures
45
48
  end
46
49
 
47
50
  def deserialize(params)
@@ -50,6 +53,7 @@ module TencentCloud
50
53
  @LastHeartbeatTime = params['LastHeartbeatTime']
51
54
  @AgentStatus = params['AgentStatus']
52
55
  @Environment = params['Environment']
56
+ @SupportFeatures = params['SupportFeatures']
53
57
  end
54
58
  end
55
59
 
@@ -190,15 +194,21 @@ module TencentCloud
190
194
  # @type WorkingDirectory: String
191
195
  # @param Username: 执行用户。
192
196
  # @type Username: String
197
+ # @param OutputCOSBucketUrl: 保存输出的 COS Bucket 链接。
198
+ # @type OutputCOSBucketUrl: String
199
+ # @param OutputCOSKeyPrefix: 保存输出的文件名称前缀。
200
+ # @type OutputCOSKeyPrefix: String
193
201
 
194
- attr_accessor :Content, :CommandType, :Timeout, :WorkingDirectory, :Username
202
+ attr_accessor :Content, :CommandType, :Timeout, :WorkingDirectory, :Username, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
195
203
 
196
- def initialize(content=nil, commandtype=nil, timeout=nil, workingdirectory=nil, username=nil)
204
+ def initialize(content=nil, commandtype=nil, timeout=nil, workingdirectory=nil, username=nil, outputcosbucketurl=nil, outputcoskeyprefix=nil)
197
205
  @Content = content
198
206
  @CommandType = commandtype
199
207
  @Timeout = timeout
200
208
  @WorkingDirectory = workingdirectory
201
209
  @Username = username
210
+ @OutputCOSBucketUrl = outputcosbucketurl
211
+ @OutputCOSKeyPrefix = outputcoskeyprefix
202
212
  end
203
213
 
204
214
  def deserialize(params)
@@ -207,6 +217,8 @@ module TencentCloud
207
217
  @Timeout = params['Timeout']
208
218
  @WorkingDirectory = params['WorkingDirectory']
209
219
  @Username = params['Username']
220
+ @OutputCOSBucketUrl = params['OutputCOSBucketUrl']
221
+ @OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
210
222
  end
211
223
  end
212
224
 
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.511
4
+ version: 3.0.512
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-02-17 00:00:00.000000000 Z
11
+ date: 2023-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common