aws-sdk-ecs 1.214.0 → 1.215.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 +8 -6
- data/lib/aws-sdk-ecs.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 50e741af095dfe28ec91fc7a90f41ce291ad5e698e83fba1aca72a7175df0abd
|
|
4
|
+
data.tar.gz: 84095b0ea5c0b4e06a1006b4b834fc155e5ea91024e8763bebce28594b8f6998
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6489dfe28922bd87fc69c8810b44b86cdcbd21d1e05a6564ead45a2af2b60f70391fb286112a3ab56bd29b73f2c67c7c3edd2dde41bd62c9654ba28165c23a62
|
|
7
|
+
data.tar.gz: 412fa1aa19bb1f36946ba3f9ed2cda2e420a6abb383f3e85236bf9cd503f1579e120690eb3fcc5cf9a11ae61df9916c0bf3c26fc7b9d422ceb889667d34b4e30
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.215.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -10748,11 +10748,13 @@ module Aws::ECS
|
|
|
10748
10748
|
# deleted.
|
|
10749
10749
|
#
|
|
10750
10750
|
# When you call `StopTask` on a task, the equivalent of `docker stop` is
|
|
10751
|
-
# issued to the containers running in the task. This results in a
|
|
10752
|
-
#
|
|
10753
|
-
# `SIGKILL` value is sent and the containers are forcibly stopped.
|
|
10754
|
-
#
|
|
10755
|
-
#
|
|
10751
|
+
# issued to the containers running in the task. This results in a stop
|
|
10752
|
+
# signal value and a default 30-second timeout, after which the
|
|
10753
|
+
# `SIGKILL` value is sent and the containers are forcibly stopped. This
|
|
10754
|
+
# signal can be defined in your container image with the `STOPSIGNAL`
|
|
10755
|
+
# instruction and will default to `SIGTERM`. If the container handles
|
|
10756
|
+
# the `SIGTERM` value gracefully and exits within 30 seconds from
|
|
10757
|
+
# receiving it, no `SIGKILL` value is sent.
|
|
10756
10758
|
#
|
|
10757
10759
|
# For Windows containers, POSIX signals do not work and runtime stops
|
|
10758
10760
|
# the container by sending a `CTRL_SHUTDOWN_EVENT`. For more
|
|
@@ -14012,7 +14014,7 @@ module Aws::ECS
|
|
|
14012
14014
|
tracer: tracer
|
|
14013
14015
|
)
|
|
14014
14016
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
14015
|
-
context[:gem_version] = '1.
|
|
14017
|
+
context[:gem_version] = '1.215.0'
|
|
14016
14018
|
Seahorse::Client::Request.new(handlers, context)
|
|
14017
14019
|
end
|
|
14018
14020
|
|
data/lib/aws-sdk-ecs.rb
CHANGED