aws-sdk-ecs 1.152.0 → 1.153.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.
data/lib/aws-sdk-ecs.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ecs/customizations'
53
53
  # @!group service
54
54
  module Aws::ECS
55
55
 
56
- GEM_VERSION = '1.152.0'
56
+ GEM_VERSION = '1.153.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -888,6 +888,11 @@ module Aws
888
888
  },
889
889
  ]?,
890
890
  essential: bool?,
891
+ restart_policy: {
892
+ enabled: bool,
893
+ ignored_exit_codes: Array[::Integer]?,
894
+ restart_attempt_period: ::Integer?
895
+ }?,
891
896
  entry_point: Array[::String]?,
892
897
  command: Array[::String]?,
893
898
  environment: Array[
data/sig/types.rbs CHANGED
@@ -174,6 +174,7 @@ module Aws::ECS
174
174
  attr_accessor links: ::Array[::String]
175
175
  attr_accessor port_mappings: ::Array[Types::PortMapping]
176
176
  attr_accessor essential: bool
177
+ attr_accessor restart_policy: Types::ContainerRestartPolicy
177
178
  attr_accessor entry_point: ::Array[::String]
178
179
  attr_accessor command: ::Array[::String]
179
180
  attr_accessor environment: ::Array[Types::KeyValuePair]
@@ -254,6 +255,13 @@ module Aws::ECS
254
255
  SENSITIVE: []
255
256
  end
256
257
 
258
+ class ContainerRestartPolicy
259
+ attr_accessor enabled: bool
260
+ attr_accessor ignored_exit_codes: ::Array[::Integer]
261
+ attr_accessor restart_attempt_period: ::Integer
262
+ SENSITIVE: []
263
+ end
264
+
257
265
  class ContainerStateChange
258
266
  attr_accessor container_name: ::String
259
267
  attr_accessor image_digest: ::String
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.152.0
4
+ version: 1.153.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: 2024-08-02 00:00:00.000000000 Z
11
+ date: 2024-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core