tencentcloud-sdk-tat 1.0.214 → 1.0.215
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 +39 -6
- 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: d98e5d63a204c86bef53616d56ec5fbe6a757a91
|
4
|
+
data.tar.gz: f7a297eb3d2a9a39f584fa44637965d8efa908ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c227b478de255ba059a748e8ac9a0e4b84e5fc8199047c7b41cbcc450518546a8ff112b048ad0ed7e42e49d709eab64b531b23e8d5a2d1f49f983bdfb6f0a6f
|
7
|
+
data.tar.gz: 125b7753d981ee4293fdb0ff6424f73c593cc7befc6ce6e2a9a83a8e3fef0e351e83514ae034fbcfe76c79fe26998ba9eae7d3a111bf4b9b3695ef755af4c22b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.215
|
data/lib/v20201028/models.rb
CHANGED
@@ -1160,16 +1160,25 @@ module TencentCloud
|
|
1160
1160
|
# @type WorkingDirectory: String
|
1161
1161
|
# @param Timeout: 命令超时时间,取值范围[1, 86400]。默认以Command配置的Timeout执行。
|
1162
1162
|
# @type Timeout: Integer
|
1163
|
+
# @param OutputCOSBucketUrl: 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
|
1164
|
+
# @type OutputCOSBucketUrl: String
|
1165
|
+
# @param OutputCOSKeyPrefix: 指定日志在cos bucket中的目录,目录命名有如下规则:
|
1166
|
+
# 1. 可用数字、中英文和可见字符的组合,长度最多为60。
|
1167
|
+
# 2. 用 / 分割路径,可快速创建子目录。
|
1168
|
+
# 3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称。
|
1169
|
+
# @type OutputCOSKeyPrefix: String
|
1163
1170
|
|
1164
|
-
attr_accessor :CommandId, :InstanceIds, :Parameters, :Username, :WorkingDirectory, :Timeout
|
1171
|
+
attr_accessor :CommandId, :InstanceIds, :Parameters, :Username, :WorkingDirectory, :Timeout, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
|
1165
1172
|
|
1166
|
-
def initialize(commandid=nil, instanceids=nil, parameters=nil, username=nil, workingdirectory=nil, timeout=nil)
|
1173
|
+
def initialize(commandid=nil, instanceids=nil, parameters=nil, username=nil, workingdirectory=nil, timeout=nil, outputcosbucketurl=nil, outputcoskeyprefix=nil)
|
1167
1174
|
@CommandId = commandid
|
1168
1175
|
@InstanceIds = instanceids
|
1169
1176
|
@Parameters = parameters
|
1170
1177
|
@Username = username
|
1171
1178
|
@WorkingDirectory = workingdirectory
|
1172
1179
|
@Timeout = timeout
|
1180
|
+
@OutputCOSBucketUrl = outputcosbucketurl
|
1181
|
+
@OutputCOSKeyPrefix = outputcoskeyprefix
|
1173
1182
|
end
|
1174
1183
|
|
1175
1184
|
def deserialize(params)
|
@@ -1179,6 +1188,8 @@ module TencentCloud
|
|
1179
1188
|
@Username = params['Username']
|
1180
1189
|
@WorkingDirectory = params['WorkingDirectory']
|
1181
1190
|
@Timeout = params['Timeout']
|
1191
|
+
@OutputCOSBucketUrl = params['OutputCOSBucketUrl']
|
1192
|
+
@OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
|
1182
1193
|
end
|
1183
1194
|
end
|
1184
1195
|
|
@@ -1320,10 +1331,17 @@ module TencentCloud
|
|
1320
1331
|
# @param Username: 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
|
1321
1332
|
# 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在Linux实例中以root用户执行命令。
|
1322
1333
|
# @type Username: String
|
1334
|
+
# @param OutputCOSBucketUrl: 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
|
1335
|
+
# @type OutputCOSBucketUrl: String
|
1336
|
+
# @param OutputCOSKeyPrefix: 指定日志在cos bucket中的目录,目录命名有如下规则:
|
1337
|
+
# 1. 可用数字、中英文和可见字符的组合,长度最多为60。
|
1338
|
+
# 2. 用 / 分割路径,可快速创建子目录。
|
1339
|
+
# 3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称。
|
1340
|
+
# @type OutputCOSKeyPrefix: String
|
1323
1341
|
|
1324
|
-
attr_accessor :CommandId, :CommandName, :Description, :Content, :CommandType, :WorkingDirectory, :Timeout, :DefaultParameters, :Username
|
1342
|
+
attr_accessor :CommandId, :CommandName, :Description, :Content, :CommandType, :WorkingDirectory, :Timeout, :DefaultParameters, :Username, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
|
1325
1343
|
|
1326
|
-
def initialize(commandid=nil, commandname=nil, description=nil, content=nil, commandtype=nil, workingdirectory=nil, timeout=nil, defaultparameters=nil, username=nil)
|
1344
|
+
def initialize(commandid=nil, commandname=nil, description=nil, content=nil, commandtype=nil, workingdirectory=nil, timeout=nil, defaultparameters=nil, username=nil, outputcosbucketurl=nil, outputcoskeyprefix=nil)
|
1327
1345
|
@CommandId = commandid
|
1328
1346
|
@CommandName = commandname
|
1329
1347
|
@Description = description
|
@@ -1333,6 +1351,8 @@ module TencentCloud
|
|
1333
1351
|
@Timeout = timeout
|
1334
1352
|
@DefaultParameters = defaultparameters
|
1335
1353
|
@Username = username
|
1354
|
+
@OutputCOSBucketUrl = outputcosbucketurl
|
1355
|
+
@OutputCOSKeyPrefix = outputcoskeyprefix
|
1336
1356
|
end
|
1337
1357
|
|
1338
1358
|
def deserialize(params)
|
@@ -1345,6 +1365,8 @@ module TencentCloud
|
|
1345
1365
|
@Timeout = params['Timeout']
|
1346
1366
|
@DefaultParameters = params['DefaultParameters']
|
1347
1367
|
@Username = params['Username']
|
1368
|
+
@OutputCOSBucketUrl = params['OutputCOSBucketUrl']
|
1369
|
+
@OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
|
1348
1370
|
end
|
1349
1371
|
end
|
1350
1372
|
|
@@ -1545,10 +1567,17 @@ module TencentCloud
|
|
1545
1567
|
# @param Username: 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
|
1546
1568
|
# 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在Linux实例中以root用户执行命令。
|
1547
1569
|
# @type Username: String
|
1570
|
+
# @param OutputCOSBucketUrl: 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
|
1571
|
+
# @type OutputCOSBucketUrl: String
|
1572
|
+
# @param OutputCOSKeyPrefix: 指定日志在cos bucket中的目录,目录命名有如下规则:
|
1573
|
+
# 1. 可用数字、中英文和可见字符的组合,长度最多为60。
|
1574
|
+
# 2. 用 / 分割路径,可快速创建子目录。
|
1575
|
+
# 3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称。
|
1576
|
+
# @type OutputCOSKeyPrefix: String
|
1548
1577
|
|
1549
|
-
attr_accessor :Content, :InstanceIds, :CommandName, :Description, :CommandType, :WorkingDirectory, :Timeout, :SaveCommand, :EnableParameter, :DefaultParameters, :Parameters, :Tags, :Username
|
1578
|
+
attr_accessor :Content, :InstanceIds, :CommandName, :Description, :CommandType, :WorkingDirectory, :Timeout, :SaveCommand, :EnableParameter, :DefaultParameters, :Parameters, :Tags, :Username, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
|
1550
1579
|
|
1551
|
-
def initialize(content=nil, instanceids=nil, commandname=nil, description=nil, commandtype=nil, workingdirectory=nil, timeout=nil, savecommand=nil, enableparameter=nil, defaultparameters=nil, parameters=nil, tags=nil, username=nil)
|
1580
|
+
def initialize(content=nil, instanceids=nil, commandname=nil, description=nil, commandtype=nil, workingdirectory=nil, timeout=nil, savecommand=nil, enableparameter=nil, defaultparameters=nil, parameters=nil, tags=nil, username=nil, outputcosbucketurl=nil, outputcoskeyprefix=nil)
|
1552
1581
|
@Content = content
|
1553
1582
|
@InstanceIds = instanceids
|
1554
1583
|
@CommandName = commandname
|
@@ -1562,6 +1591,8 @@ module TencentCloud
|
|
1562
1591
|
@Parameters = parameters
|
1563
1592
|
@Tags = tags
|
1564
1593
|
@Username = username
|
1594
|
+
@OutputCOSBucketUrl = outputcosbucketurl
|
1595
|
+
@OutputCOSKeyPrefix = outputcoskeyprefix
|
1565
1596
|
end
|
1566
1597
|
|
1567
1598
|
def deserialize(params)
|
@@ -1585,6 +1616,8 @@ module TencentCloud
|
|
1585
1616
|
end
|
1586
1617
|
end
|
1587
1618
|
@Username = params['Username']
|
1619
|
+
@OutputCOSBucketUrl = params['OutputCOSBucketUrl']
|
1620
|
+
@OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
|
1588
1621
|
end
|
1589
1622
|
end
|
1590
1623
|
|
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.215
|
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-12-
|
11
|
+
date: 2021-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|