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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21a77f3157495f2e682563b38883e544689eafa49f19fad7451bd9950906ba94
4
- data.tar.gz: a98254d30a8e9d22487c6efa1f5c089a0e04c85cdff11b0426221774f8190bea
3
+ metadata.gz: 50e741af095dfe28ec91fc7a90f41ce291ad5e698e83fba1aca72a7175df0abd
4
+ data.tar.gz: 84095b0ea5c0b4e06a1006b4b834fc155e5ea91024e8763bebce28594b8f6998
5
5
  SHA512:
6
- metadata.gz: a66fd30ee85786fde4ea38fdf039036a154c44f836dfb8ee2d62bcb0e1aa203d70bcaccb6315804adb97374a42e3a8975d2a3dc58095b14236489076bad2d73f
7
- data.tar.gz: '0891bc234583bd1d592b28cd671a8adada54eb070c8094662db96558eb009703fba0a53311154fe703f18fab2ee85d45f220d2eda4837342f53b8edc41b43f15'
6
+ metadata.gz: 6489dfe28922bd87fc69c8810b44b86cdcbd21d1e05a6564ead45a2af2b60f70391fb286112a3ab56bd29b73f2c67c7c3edd2dde41bd62c9654ba28165c23a62
7
+ data.tar.gz: 412fa1aa19bb1f36946ba3f9ed2cda2e420a6abb383f3e85236bf9cd503f1579e120690eb3fcc5cf9a11ae61df9916c0bf3c26fc7b9d422ceb889667d34b4e30
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.215.0 (2025-12-05)
5
+ ------------------
6
+
7
+ * Feature - Updating stop-task API to encapsulate containers with custom stop signal
8
+
4
9
  1.214.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.214.0
1
+ 1.215.0
@@ -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
- # `SIGTERM` value and a default 30-second timeout, after which the
10753
- # `SIGKILL` value is sent and the containers are forcibly stopped. If
10754
- # the container handles the `SIGTERM` value gracefully and exits within
10755
- # 30 seconds from receiving it, no `SIGKILL` value is sent.
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.214.0'
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
@@ -55,7 +55,7 @@ module Aws::ECS
55
55
  autoload :EndpointProvider, 'aws-sdk-ecs/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ecs/endpoints'
57
57
 
58
- GEM_VERSION = '1.214.0'
58
+ GEM_VERSION = '1.215.0'
59
59
 
60
60
  end
61
61
 
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.214.0
4
+ version: 1.215.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services