aws-sdk-ecs 1.91.0 → 1.95.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5824f7f4a1dd7bcf4e689a3806239f9befb8593b386beb1a479bed2f5474787f
4
- data.tar.gz: 941a624bc453c8ca23b187b6c808fc646b8823692b99f650934de2ce522b73d3
3
+ metadata.gz: 8da0a8e5602cca8baead650117df3b274864c833d44d8e8981c1335d4d0a0383
4
+ data.tar.gz: e2c81092e792c3b55d9ed93f6d85e13d49320aa8f6b0a1d3452ee0f67cbdf467
5
5
  SHA512:
6
- metadata.gz: 7a65d1cde1528a80a7669f762ff6b079a8572514bea7a0b48aa0382bf3880498db692bc88c4a4aa7fc02e1417fa1398c81c173ac559c0c74507e05b1012d93f3
7
- data.tar.gz: eb3bc6963a2f2139654f71e953f8f434132c044a947abf69c27855cc06ea2df253e9329484738e708a667445b6561b5bc1600f7e2bc6f06db3e69377efd2c4e7
6
+ metadata.gz: 2476cc7a3d218059fce76b2b9dd7b36eeff7e730cfddc997184cbabdb4e5ee759558880e11a8c1fdee4d19fd5234c5cf8790d05462e16db8ebd70c7977c9990f
7
+ data.tar.gz: 3a8fb805909d2c1c1f70a62bd14fcde928c0a17a0b5f8c6e6a4664a856d3ac39e7659ee01e43ec5cc9516153a48e33c34b831985733b9982a144a2bbee989c8c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.95.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.94.0 (2022-01-05)
10
+ ------------------
11
+
12
+ * Feature - Documentation update for ticket fixes.
13
+
14
+ 1.93.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.92.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.91.0 (2021-11-23)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.95.0
@@ -27,6 +27,8 @@ 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'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::ECS
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -119,7 +123,9 @@ module Aws::ECS
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::ECS
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -305,7 +315,7 @@ module Aws::ECS
305
315
  # seconds to wait when opening a HTTP session before raising a
306
316
  # `Timeout::Error`.
307
317
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
309
319
  # number of seconds to wait for response data. This value can
310
320
  # safely be set per-request on the session.
311
321
  #
@@ -321,6 +331,9 @@ module Aws::ECS
321
331
  # disables this behaviour. This value can safely be set per
322
332
  # request on the session.
323
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
324
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
338
  # HTTP debug output will be sent to the `:logger`.
326
339
  #
@@ -6203,8 +6216,8 @@ module Aws::ECS
6203
6216
  # place tasks manually on specific container instances.
6204
6217
  #
6205
6218
  # The Amazon ECS API follows an eventual consistency model. This is
6206
- # because the distributed nature of the system supporting the API. This
6207
- # means that the result of an API command you run that affects your
6219
+ # because of the distributed nature of the system supporting the API.
6220
+ # This means that the result of an API command you run that affects your
6208
6221
  # Amazon ECS resources might not be immediately visible to all
6209
6222
  # subsequent commands you run. Keep this in mind when you carry out an
6210
6223
  # API command that immediately follows a previous API command.
@@ -7867,7 +7880,7 @@ module Aws::ECS
7867
7880
  # cluster, the default cluster is assumed.
7868
7881
  #
7869
7882
  # @option params [required, Array<String>] :container_instances
7870
- # A list of container instance IDs or full ARN entries.
7883
+ # A list of up to 10 container instance IDs or full ARN entries.
7871
7884
  #
7872
7885
  # @option params [required, String] :status
7873
7886
  # The container instance state to update the container instance with.
@@ -8603,7 +8616,7 @@ module Aws::ECS
8603
8616
  params: params,
8604
8617
  config: config)
8605
8618
  context[:gem_name] = 'aws-sdk-ecs'
8606
- context[:gem_version] = '1.91.0'
8619
+ context[:gem_version] = '1.95.0'
8607
8620
  Seahorse::Client::Request.new(handlers, context)
8608
8621
  end
8609
8622
 
@@ -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`, and
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.
@@ -11688,7 +11689,7 @@ module Aws::ECS
11688
11689
  # @return [String]
11689
11690
  #
11690
11691
  # @!attribute [rw] container_instances
11691
- # A list of container instance IDs or full ARN entries.
11692
+ # A list of up to 10 container instance IDs or full ARN entries.
11692
11693
  # @return [Array<String>]
11693
11694
  #
11694
11695
  # @!attribute [rw] status
data/lib/aws-sdk-ecs.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ecs/customizations'
49
49
  # @!group service
50
50
  module Aws::ECS
51
51
 
52
- GEM_VERSION = '1.91.0'
52
+ GEM_VERSION = '1.95.0'
53
53
 
54
54
  end
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.91.0
4
+ version: 1.95.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: 2021-11-23 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement