aws-sdk-ecs 1.93.0 → 1.96.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +8 -4
- data/lib/aws-sdk-ecs/types.rb +5 -4
- 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: ee0ab596fb46070b4afe1dc2741a478a8ed9143f494a9210e177dc6e2ce324d1
|
|
4
|
+
data.tar.gz: babab9b58e3ec0d076f9fa9cfced0572f235fa9cd70090f449d3047e352f8f27
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b03ebdf1cc2ff27e08cb0ddcfba5f94f0a6ce3299d93ea7dc9b30620ad54ae0e35211daef1f41f801da07e076256136b2412dba4851ab5cdfbf9bb8c646ec3c
|
|
7
|
+
data.tar.gz: e2c739ad2457df5e233eef8464c90fc20ba4efd21df2920f29f9af4a4b4a6bcefe66847e44ab8558f6e16d3a8e9562d92b1d94033ca00449e222e69f1fefddb9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.96.0 (2022-02-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.95.0 (2022-02-03)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.94.0 (2022-01-05)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Documentation update for ticket fixes.
|
|
18
|
+
|
|
4
19
|
1.93.0 (2021-12-21)
|
|
5
20
|
------------------
|
|
6
21
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.96.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -27,7 +27,9 @@ 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/checksum_algorithm.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
32
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
33
35
|
|
|
@@ -74,7 +76,9 @@ module Aws::ECS
|
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
79
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
80
84
|
|
|
@@ -6214,8 +6218,8 @@ module Aws::ECS
|
|
|
6214
6218
|
# place tasks manually on specific container instances.
|
|
6215
6219
|
#
|
|
6216
6220
|
# The Amazon ECS API follows an eventual consistency model. This is
|
|
6217
|
-
# because the distributed nature of the system supporting the API.
|
|
6218
|
-
# means that the result of an API command you run that affects your
|
|
6221
|
+
# because of the distributed nature of the system supporting the API.
|
|
6222
|
+
# This means that the result of an API command you run that affects your
|
|
6219
6223
|
# Amazon ECS resources might not be immediately visible to all
|
|
6220
6224
|
# subsequent commands you run. Keep this in mind when you carry out an
|
|
6221
6225
|
# API command that immediately follows a previous API command.
|
|
@@ -7878,7 +7882,7 @@ module Aws::ECS
|
|
|
7878
7882
|
# cluster, the default cluster is assumed.
|
|
7879
7883
|
#
|
|
7880
7884
|
# @option params [required, Array<String>] :container_instances
|
|
7881
|
-
# A list of container instance IDs or full ARN entries.
|
|
7885
|
+
# A list of up to 10 container instance IDs or full ARN entries.
|
|
7882
7886
|
#
|
|
7883
7887
|
# @option params [required, String] :status
|
|
7884
7888
|
# The container instance state to update the container instance with.
|
|
@@ -8614,7 +8618,7 @@ module Aws::ECS
|
|
|
8614
8618
|
params: params,
|
|
8615
8619
|
config: config)
|
|
8616
8620
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
8617
|
-
context[:gem_version] = '1.
|
|
8621
|
+
context[:gem_version] = '1.96.0'
|
|
8618
8622
|
Seahorse::Client::Request.new(handlers, context)
|
|
8619
8623
|
end
|
|
8620
8624
|
|
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.
|
|
@@ -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
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.96.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-02-24 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.127.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.127.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|