tencentcloud-sdk-tat 1.0.212 → 1.0.216

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 +87 -23
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f2a4dd77b57ef4a1f30dca2d41e328206b9017a
4
- data.tar.gz: db3e454ce28034a69a2732778a66fcfd357fcda7
3
+ metadata.gz: cc467c8b92e4d5ceacd58a77a1a0ea474944e6d3
4
+ data.tar.gz: 922baa619ff06c52d91b061e3589eca7194873fe
5
5
  SHA512:
6
- metadata.gz: 3186b563f1dd6a5abda5c7f28a70fc5a9560daee2f574e37fa8b8af3047877f119f1bd4939ff74ecff0ed58562fb01c32c1d045e459097ba5250cc7359e9e969
7
- data.tar.gz: 893f70e85d6f6e2605a579ad450d9efed1deeb24b0ba56243f579b6d7de2025dac6a497350f0ce1bb6f62bea567854a316985f4eaf6e96da6bab5baeaab0965f
6
+ metadata.gz: 6a5ff9e2c01bdf2664a7ca19b5d0293d7752adec9854ef081f85df0481382eae1430ac2815bc568bbdeacb4b2d3ceaa4bce3d33def9730d7f00dd1a9ac7222f1
7
+ data.tar.gz: 2c0f525ca9b4b90ce1ca5269c6298954e040d7bae4b4e6aa05b4472ab0625f57ff554b3104bc973ced09c77d51e00362ffc1b76502061c8a9bbaa1badfa1187e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.212
1
+ 1.0.216
@@ -85,10 +85,14 @@ module TencentCloud
85
85
  # @type Tags: Array
86
86
  # @param Username: 在实例上执行命令的用户名。
87
87
  # @type Username: String
88
+ # @param OutputCOSBucketUrl: 日志上传的cos bucket 地址。
89
+ # @type OutputCOSBucketUrl: String
90
+ # @param OutputCOSKeyPrefix: 日志在cos bucket中的目录。
91
+ # @type OutputCOSKeyPrefix: String
88
92
 
89
- attr_accessor :CommandId, :CommandName, :Description, :Content, :CommandType, :WorkingDirectory, :Timeout, :CreatedTime, :UpdatedTime, :EnableParameter, :DefaultParameters, :FormattedDescription, :CreatedBy, :Tags, :Username
93
+ attr_accessor :CommandId, :CommandName, :Description, :Content, :CommandType, :WorkingDirectory, :Timeout, :CreatedTime, :UpdatedTime, :EnableParameter, :DefaultParameters, :FormattedDescription, :CreatedBy, :Tags, :Username, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
90
94
 
91
- def initialize(commandid=nil, commandname=nil, description=nil, content=nil, commandtype=nil, workingdirectory=nil, timeout=nil, createdtime=nil, updatedtime=nil, enableparameter=nil, defaultparameters=nil, formatteddescription=nil, createdby=nil, tags=nil, username=nil)
95
+ def initialize(commandid=nil, commandname=nil, description=nil, content=nil, commandtype=nil, workingdirectory=nil, timeout=nil, createdtime=nil, updatedtime=nil, enableparameter=nil, defaultparameters=nil, formatteddescription=nil, createdby=nil, tags=nil, username=nil, outputcosbucketurl=nil, outputcoskeyprefix=nil)
92
96
  @CommandId = commandid
93
97
  @CommandName = commandname
94
98
  @Description = description
@@ -104,6 +108,8 @@ module TencentCloud
104
108
  @CreatedBy = createdby
105
109
  @Tags = tags
106
110
  @Username = username
111
+ @OutputCOSBucketUrl = outputcosbucketurl
112
+ @OutputCOSKeyPrefix = outputcoskeyprefix
107
113
  end
108
114
 
109
115
  def deserialize(params)
@@ -129,6 +135,8 @@ module TencentCloud
129
135
  end
130
136
  end
131
137
  @Username = params['Username']
138
+ @OutputCOSBucketUrl = params['OutputCOSBucketUrl']
139
+ @OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
132
140
  end
133
141
  end
134
142
 
@@ -172,9 +180,9 @@ module TencentCloud
172
180
  # @type Content: String
173
181
  # @param Description: 命令描述。不超过120字符。
174
182
  # @type Description: String
175
- # @param CommandType: 命令类型,目前仅支持取值:SHELL。默认:SHELL。
183
+ # @param CommandType: 命令类型,目前支持取值:SHELL、POWERSHELL。默认:SHELL。
176
184
  # @type CommandType: String
