tencentcloud-sdk-tat 1.0.207 → 1.0.211
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 +14 -3
- 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: 3ec4e75ad37e34ba76fcf9ed1c7aab7697955961
|
4
|
+
data.tar.gz: 4f2fdb348bd7c82dfa97d4cb1c2fe475847976c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78fa476a1f62da7a3b46092450373368592e6b94c219e40ded9bae041e5d01266f38ebbb15e7b86ac74641fdc5666430095fa522e21e56d78805ec2cdf733051
|
7
|
+
data.tar.gz: d144ee5247c0eb03d48110afef008f1bbdf7cbbe588bd9991f4e29e5b4dff947afde322bafb6caabb7355f6d063e152a6e58fcd3d4fb8c8024227f1a2c5927ea
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.211
|
data/lib/v20201028/models.rb
CHANGED
@@ -193,10 +193,17 @@ module TencentCloud
|
|
193
193
|
# @param Username: 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
|
194
194
|
# 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在Linux实例中以root用户执行命令。
|
195
195
|
# @type Username: String
|
196
|
-
|
197
|
-
|
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.
|
4
|
+
version: 1.0.211
|
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-
|
11
|
+
date: 2021-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|