aws-sdk-ecs 1.90.0 → 1.94.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +17 -6
- data/lib/aws-sdk-ecs/types.rb +23 -6
- data/lib/aws-sdk-ecs.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b62c50b9fc913a1bd72efd43f5772bd445485d4e23d4aac533cf710fd2169f06
|
|
4
|
+
data.tar.gz: c324afbe5488ff3f81fb568dfa08e945bcb2c281c57f52f8fc5518a443c7bf46
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0dc2f6ddeb55cfd3d38641fd9df7a0a63f14af31dccac6704132046ccd6da328ab637751661ee5cd5be5e1398c2b5309d5e3572ec76571bee71a55f3922f8a2
|
|
7
|
+
data.tar.gz: 0230007a30d13d9b5a3f8dfe85de08eb964d01a774b7dbd6c2d9dfc0c2e0eb590b768c14ac44195102a3b4aa1cd38eee8ec014f29a9b4e3580c6ed333d2f3bf7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.94.0 (2022-01-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Documentation update for ticket fixes.
|
|
8
|
+
|
|
9
|
+
1.93.0 (2021-12-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.92.0 (2021-11-30)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.91.0 (2021-11-23)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Documentation update for ARM support on Amazon ECS.
|
|
23
|
+
|
|
4
24
|
1.90.0 (2021-11-10)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.94.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
32
33
|
|
|
@@ -73,6 +74,7 @@ module Aws::ECS
|
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
77
79
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
78
80
|
|
|
@@ -119,7 +121,9 @@ module Aws::ECS
|
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
-
# enable retries and extended timeouts.
|
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
126
|
+
# to true.
|
|
123
127
|
#
|
|
124
128
|
# @option options [required, String] :region
|
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -173,6 +177,10 @@ module Aws::ECS
|
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
175
179
|
#
|
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
|
183
|
+
#
|
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
|
178
186
|
# to default service endpoint when available.
|
|
@@ -305,7 +313,7 @@ module Aws::ECS
|
|
|
305
313
|
# seconds to wait when opening a HTTP session before raising a
|
|
306
314
|
# `Timeout::Error`.
|
|
307
315
|
#
|
|
308
|
-
# @option options [
|
|
316
|
+
# @option options [Float] :http_read_timeout (60) The default
|
|
309
317
|
# number of seconds to wait for response data. This value can
|
|
310
318
|
# safely be set per-request on the session.
|
|
311
319
|
#
|
|
@@ -321,6 +329,9 @@ module Aws::ECS
|
|
|
321
329
|
# disables this behaviour. This value can safely be set per
|
|
322
330
|
# request on the session.
|
|
323
331
|
#
|
|
332
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
|
333
|
+
# in seconds.
|
|
334
|
+
#
|
|
324
335
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
325
336
|
# HTTP debug output will be sent to the `:logger`.
|
|
326
337
|
#
|
|
@@ -6203,8 +6214,8 @@ module Aws::ECS
|
|
|
6203
6214
|
# place tasks manually on specific container instances.
|
|
6204
6215
|
#
|
|
6205
6216
|
# The Amazon ECS API follows an eventual consistency model. This is
|
|
6206
|
-
# because the distributed nature of the system supporting the API.
|
|
6207
|
-
# means that the result of an API command you run that affects your
|
|
6217
|
+
# because of the distributed nature of the system supporting the API.
|
|
6218
|
+
# This means that the result of an API command you run that affects your
|
|
6208
6219
|
# Amazon ECS resources might not be immediately visible to all
|
|
6209
6220
|
# subsequent commands you run. Keep this in mind when you carry out an
|
|
6210
6221
|
# API command that immediately follows a previous API command.
|
|
@@ -7867,7 +7878,7 @@ module Aws::ECS
|
|
|
7867
7878
|
# cluster, the default cluster is assumed.
|
|
7868
7879
|
#
|
|
7869
7880
|
# @option params [required, Array<String>] :container_instances
|
|
7870
|
-
# A list of container instance IDs or full ARN entries.
|
|
7881
|
+
# A list of up to 10 container instance IDs or full ARN entries.
|
|
7871
7882
|
#
|
|
7872
7883
|
# @option params [required, String] :status
|
|
7873
7884
|
# The container instance state to update the container instance with.
|
|
@@ -8603,7 +8614,7 @@ module Aws::ECS
|
|
|
8603
8614
|
params: params,
|
|
8604
8615
|
config: config)
|
|
8605
8616
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
8606
|
-
context[:gem_version] = '1.
|
|
8617
|
+
context[:gem_version] = '1.94.0'
|
|
8607
8618
|
Seahorse::Client::Request.new(handlers, context)
|
|
8608
8619
|
end
|
|
8609
8620
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
|
@@ -28,8 +28,8 @@ module Aws::ECS
|
|
|
28
28
|
#
|
|
29
29
|
# @!attribute [rw] status
|
|
30
30
|
# The status of the attachment. Valid values are `PRECREATED`,
|
|
31
|
-
# `CREATED`, `ATTACHING`, `ATTACHED`, `DETACHING`, `DETACHED`,
|
|
32
|
-
# `DELETED`.
|
|
31
|
+
# `CREATED`, `ATTACHING`, `ATTACHED`, `DETACHING`, `DETACHED`,
|
|
32
|
+
# `DELETED`, and `FAILED`.
|
|
33
33
|
# @return [String]
|
|
34
34
|
#
|
|
35
35
|
# @!attribute [rw] details
|
|
@@ -171,7 +171,8 @@ module Aws::ECS
|
|
|
171
171
|
# @!attribute [rw] managed_termination_protection
|
|
172
172
|
# The managed termination protection setting to use for the Auto
|
|
173
173
|
# Scaling group capacity provider. This determines whether the Auto
|
|
174
|
-
# Scaling group has managed termination protection.
|
|
174
|
+
# Scaling group has managed termination protection. The default is
|
|
175
|
+
# disabled.
|
|
175
176
|
#
|
|
176
177
|
# When using managed termination protection, managed scaling must also
|
|
177
178
|
# be used otherwise managed termination protection doesn't work.
|
|
@@ -1182,10 +1183,14 @@ module Aws::ECS
|
|
|
1182
1183
|
# available memory resources for the container instance where the
|
|
1183
1184
|
# container is placed. Otherwise, the value of `memory` is used.
|
|
1184
1185
|
#
|
|
1185
|
-
# The Docker daemon reserves a minimum of
|
|
1186
|
-
#
|
|
1186
|
+
# The Docker 20.10.0 or later daemon reserves a minimum of 6 MiB of
|
|
1187
|
+
# memory for a container, so you should not specify fewer than 6 MiB
|
|
1187
1188
|
# of memory for your containers.
|
|
1188
1189
|
#
|
|
1190
|
+
# The Docker 19.03.13-ce or earlier daemon reserves a minimum of 4 MiB
|
|
1191
|
+
# of memory for a container, so you should not specify fewer than 4
|
|
1192
|
+
# MiB of memory for your containers.
|
|
1193
|
+
#
|
|
1189
1194
|
#
|
|
1190
1195
|
#
|
|
1191
1196
|
# [1]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
|
|
@@ -8958,6 +8963,14 @@ module Aws::ECS
|
|
|
8958
8963
|
|
|
8959
8964
|
# Information about the platform for the Amazon ECS service or task.
|
|
8960
8965
|
#
|
|
8966
|
+
# For more informataion about `RuntimePlatform`, see
|
|
8967
|
+
# [RuntimePlatform][1] in the *Amazon Elastic Container Service
|
|
8968
|
+
# Developer Guide*.
|
|
8969
|
+
#
|
|
8970
|
+
#
|
|
8971
|
+
#
|
|
8972
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#runtime-platform
|
|
8973
|
+
#
|
|
8961
8974
|
# @note When making an API call, you may pass RuntimePlatform
|
|
8962
8975
|
# data as a hash:
|
|
8963
8976
|
#
|
|
@@ -8968,6 +8981,10 @@ module Aws::ECS
|
|
|
8968
8981
|
#
|
|
8969
8982
|
# @!attribute [rw] cpu_architecture
|
|
8970
8983
|
# The CPU architecture.
|
|
8984
|
+
#
|
|
8985
|
+
# You can run your Linux tasks on an ARM-based platform by setting the
|
|
8986
|
+
# value to `ARM64`. This option is avaiable for tasks that run on
|
|
8987
|
+
# Linuc Amazon EC2 instance or Linux containers on Fargate.
|
|
8971
8988
|
# @return [String]
|
|
8972
8989
|
#
|
|
8973
8990
|
# @!attribute [rw] operating_system_family
|
|
@@ -11672,7 +11689,7 @@ module Aws::ECS
|
|
|
11672
11689
|
# @return [String]
|
|
11673
11690
|
#
|
|
11674
11691
|
# @!attribute [rw] container_instances
|
|
11675
|
-
# A list of container instance IDs or full ARN entries.
|
|
11692
|
+
# A list of up to 10 container instance IDs or full ARN entries.
|
|
11676
11693
|
# @return [Array<String>]
|
|
11677
11694
|
#
|
|
11678
11695
|
# @!attribute [rw] status
|
data/lib/aws-sdk-ecs.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.94.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.125.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.125.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|