177
- # @param WorkingDirectory: 命令执行路径,默认:/root。
185
+ # @param WorkingDirectory: 命令执行路径,对于 SHELL 命令默认为 /root,对于 POWERSHELL 命令默认为 C:\Program Files\qcloud\tat_agent\workdir
178
186
  # @type WorkingDirectory: String
179
187
  # @param Timeout: 命令超时时间,默认60秒。取值范围[1, 86400]。
180
188
  # @type Timeout: Integer
@@ -191,7 +199,7 @@ module TencentCloud
191
199
  # @param Tags: 为命令关联的标签,列表长度不超过10。
192
200
  # @type Tags: Array
193
201
  # @param Username: 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
194
- # 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在Linux实例中以root用户执行命令。
202
+ # 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在 Linux 实例中以 root 用户执行命令;Windows 实例当前仅支持以 System 用户执行命令。
195
203
  # @type Username: String
196
204
  # @param OutputCOSBucketUrl: 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
197
205
  # @type OutputCOSBucketUrl: String
@@ -975,10 +983,14 @@ module TencentCloud
975
983
  # @type Timeout: Integer
976
984
  # @param WorkingDirectory: 执行命令的工作路径
977
985
  # @type WorkingDirectory: String
986
+ # @param OutputCOSBucketUrl: 日志上传的cos bucket 地址。
987
+ # @type OutputCOSBucketUrl: String
988
+ # @param OutputCOSKeyPrefix: 日志在cos bucket中的目录。
989
+ # @type OutputCOSKeyPrefix: String
978
990
 
979
- attr_accessor :InvocationId, :CommandId, :InvocationStatus, :InvocationTaskBasicInfoSet, :Description, :StartTime, :EndTime, :CreatedTime, :UpdatedTime, :Parameters, :DefaultParameters, :InstanceKind, :Username, :InvocationSource, :CommandContent, :CommandType, :Timeout, :WorkingDirectory
991
+ attr_accessor :InvocationId, :CommandId, :InvocationStatus, :InvocationTaskBasicInfoSet, :Description, :StartTime, :EndTime, :CreatedTime, :UpdatedTime, :Parameters, :DefaultParameters, :InstanceKind, :Username, :InvocationSource, :CommandContent, :CommandType, :Timeout, :WorkingDirectory, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
980
992
 
981
- def initialize(invocationid=nil, commandid=nil, invocationstatus=nil, invocationtaskbasicinfoset=nil, description=nil, starttime=nil, endtime=nil, createdtime=nil, updatedtime=nil, parameters=nil, defaultparameters=nil, instancekind=nil, username=nil, invocationsource=nil, commandcontent=nil, commandtype=nil, timeout=nil, workingdirectory=nil)
993
+ def initialize(invocationid=nil, commandid=nil, invocationstatus=nil, invocationtaskbasicinfoset=nil, description=nil, starttime=nil, endtime=nil, createdtime=nil, updatedtime=nil, parameters=nil, defaultparameters=nil, instancekind=nil, username=nil, invocationsource=nil, commandcontent=nil, commandtype=nil, timeout=nil, workingdirectory=nil, outputcosbucketurl=nil, outputcoskeyprefix=nil)
982
994
  @InvocationId = invocationid
983
995
  @CommandId = commandid
984
996
  @InvocationStatus = invocationstatus
@@ -997,6 +1009,8 @@ module TencentCloud
997
1009
  @CommandType = commandtype
998
1010
  @Timeout = timeout
999
1011
  @WorkingDirectory = workingdirectory
1012
+ @OutputCOSBucketUrl = outputcosbucketurl
1013
+ @OutputCOSKeyPrefix = outputcoskeyprefix
1000
1014
  end
1001
1015
 
1002
1016
  def deserialize(params)
@@ -1025,6 +1039,8 @@ module TencentCloud
1025
1039
  @CommandType = params['CommandType']
1026
1040
  @Timeout = params['Timeout']
1027
1041
  @WorkingDirectory = params['WorkingDirectory']
1042
+ @OutputCOSBucketUrl = params['OutputCOSBucketUrl']
1043
+ @OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
1028
1044
  end
1029
1045
  end
1030
1046
 
@@ -1047,6 +1063,9 @@ module TencentCloud
1047
1063
  # <li> FAILED:命令执行失败,执行完退出码不为 0
