tencentcloud-sdk-tat 3.0.1048 → 3.0.1049
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 -16
- 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: 7d75217bfc9a8330066e01195d4d54c1a47ac491
|
4
|
+
data.tar.gz: 3bd0c2a2671a55c3fe479d299cbca4a5eab1d36b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 274b28e683b6e2f6d870ebacbbd567cf2fe36df0e5c11fc6a3f26031e4a3707fc814123af4dbc0498e56aeed7ab6368452fd1b76040228b397dcd540dfdea376
|
7
|
+
data.tar.gz: 5c691a4877ab32af62ad117b60125bee76a5a33ceb5a0423b52439551eb3e52ca3c695a12ebadb4cb72cf6d840b14a69c7810e85658ef10cc1df61df07150953
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1049
|
data/lib/v20201028/models.rb
CHANGED
@@ -355,9 +355,13 @@ module TencentCloud
|
|
355
355
|
|
356
356
|
# CreateInvoker请求参数结构体
|
357
357
|
class CreateInvokerRequest < TencentCloud::Common::AbstractModel
|
358
|
-
# @param Name:
|
358
|
+
# @param Name: 执行器名称。长度不超过 120 字符。
|
359
359
|
# @type Name: String
|
360
|
-
# @param Type:
|
360
|
+
# @param Type: 执行器类型。
|
361
|
+
|
362
|
+
# 可选取值(当前仅支持一种):
|
363
|
+
|
364
|
+
# - `SCHEDULE`:周期类型执行器。
|
361
365
|
# @type Type: String
|
362
366
|
# @param CommandId: 远程命令ID。
|
363
367
|
|
@@ -369,13 +373,15 @@ module TencentCloud
|
|
369
373
|
|
370
374
|
# 实例需要安装 TAT 客户端, 且客户端为 Online 状态。可通过 [DescribeAutomationAgentStatus(查询客户端状态)](https://cloud.tencent.com/document/api/1340/52682) 接口查询客户端状态。
|
371
375
|
# @type InstanceIds: Array
|
372
|
-
# @param Username:
|
376
|
+
# @param Username: 命令执行用户。长度不超过 256 字符。
|
373
377
|
# @type Username: String
|
374
|
-
# @param Parameters:
|
378
|
+
# @param Parameters: 命令自定义参数。字段类型为 JSON encode string。
|
375
379
|
|
376
380
|
# 仅在 CommandId 所指命令的 EnableParameter 为 true 时,才允许设置此参数。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取命令的 EnableParameter 设置。
|
377
381
|
# @type Parameters: String
|
378
|
-
# @param ScheduleSettings:
|
382
|
+
# @param ScheduleSettings: 周期执行器设置。
|
383
|
+
|
384
|
+
# 当执行器类型为 `SCHEDULE` 时,必须指定此参数。
|
379
385
|
# @type ScheduleSettings: :class:`Tencentcloud::Tat.v20201028.models.ScheduleSettings`
|
380
386
|
|
381
387
|
attr_accessor :Name, :Type, :CommandId, :InstanceIds, :Username, :Parameters, :ScheduleSettings
|
@@ -683,13 +689,15 @@ module TencentCloud
|
|
683
689
|
|
684
690
|
# 可通过对应云产品的查询实例接口获取实例 ID。目前支持实例类型:CVM、Lighthouse、TAT 托管实例。
|
685
691
|
|
692
|
+
# 每次请求的上限为 100。
|
693
|
+
|
686
694
|
# 参数不支持同时指定 `InstanceIds ` 和 `Filters ` 。
|
687
695
|
# @type InstanceIds: Array
|
688
696
|
# @param Filters: - agent-status - String - 是否必填:否 -(过滤条件)按照agent状态过滤,取值:Online 在线,Offline 离线。
|
689
697
|
# - environment - String - 是否必填:否 -(过滤条件)按照agent运行环境查询,取值:Linux, Windows。
|
690
698
|
# - instance-id - String - 是否必填:否 -(过滤条件)按照实例ID过滤。 可通过对应云产品的查询实例接口获取实例 ID。目前支持实例类型:CVM、Lighthouse、TAT 托管实例。
|
691
699
|
|
692
|
-
#
|
700
|
+
# 每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `InstanceIds ` 和 `Filters ` 。
|
693
701
|
# @type Filters: Array
|
694
702
|
# @param Limit: 返回数量,默认为20,最大值为100。关于 `Limit` 的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/15688)中的相关小节。
|
695
703
|
# @type Limit: Integer
|
@@ -1041,7 +1049,9 @@ module TencentCloud
|
|
1041
1049
|
|
1042
1050
|
# DescribeInvokers请求参数结构体
|
1043
1051
|
class DescribeInvokersRequest < TencentCloud::Common::AbstractModel
|
1044
|
-
# @param InvokerIds: 执行器ID列表。
|
1052
|
+
# @param InvokerIds: 执行器 ID 列表。
|
1053
|
+
|
1054
|
+
# 每次请求的上限为 100。
|
1045
1055
|
|
1046
1056
|
# 参数不支持同时指定 `InvokerIds ` 和 `Filters ` 。
|
1047
1057
|
# @type InvokerIds: Array
|
@@ -1049,9 +1059,9 @@ module TencentCloud
|
|
1049
1059
|
|
1050
1060
|
# - invoker-id - String - 是否必填:否 - (过滤条件)按执行器ID过滤。
|
1051
1061
|
# - command-id - String - 是否必填:否 - (过滤条件)按命令ID过滤。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取。
|
1052
|
-
# - type - String - 是否必填:否 - (过滤条件)按执行器类型过滤。目前仅支持 SCHEDULE 一种。
|
1062
|
+
# - invoker-type - String - 是否必填:否 - (过滤条件)按执行器类型过滤。目前仅支持 SCHEDULE 一种。
|
1053
1063
|
|
1054
|
-
#
|
1064
|
+
# 每次请求的 `Filters` 的上限为 10,`Filter.Values` 的上限为 5。参数不支持同时指定 `InvokerIds` 和 `Filters` 。
|
1055
1065
|
# @type Filters: Array
|
1056
1066
|
# @param Limit: 返回数量,默认为20,最大值为100。
|
1057
1067
|
# @type Limit: Integer
|
@@ -1206,6 +1216,10 @@ module TencentCloud
|
|
1206
1216
|
# DescribeRegisterCodes请求参数结构体
|
1207
1217
|
class DescribeRegisterCodesRequest < TencentCloud::Common::AbstractModel
|
1208
1218
|
# @param RegisterCodeIds: 注册码ID。
|
1219
|
+
|
1220
|
+
# 每次请求的上限为 100。
|
1221
|
+
|
1222
|
+
# 参数不支持同时指定 `RegisterCodeIds ` 和 `Filters ` 。
|
1209
1223
|
# @type RegisterCodeIds: Array
|
1210
1224
|
# @param Offset: 偏移量,默认为 0。
|
1211
1225
|
# @type Offset: Integer
|
@@ -1262,9 +1276,11 @@ module TencentCloud
|
|
1262
1276
|
class DescribeRegisterInstancesRequest < TencentCloud::Common::AbstractModel
|
1263
1277
|
# @param InstanceIds: 托管实例 id。
|
1264
1278
|
|
1279
|
+
# 每次请求的上限为 100。
|
1280
|
+
|
1265
1281
|
# 参数不支持同时指定 `InstanceIds` 和 `Filters` 。
|
1266
1282
|
# @type InstanceIds: Array
|
1267
|
-
# @param Filters:
|
1283
|
+
# @param Filters: 过滤器列表。每次请求的 `Filters` 的上限为 10,`Filter.Values` 的上限为 5。参数不支持同时指定 `InstanceIds` 和 `Filters` 。
|
1268
1284
|
|
1269
1285
|
|
1270
1286
|
# - instance-name
|
@@ -1376,6 +1392,8 @@ module TencentCloud
|
|
1376
1392
|
class DescribeScenesRequest < TencentCloud::Common::AbstractModel
|
1377
1393
|
# @param SceneIds: 场景 ID 数组。
|
1378
1394
|
|
1395
|
+
# 每次请求的上限为 100。
|
1396
|
+
|
1379
1397
|
# 参数不支持同时指定 `SceneIds ` 和 `Filters ` 。
|
1380
1398
|
# @type SceneIds: Array
|
1381
1399
|
# @param Filters: 过滤条件。
|
@@ -2129,17 +2147,21 @@ module TencentCloud
|
|
2129
2147
|
|
2130
2148
|
# 可通过 [DescribeInvokers(查询执行器)](https://cloud.tencent.com/document/api/1340/61759) 接口获取。
|
2131
2149
|
# @type InvokerId: String
|
2132
|
-
# @param Name:
|
2150
|
+
# @param Name: 待修改的执行器名称。长度不超过 120 字符。
|
2133
2151
|
# @type Name: String
|
2134
|
-
# @param Type:
|
2152
|
+
# @param Type: 待修改的执行器类型。
|
2153
|
+
|
2154
|
+
# 可选取值(当前仅支持一种):
|
2155
|
+
|
2156
|
+
# - `SCHEDULE`:周期类型执行器。
|
2135
2157
|
# @type Type: String
|
2136
2158
|
# @param CommandId: 待修改的命令ID。
|
2137
2159
|
|
2138
2160
|
# 可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取。
|
2139
2161
|
# @type CommandId: String
|
2140
|
-
# @param Username:
|
2162
|
+
# @param Username: 待修改的用户名。长度不超过 256 字符。
|
2141
2163
|
# @type Username: String
|
2142
|
-
# @param Parameters:
|
2164
|
+
# @param Parameters: 待修改的自定义参数。字段类型为 JSON encode string。
|
2143
2165
|
|
2144
2166
|
# 仅在 CommandId 所指命令的 EnableParameter 为 true 时,才允许设置此参数。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取命令的 EnableParameter 设置。
|
2145
2167
|
# @type Parameters: String
|
@@ -2150,6 +2172,8 @@ module TencentCloud
|
|
2150
2172
|
# 实例需要安装 TAT 客户端, 且客户端为 Online 状态。可通过 [DescribeAutomationAgentStatus(查询客户端状态)](https://cloud.tencent.com/document/api/1340/52682) 接口查询客户端状态。
|
2151
2173
|
# @type InstanceIds: Array
|
2152
2174
|
# @param ScheduleSettings: 待修改的周期执行器设置。
|
2175
|
+
|
2176
|
+
# 要将执行器类型修改为 `SCHEDULE` 时,必须指定此参数。
|
2153
2177
|
# @type ScheduleSettings: :class:`Tencentcloud::Tat.v20201028.models.ScheduleSettings`
|
2154
2178
|
|
2155
2179
|
attr_accessor :InvokerId, :Name, :Type, :CommandId, :Username, :Parameters, :InstanceIds, :ScheduleSettings
|
@@ -2620,10 +2644,9 @@ module TencentCloud
|
|
2620
2644
|
# 周期执行器设置。
|
2621
2645
|
class ScheduleSettings < TencentCloud::Common::AbstractModel
|
2622
2646
|
# @param Policy: 执行策略:
|
2647
|
+
|
2623
2648
|
# - ONCE:单次执行
|
2624
2649
|
# - RECURRENCE:周期执行
|
2625
|
-
|
2626
|
-
# 只有在 CreateInvoker 时才必填,ModifyInvoker 时为非必填
|
2627
2650
|
# @type Policy: String
|
2628
2651
|
# @param Recurrence: 触发 Crontab 表达式。Policy 为 RECURRENCE 时,需要指定此字段。Crontab 按北京时间解析。
|
2629
2652
|
# @type Recurrence: String
|
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.
|
4
|
+
version: 3.0.1049
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-04-
|
11
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|