aws-sdk-ecs 1.151.0 → 1.154.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +224 -133
- data/lib/aws-sdk-ecs/client_api.rb +10 -0
- data/lib/aws-sdk-ecs/types.rb +509 -602
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +5 -0
- data/sig/types.rbs +8 -0
- metadata +2 -2
data/lib/aws-sdk-ecs.rb
CHANGED
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.
|
4
|
+
version: 1.154.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-
|
11
|
+
date: 2024-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|