1048
1064
  # <li> TIMEOUT:命令超时
1049
1065
  # <li> TASK_TIMEOUT:执行任务超时
1066
+ # <li> CANCELLING:取消中
1067
+ # <li> CANCELLED:已取消(命令启动前就被取消)
1068
+ # <li> TERMINATED:已中止(命令执行期间被取消)
1050
1069
  # @type TaskStatus: String
1051
1070
  # @param InstanceId: 实例ID。
1052
1071
  # @type InstanceId: String
@@ -1117,11 +1136,15 @@ module TencentCloud
1117
1136
  # <li> DELIVERING:下发中
1118
1137
  # <li> DELIVER_DELAYED:延时下发
1119
1138
  # <li> DELIVER_FAILED:下发失败
1139
+ # <li> START_FAILED:命令启动失败
1120
1140
  # <li> RUNNING:命令运行中
1121
1141
  # <li> SUCCESS:命令成功
1122
- # <li> FAILED:命令失败
1142
+ # <li> FAILED:命令执行失败,执行完退出码不为 0
1123
1143
  # <li> TIMEOUT:命令超时
1124
1144
  # <li> TASK_TIMEOUT:执行任务超时
1145
+ # <li> CANCELLING:取消中
1146
+ # <li> CANCELLED:已取消(命令启动前就被取消)
1147
+ # <li> TERMINATED:已中止(命令执行期间被取消)
1125
1148
  # @type TaskStatus: String
1126
1149
  # @param InstanceId: 实例ID。
1127
1150
  # @type InstanceId: String
@@ -1160,16 +1183,25 @@ module TencentCloud
1160
1183
  # @type WorkingDirectory: String
1161
1184
  # @param Timeout: 命令超时时间,取值范围[1, 86400]。默认以Command配置的Timeout执行。
1162
1185
  # @type Timeout: Integer
1186
+ # @param OutputCOSBucketUrl: 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
1187
+ # @type OutputCOSBucketUrl: String
1188
+ # @param OutputCOSKeyPrefix: 指定日志在cos bucket中的目录,目录命名有如下规则:
1189
+ # 1. 可用数字、中英文和可见字符的组合,长度最多为60。
1190
+ # 2. 用 / 分割路径,可快速创建子目录。
1191
+ # 3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称。
1192
+ # @type OutputCOSKeyPrefix: String
1163
1193
 
1164
- attr_accessor :CommandId, :InstanceIds, :Parameters, :Username, :WorkingDirectory, :Timeout
1194
+ attr_accessor :CommandId, :InstanceIds, :Parameters, :Username, :WorkingDirectory, :Timeout, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
1165
1195
 
1166
- def initialize(commandid=nil, instanceids=nil, parameters=nil, username=nil, workingdirectory=nil, timeout=nil)
1196
+ def initialize(commandid=nil, instanceids=nil, parameters=nil, username=nil, workingdirectory=nil, timeout=nil, outputcosbucketurl=nil, outputcoskeyprefix=nil)
1167
1197
  @CommandId = commandid
1168
1198
  @InstanceIds = instanceids
1169
1199
  @Parameters = parameters
1170
1200
  @Username = username
1171
1201
  @WorkingDirectory = workingdirectory
1172
1202
  @Timeout = timeout
1203
+ @OutputCOSBucketUrl = outputcosbucketurl
1204
+ @OutputCOSKeyPrefix = outputcoskeyprefix
1173
1205
  end
1174
1206
 
1175
1207
  def deserialize(params)
@@ -1179,6 +1211,8 @@ module TencentCloud
1179
1211
  @Username = params['Username']
1180
1212
  @WorkingDirectory = params['WorkingDirectory']
1181
1213
  @Timeout = params['Timeout']
1214
+ @OutputCOSBucketUrl = params['OutputCOSBucketUrl']
1215
+ @OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
1182
1216
  end
1183
1217
  end
1184
1218
 
@@ -1304,11 +1338,11 @@ module TencentCloud
1304
1338
  # @type Description: String
1305
1339
  # @param Content: Base64编码后的命令内容,长度不可超过64KB。
1306
1340
  # @type Content: String
1307
- # @param CommandType: 命令类型,目前仅支持取值:SHELL。
1341
+ # @param CommandType: 命令类型,目前支持取值:SHELL、POWERSHELL
1308
1342
  # @type CommandType: String
