aws-sdk-ecs 1.231.0 → 1.232.0
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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +1 -1
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +95 -718
- data/sig/params.rbs +343 -0
- metadata +2 -1
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module ECS
|
|
10
|
+
module Params
|
|
11
|
+
type instance_requirements_request = {
|
|
12
|
+
v_cpu_count: {
|
|
13
|
+
min: ::Integer,
|
|
14
|
+
max: ::Integer?
|
|
15
|
+
},
|
|
16
|
+
memory_mi_b: {
|
|
17
|
+
min: ::Integer,
|
|
18
|
+
max: ::Integer?
|
|
19
|
+
},
|
|
20
|
+
cpu_manufacturers: Array[("intel" | "amd" | "amazon-web-services")]?,
|
|
21
|
+
memory_gi_b_per_v_cpu: {
|
|
22
|
+
min: ::Float?,
|
|
23
|
+
max: ::Float?
|
|
24
|
+
}?,
|
|
25
|
+
excluded_instance_types: Array[::String]?,
|
|
26
|
+
instance_generations: Array[("current" | "previous")]?,
|
|
27
|
+
spot_max_price_percentage_over_lowest_price: ::Integer?,
|
|
28
|
+
on_demand_max_price_percentage_over_lowest_price: ::Integer?,
|
|
29
|
+
bare_metal: ("included" | "required" | "excluded")?,
|
|
30
|
+
burstable_performance: ("included" | "required" | "excluded")?,
|
|
31
|
+
require_hibernate_support: bool?,
|
|
32
|
+
network_interface_count: {
|
|
33
|
+
min: ::Integer?,
|
|
34
|
+
max: ::Integer?
|
|
35
|
+
}?,
|
|
36
|
+
local_storage: ("included" | "required" | "excluded")?,
|
|
37
|
+
local_storage_types: Array[("hdd" | "ssd")]?,
|
|
38
|
+
total_local_storage_gb: {
|
|
39
|
+
min: ::Float?,
|
|
40
|
+
max: ::Float?
|
|
41
|
+
}?,
|
|
42
|
+
baseline_ebs_bandwidth_mbps: {
|
|
43
|
+
min: ::Integer?,
|
|
44
|
+
max: ::Integer?
|
|
45
|
+
}?,
|
|
46
|
+
accelerator_types: Array[("gpu" | "fpga" | "inference")]?,
|
|
47
|
+
accelerator_count: {
|
|
48
|
+
min: ::Integer?,
|
|
49
|
+
max: ::Integer?
|
|
50
|
+
}?,
|
|
51
|
+
accelerator_manufacturers: Array[("amazon-web-services" | "amd" | "nvidia" | "xilinx" | "habana")]?,
|
|
52
|
+
accelerator_names: Array[("a100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "vu9p" | "v100" | "a10g" | "h100" | "t4g")]?,
|
|
53
|
+
accelerator_total_memory_mi_b: {
|
|
54
|
+
min: ::Integer?,
|
|
55
|
+
max: ::Integer?
|
|
56
|
+
}?,
|
|
57
|
+
network_bandwidth_gbps: {
|
|
58
|
+
min: ::Float?,
|
|
59
|
+
max: ::Float?
|
|
60
|
+
}?,
|
|
61
|
+
allowed_instance_types: Array[::String]?,
|
|
62
|
+
max_spot_price_as_percentage_of_optimal_on_demand_price: ::Integer?
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
type execute_command_configuration = {
|
|
66
|
+
kms_key_id: ::String?,
|
|
67
|
+
logging: ("NONE" | "DEFAULT" | "OVERRIDE")?,
|
|
68
|
+
log_configuration: {
|
|
69
|
+
cloud_watch_log_group_name: ::String?,
|
|
70
|
+
cloud_watch_encryption_enabled: bool?,
|
|
71
|
+
s3_bucket_name: ::String?,
|
|
72
|
+
s3_encryption_enabled: bool?,
|
|
73
|
+
s3_key_prefix: ::String?
|
|
74
|
+
}?
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
type cluster_configuration = {
|
|
78
|
+
execute_command_configuration: Params::execute_command_configuration?,
|
|
79
|
+
managed_storage_configuration: {
|
|
80
|
+
kms_key_id: ::String?,
|
|
81
|
+
fargate_ephemeral_storage_kms_key_id: ::String?
|
|
82
|
+
}?
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
type daemon_deployment_configuration = {
|
|
86
|
+
drain_percent: ::Float?,
|
|
87
|
+
alarms: {
|
|
88
|
+
alarm_names: Array[::String]?,
|
|
89
|
+
enable: bool?
|
|
90
|
+
}?,
|
|
91
|
+
bake_time_in_minutes: ::Integer?
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
type express_gateway_container = {
|
|
95
|
+
image: ::String,
|
|
96
|
+
container_port: ::Integer?,
|
|
97
|
+
aws_logs_configuration: {
|
|
98
|
+
log_group: ::String,
|
|
99
|
+
log_stream_prefix: ::String
|
|
100
|
+
}?,
|
|
101
|
+
repository_credentials: {
|
|
102
|
+
credentials_parameter: ::String?
|
|
103
|
+
}?,
|
|
104
|
+
command: Array[::String]?,
|
|
105
|
+
environment: Array[
|
|
106
|
+
{
|
|
107
|
+
name: ::String?,
|
|
108
|
+
value: ::String?
|
|
109
|
+
}
|
|
110
|
+
]?,
|
|
111
|
+
secrets: Array[
|
|
112
|
+
{
|
|
113
|
+
name: ::String,
|
|
114
|
+
value_from: ::String
|
|
115
|
+
}
|
|
116
|
+
]?
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
type load_balancer = {
|
|
120
|
+
target_group_arn: ::String?,
|
|
121
|
+
load_balancer_name: ::String?,
|
|
122
|
+
container_name: ::String?,
|
|
123
|
+
container_port: ::Integer?,
|
|
124
|
+
advanced_configuration: {
|
|
125
|
+
alternate_target_group_arn: ::String?,
|
|
126
|
+
production_listener_rule: ::String?,
|
|
127
|
+
test_listener_rule: ::String?,
|
|
128
|
+
role_arn: ::String?
|
|
129
|
+
}?
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
type deployment_configuration = {
|
|
133
|
+
deployment_circuit_breaker: {
|
|
134
|
+
enable: bool,
|
|
135
|
+
rollback: bool
|
|
136
|
+
}?,
|
|
137
|
+
maximum_percent: ::Integer?,
|
|
138
|
+
minimum_healthy_percent: ::Integer?,
|
|
139
|
+
alarms: {
|
|
140
|
+
alarm_names: Array[::String],
|
|
141
|
+
rollback: bool,
|
|
142
|
+
enable: bool
|
|
143
|
+
}?,
|
|
144
|
+
strategy: ("ROLLING" | "BLUE_GREEN" | "LINEAR" | "CANARY")?,
|
|
145
|
+
bake_time_in_minutes: ::Integer?,
|
|
146
|
+
lifecycle_hooks: Array[
|
|
147
|
+
Params::deployment_lifecycle_hook
|
|
148
|
+
]?,
|
|
149
|
+
linear_configuration: {
|
|
150
|
+
step_percent: ::Float?,
|
|
151
|
+
step_bake_time_in_minutes: ::Integer?
|
|
152
|
+
}?,
|
|
153
|
+
canary_configuration: {
|
|
154
|
+
canary_percent: ::Float?,
|
|
155
|
+
canary_bake_time_in_minutes: ::Integer?
|
|
156
|
+
}?
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
type deployment_lifecycle_hook = {
|
|
160
|
+
target_type: ("AWS_LAMBDA" | "PAUSE")?,
|
|
161
|
+
hook_target_arn: ::String?,
|
|
162
|
+
role_arn: ::String?,
|
|
163
|
+
lifecycle_stages: Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRE_PRODUCTION_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]?,
|
|
164
|
+
hook_details: {
|
|
165
|
+
}?,
|
|
166
|
+
timeout_configuration: {
|
|
167
|
+
timeout_in_minutes: ::Integer?,
|
|
168
|
+
action: ("ROLLBACK" | "CONTINUE")?
|
|
169
|
+
}?
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
type log_configuration = {
|
|
173
|
+
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
|
|
174
|
+
options: Hash[::String, ::String]?,
|
|
175
|
+
secret_options: Array[
|
|
176
|
+
{
|
|
177
|
+
name: ::String,
|
|
178
|
+
value_from: ::String
|
|
179
|
+
}
|
|
180
|
+
]?
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
type service_connect_configuration = {
|
|
184
|
+
enabled: bool,
|
|
185
|
+
namespace: ::String?,
|
|
186
|
+
services: Array[
|
|
187
|
+
Params::service_connect_service
|
|
188
|
+
]?,
|
|
189
|
+
log_configuration: Params::log_configuration?,
|
|
190
|
+
access_log_configuration: {
|
|
191
|
+
format: ("TEXT" | "JSON"),
|
|
192
|
+
include_query_parameters: ("DISABLED" | "ENABLED")?
|
|
193
|
+
}?
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
type service_connect_service = {
|
|
197
|
+
port_name: ::String,
|
|
198
|
+
discovery_name: ::String?,
|
|
199
|
+
client_aliases: Array[
|
|
200
|
+
Params::service_connect_client_alias
|
|
201
|
+
]?,
|
|
202
|
+
ingress_port_override: ::Integer?,
|
|
203
|
+
timeout: {
|
|
204
|
+
idle_timeout_seconds: ::Integer?,
|
|
205
|
+
per_request_timeout_seconds: ::Integer?
|
|
206
|
+
}?,
|
|
207
|
+
tls: {
|
|
208
|
+
issuer_certificate_authority: {
|
|
209
|
+
aws_pca_authority_arn: ::String?
|
|
210
|
+
},
|
|
211
|
+
kms_key: ::String?,
|
|
212
|
+
role_arn: ::String?
|
|
213
|
+
}?
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
type service_connect_test_traffic_rules = {
|
|
217
|
+
header: {
|
|
218
|
+
name: ::String,
|
|
219
|
+
value: {
|
|
220
|
+
exact: ::String
|
|
221
|
+
}?
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
type service_connect_client_alias = {
|
|
226
|
+
port: ::Integer,
|
|
227
|
+
dns_name: ::String?,
|
|
228
|
+
test_traffic_rules: Params::service_connect_test_traffic_rules?
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
type service_managed_ebs_volume_configuration = {
|
|
232
|
+
encrypted: bool?,
|
|
233
|
+
kms_key_id: ::String?,
|
|
234
|
+
volume_type: ::String?,
|
|
235
|
+
size_in_gi_b: ::Integer?,
|
|
236
|
+
snapshot_id: ::String?,
|
|
237
|
+
volume_initialization_rate: ::Integer?,
|
|
238
|
+
iops: ::Integer?,
|
|
239
|
+
throughput: ::Integer?,
|
|
240
|
+
tag_specifications: Array[
|
|
241
|
+
Params::ebs_tag_specification
|
|
242
|
+
]?,
|
|
243
|
+
role_arn: ::String,
|
|
244
|
+
filesystem_type: ("ext3" | "ext4" | "xfs" | "ntfs")?
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
type service_volume_configuration = {
|
|
248
|
+
name: ::String,
|
|
249
|
+
managed_ebs_volume: Params::service_managed_ebs_volume_configuration?
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
type ebs_tag_specification = {
|
|
253
|
+
resource_type: ("volume"),
|
|
254
|
+
tags: Array[
|
|
255
|
+
{
|
|
256
|
+
key: ::String?,
|
|
257
|
+
value: ::String?
|
|
258
|
+
}
|
|
259
|
+
]?,
|
|
260
|
+
propagate_tags: ("TASK_DEFINITION" | "SERVICE" | "NONE")?
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
type task_override = {
|
|
264
|
+
container_overrides: Array[
|
|
265
|
+
Params::container_override
|
|
266
|
+
]?,
|
|
267
|
+
cpu: ::String?,
|
|
268
|
+
inference_accelerator_overrides: Array[
|
|
269
|
+
{
|
|
270
|
+
device_name: ::String?,
|
|
271
|
+
device_type: ::String?
|
|
272
|
+
}
|
|
273
|
+
]?,
|
|
274
|
+
execution_role_arn: ::String?,
|
|
275
|
+
memory: ::String?,
|
|
276
|
+
task_role_arn: ::String?,
|
|
277
|
+
ephemeral_storage: {
|
|
278
|
+
size_in_gi_b: ::Integer
|
|
279
|
+
}?
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
type container_override = {
|
|
283
|
+
name: ::String?,
|
|
284
|
+
command: Array[::String]?,
|
|
285
|
+
environment: Array[
|
|
286
|
+
{
|
|
287
|
+
name: ::String?,
|
|
288
|
+
value: ::String?
|
|
289
|
+
}
|
|
290
|
+
]?,
|
|
291
|
+
environment_files: Array[
|
|
292
|
+
{
|
|
293
|
+
value: ::String,
|
|
294
|
+
type: ("s3")
|
|
295
|
+
}
|
|
296
|
+
]?,
|
|
297
|
+
cpu: ::Integer?,
|
|
298
|
+
memory: ::Integer?,
|
|
299
|
+
memory_reservation: ::Integer?,
|
|
300
|
+
resource_requirements: Array[
|
|
301
|
+
{
|
|
302
|
+
value: ::String,
|
|
303
|
+
type: ("GPU" | "InferenceAccelerator")
|
|
304
|
+
}
|
|
305
|
+
]?
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
type task_managed_ebs_volume_configuration = {
|
|
309
|
+
encrypted: bool?,
|
|
310
|
+
kms_key_id: ::String?,
|
|
311
|
+
volume_type: ::String?,
|
|
312
|
+
size_in_gi_b: ::Integer?,
|
|
313
|
+
snapshot_id: ::String?,
|
|
314
|
+
volume_initialization_rate: ::Integer?,
|
|
315
|
+
iops: ::Integer?,
|
|
316
|
+
throughput: ::Integer?,
|
|
317
|
+
tag_specifications: Array[
|
|
318
|
+
Params::ebs_tag_specification
|
|
319
|
+
]?,
|
|
320
|
+
role_arn: ::String,
|
|
321
|
+
termination_policy: {
|
|
322
|
+
delete_on_termination: bool
|
|
323
|
+
}?,
|
|
324
|
+
filesystem_type: ("ext3" | "ext4" | "xfs" | "ntfs")?
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
type task_volume_configuration = {
|
|
328
|
+
name: ::String,
|
|
329
|
+
managed_ebs_volume: Params::task_managed_ebs_volume_configuration?
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
type network_binding = {
|
|
333
|
+
bind_ip: ::String?,
|
|
334
|
+
container_port: ::Integer?,
|
|
335
|
+
host_port: ::Integer?,
|
|
336
|
+
protocol: ("tcp" | "udp")?,
|
|
337
|
+
container_port_range: ::String?,
|
|
338
|
+
host_port_range: ::String?
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
end
|
|
342
|
+
end
|
|
343
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ecs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.232.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -68,6 +68,7 @@ files:
|
|
|
68
68
|
- lib/aws-sdk-ecs/waiters.rb
|
|
69
69
|
- sig/client.rbs
|
|
70
70
|
- sig/errors.rbs
|
|
71
|
+
- sig/params.rbs
|
|
71
72
|
- sig/resource.rbs
|
|
72
73
|
- sig/types.rbs
|
|
73
74
|
- sig/waiters.rbs
|