tencentcloud-sdk-tat 1.0.206 → 1.0.210

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201028/models.rb +14 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c3d4314ec6c69f54f9e90ec878a271f0f57c21ce
4
- data.tar.gz: 728340bbd6a44ef55c82bfe363b0c144acd05ff2
3
+ metadata.gz: db22caffdee55ad141c955ee35b4afad0f79ed63
4
+ data.tar.gz: a23a57506f2de601c0e28149c4abd5334d8471a3
5
5
  SHA512:
6
- metadata.gz: fb508c80cb21bd905bf63552dc71f7634ad458f5c74169301ce8fb01aefe90e505db4d80657fe82c5fc4bbfed11af34666ed333b2431295c6c9c97c59f177f65
7
- data.tar.gz: efe8c2ee48dea8725a47ff16541c39352252e26f75ad2f0e199ad864d295587180b26500e6c0481a8e7570b2165321ee5de88de1c8dcd3015f39bb59d29cd816
6
+ metadata.gz: 9cbabd5307f4041e802572d5bbb2d8f5d9ab1038a7ddda8c39e2ac253a4bc9f8686b69adfbfa188abb6104e8bb758c6b45f0660463d0ded58ac30b1fb28b3cd4
7
+ data.tar.gz: e8ca4fbfa4f4be77efde849ff67cc1c75df07d93562b5e35f704d7079e7d1dfab2fdfb27a3fe629558164af929636c3ee14e98ddacbf0ad7dde811ace0fdb665
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.206
1
+ 1.0.210
@@ -193,10 +193,17 @@ module TencentCloud
193
193
  # @param Username: 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
194
194
  # 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在Linux实例中以root用户执行命令。
195
195
  # @type Username: String
196
-
197
- attr_accessor :CommandName, :Content, :Description, :CommandType, :WorkingDirectory, :Timeout, :EnableParameter, :DefaultParameters, :Tags, :Username
196
+ # @param OutputCOSBucketUrl: 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
197
+ # @type OutputCOSBucketUrl: String
198
+ # @param OutputCOSKeyPrefix: 指定日志在cos bucket中的目录,目录命名有如下规则:
199
+ # 1. 可用数字、中英文和可见字符的组合,长度最多为60。
200
+ # 2. 用 / 分割路径,可快速创建子目录。
201
+ # 3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称
202
+ # @type OutputCOSKeyPrefix: String
203
+
204
+ attr_accessor :CommandName, :Content, :Description, :CommandType, :WorkingDirectory, :Timeout, :EnableParameter, :DefaultParameters, :Tags, :Username, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
198
205
 
199
- def initialize(commandname=nil, content=nil, description=nil, commandtype=nil, workingdirectory=nil, timeout=nil, enableparameter=nil, defaultparameters=nil, tags=nil, username=nil)
206
+ def initialize(commandname=nil, content=nil, description=nil, commandtype=nil, workingdirectory=nil, timeout=nil, enableparameter=nil, defaultparameters=nil, tags=nil, username=nil, outputcosbucketurl=nil, outputcoskeyprefix=nil)
200
207
  @CommandName = commandname
201
208
  @Content = content
202
209
  @Description = description
@@ -207,6 +214,8 @@ module TencentCloud
207
214
  @DefaultParameters = defaultparameters
208
215
  @Tags = tags
209
216
  @Username = username
217
+ @OutputCOSBucketUrl = outputcosbucketurl
218
+ @OutputCOSKeyPrefix = outputcoskeyprefix
210
219
  end
211
220
 
212
221
  def deserialize(params)
@@ -227,6 +236,8 @@ module TencentCloud
227
236
  end
228
237
  end
229
238
  @Username = params['Username']
239
+ @OutputCOSBucketUrl = params['OutputCOSBucketUrl']
240
+ @OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
230
241
  end
231
242
  end
232
243
 
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: 1.0.206
4
+ version: 1.0.210
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-19 00:00:00.000000000 Z
11
+ date: 2021-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common