1309
- # @param WorkingDirectory: 命令执行路径,默认:`/root`。
1343
+ # @param WorkingDirectory: 命令执行路径。
1310
1344
  # @type WorkingDirectory: String
1311
- # @param Timeout: 命令超时时间,默认60秒。取值范围[1, 86400]。
1345
+ # @param Timeout: 命令超时时间。取值范围[1, 86400]。
1312
1346
  # @type Timeout: Integer
1313
1347
  # @param DefaultParameters: 启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\"varA\": \"222\"}。
1314
1348
  # 采取整体全覆盖式修改,即修改时必须提供所有新默认值。
@@ -1318,12 +1352,19 @@ module TencentCloud
1318
1352
  # 自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
1319
1353
  # @type DefaultParameters: String
1320
1354
  # @param Username: 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
1321
- # 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在Linux实例中以root用户执行命令。
1355
+ # 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。Windows 实例当前仅支持以 System 用户执行命令。
1322
1356
  # @type Username: String
1357
+ # @param OutputCOSBucketUrl: 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
1358
+ # @type OutputCOSBucketUrl: String
1359
+ # @param OutputCOSKeyPrefix: 指定日志在cos bucket中的目录,目录命名有如下规则:
1360
+ # 1. 可用数字、中英文和可见字符的组合,长度最多为60。
1361
+ # 2. 用 / 分割路径,可快速创建子目录。
1362
+ # 3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称。
1363
+ # @type OutputCOSKeyPrefix: String
1323
1364
 
1324
- attr_accessor :CommandId, :CommandName, :Description, :Content, :CommandType, :WorkingDirectory, :Timeout, :DefaultParameters, :Username
1365
+ attr_accessor :CommandId, :CommandName, :Description, :Content, :CommandType, :WorkingDirectory, :Timeout, :DefaultParameters, :Username, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
1325
1366
 
1326
- def initialize(commandid=nil, commandname=nil, description=nil, content=nil, commandtype=nil, workingdirectory=nil, timeout=nil, defaultparameters=nil, username=nil)
1367
+ 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
1368
  @CommandId = commandid
1328
1369
  @CommandName = commandname
1329
1370
  @Description = description
@@ -1333,6 +1374,8 @@ module TencentCloud
1333
1374
  @Timeout = timeout
1334
1375
  @DefaultParameters = defaultparameters
1335
1376
  @Username = username
1377
+ @OutputCOSBucketUrl = outputcosbucketurl
1378
+ @OutputCOSKeyPrefix = outputcoskeyprefix
1336
1379
  end
1337
1380
 
1338
1381
  def deserialize(params)
@@ -1345,6 +1388,8 @@ module TencentCloud
1345
1388
  @Timeout = params['Timeout']
1346
1389
  @DefaultParameters = params['DefaultParameters']
1347
1390
  @Username = params['Username']
1391
+ @OutputCOSBucketUrl = params['OutputCOSBucketUrl']
1392
+ @OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
1348
1393
  end
1349
1394
  end
1350
1395
 
@@ -1513,9 +1558,9 @@ module TencentCloud
1513
1558
  # @type CommandName: String
1514
1559
  # @param Description: 命令描述。不超过120字符。
1515
1560
  # @type Description: String
1516
- # @param CommandType: 命令类型,目前仅支持取值:SHELL。默认:SHELL。
1561
+ # @param CommandType: 命令类型,目前支持取值:SHELL、POWERSHELL。默认:SHELL。
1517
1562
  # @type CommandType: String
1518
- # @param WorkingDirectory: 命令执行路径,默认:/root。
1563
+ # @param WorkingDirectory: 命令执行路径,对于 SHELL 命令默认为 /root,对于 POWERSHELL 命令默认为 C:\Program Files\qcloud\tat_agent\workdir
1519
1564
  # @type WorkingDirectory: String
1520
1565
  # @param Timeout: 命令超时时间,默认60秒。取值范围[1, 86400]。
1521
1566
  # @type Timeout: Integer
@@ -1543,12 +1588,19 @@ module TencentCloud
1543
1588
  # @param Tags: 如果保存命令,可为命令设置标签。列表长度不超过10。
1544
1589
  # @type Tags: Array
1545
1590
  # @param Username: 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
1546
- # 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在Linux实例中以root用户执行命令。
1591
+ # 使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。默认情况下,在 Linux 实例中以 root 用户执行命令;Windows 实例当前仅支持以 System 用户执行命令。
1547
1592
  # @type Username: String
