aws-sdk-ecs 1.152.0 → 1.161.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 +45 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +258 -143
- data/lib/aws-sdk-ecs/client_api.rb +11 -0
- data/lib/aws-sdk-ecs/endpoints.rb +56 -224
- data/lib/aws-sdk-ecs/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-ecs/types.rb +551 -625
- data/lib/aws-sdk-ecs.rb +16 -12
- data/sig/client.rbs +7 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +8 -0
- metadata +4 -4
data/lib/aws-sdk-ecs.rb
CHANGED
@@ -11,17 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-ecs/client_api'
|
16
|
-
require_relative 'aws-sdk-ecs/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-ecs/client'
|
18
|
-
require_relative 'aws-sdk-ecs/errors'
|
19
|
-
require_relative 'aws-sdk-ecs/waiters'
|
20
|
-
require_relative 'aws-sdk-ecs/resource'
|
21
|
-
require_relative 'aws-sdk-ecs/endpoint_parameters'
|
22
|
-
require_relative 'aws-sdk-ecs/endpoint_provider'
|
23
|
-
require_relative 'aws-sdk-ecs/endpoints'
|
24
|
-
require_relative 'aws-sdk-ecs/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:ecs)
|
25
15
|
|
26
16
|
# This module provides support for Amazon EC2 Container Service. This module is available in the
|
27
17
|
# `aws-sdk-ecs` gem.
|
@@ -52,7 +42,21 @@ require_relative 'aws-sdk-ecs/customizations'
|
|
52
42
|
#
|
53
43
|
# @!group service
|
54
44
|
module Aws::ECS
|
45
|
+
autoload :Types, 'aws-sdk-ecs/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-ecs/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-ecs/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-ecs/client'
|
51
|
+
autoload :Errors, 'aws-sdk-ecs/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-ecs/waiters'
|
53
|
+
autoload :Resource, 'aws-sdk-ecs/resource'
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-ecs/endpoint_parameters'
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-ecs/endpoint_provider'
|
56
|
+
autoload :Endpoints, 'aws-sdk-ecs/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.161.0'
|
57
59
|
|
58
60
|
end
|
61
|
+
|
62
|
+
require_relative 'aws-sdk-ecs/customizations'
|
data/sig/client.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -51,6 +52,7 @@ module Aws
|
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?simple_json: bool,
|
53
54
|
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
56
|
?token_provider: untyped,
|
55
57
|
?use_dualstack_endpoint: bool,
|
56
58
|
?use_fips_endpoint: bool,
|
@@ -888,6 +890,11 @@ module Aws
|
|
888
890
|
},
|
889
891
|
]?,
|
890
892
|
essential: bool?,
|
893
|
+
restart_policy: {
|
894
|
+
enabled: bool,
|
895
|
+
ignored_exit_codes: Array[::Integer]?,
|
896
|
+
restart_attempt_period: ::Integer?
|
897
|
+
}?,
|
891
898
|
entry_point: Array[::String]?,
|
892
899
|
command: Array[::String]?,
|
893
900
|
environment: Array[
|
data/sig/resource.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -51,6 +52,7 @@ module Aws
|
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?simple_json: bool,
|
53
54
|
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
56
|
?token_provider: untyped,
|
55
57
|
?use_dualstack_endpoint: bool,
|
56
58
|
?use_fips_endpoint: bool,
|
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.161.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-09-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.207.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.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|