1593
+ # @param OutputCOSBucketUrl: 指定日志上传的cos bucket 地址,必须以https开头,如 https://BucketName-123454321.cos.ap-beijing.myqcloud.com。
1594
+ # @type OutputCOSBucketUrl: String
1595
+ # @param OutputCOSKeyPrefix: 指定日志在cos bucket中的目录,目录命名有如下规则:
1596
+ # 1. 可用数字、中英文和可见字符的组合,长度最多为60。
1597
+ # 2. 用 / 分割路径,可快速创建子目录。
1598
+ # 3. 不允许连续 / ;不允许以 / 开头;不允许以..作为文件夹名称。
1599
+ # @type OutputCOSKeyPrefix: String
1548
1600
 
1549
- attr_accessor :Content, :InstanceIds, :CommandName, :Description, :CommandType, :WorkingDirectory, :Timeout, :SaveCommand, :EnableParameter, :DefaultParameters, :Parameters, :Tags, :Username
1601
+ attr_accessor :Content, :InstanceIds, :CommandName, :Description, :CommandType, :WorkingDirectory, :Timeout, :SaveCommand, :EnableParameter, :DefaultParameters, :Parameters, :Tags, :Username, :OutputCOSBucketUrl, :OutputCOSKeyPrefix
1550
1602
 
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)
1603
+ 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
1604
  @Content = content
1553
1605
  @InstanceIds = instanceids
1554
1606
  @CommandName = commandname
@@ -1562,6 +1614,8 @@ module TencentCloud
1562
1614
  @Parameters = parameters
1563
1615
  @Tags = tags
1564
1616
  @Username = username
1617
+ @OutputCOSBucketUrl = outputcosbucketurl
1618
+ @OutputCOSKeyPrefix = outputcoskeyprefix
1565
1619
  end
1566
1620
 
1567
1621
  def deserialize(params)
@@ -1585,6 +1639,8 @@ module TencentCloud
1585
1639
  end
1586
1640
  end
1587
1641
  @Username = params['Username']
1642
+ @OutputCOSBucketUrl = params['OutputCOSBucketUrl']
1643
+ @OutputCOSKeyPrefix = params['OutputCOSKeyPrefix']
1588
1644
  end
1589
1645
  end
1590
1646
 
@@ -1670,15 +1726,21 @@ module TencentCloud
1670
1726
  # @type ExecEndTime: String
1671
1727
  # @param Dropped: 命令最终输出被截断的字节数。
1672
1728
  # @type Dropped: Integer
1729
+ # @param OutputUrl: 日志在cos中的地址
1730
+ # @type OutputUrl: String
1731
+ # @param OutputUploadCOSErrorInfo: 日志上传cos的错误信息。
1732
+ # @type OutputUploadCOSErrorInfo: String
1673
1733
 
1674
- attr_accessor :ExitCode, :Output, :ExecStartTime, :ExecEndTime, :Dropped
1734
+ attr_accessor :ExitCode, :Output, :ExecStartTime, :ExecEndTime, :Dropped, :OutputUrl, :OutputUploadCOSErrorInfo
1675
1735
 
1676
- def initialize(exitcode=nil, output=nil, execstarttime=nil, execendtime=nil, dropped=nil)
1736
+ def initialize(exitcode=nil, output=nil, execstarttime=nil, execendtime=nil, dropped=nil, outputurl=nil, outputuploadcoserrorinfo=nil)
1677
1737
  @ExitCode = exitcode
1678
1738
  @Output = output
1679
1739
  @ExecStartTime = execstarttime
1680
1740
  @ExecEndTime = execendtime
1681
1741
  @Dropped = dropped
1742
+ @OutputUrl = outputurl
1743
+ @OutputUploadCOSErrorInfo = outputuploadcoserrorinfo
1682
1744
  end
1683
1745
 
1684
1746
  def deserialize(params)
@@ -1687,6 +1749,8 @@ module TencentCloud
1687
1749
  @ExecStartTime = params['ExecStartTime']
1688
1750
  @ExecEndTime = params['ExecEndTime']
1689
1751
  @Dropped = params['Dropped']
1752
+ @OutputUrl = params['OutputUrl']
1753
+ @OutputUploadCOSErrorInfo = params['OutputUploadCOSErrorInfo']
1690
1754
  end
1691
1755
  end
1692
1756
 
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.212
4
+ version: 1.0.216
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-29 00:00:00.000000000 Z
11
+ date: 2021-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common