aws-sdk-ecs 1.115.0 → 1.116.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 +2 -2
- data/lib/aws-sdk-ecs/types.rb +20 -1
- data/lib/aws-sdk-ecs.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9d5abbd33de57234e3078be526939c5597427b4eede4c19c00673fdaad5f396
|
|
4
|
+
data.tar.gz: df76354c0704f80d1e6f928cd61454cb90c8bd8611a71f6b20aecf1589c09cd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 03343a21e3e167f02764d438d3a6b16e02bdd59a1d50f224a5e61d767a760e3065a239a61455279d2516fce34cf68d54328f7e18a796521c5548cfac4c016935
|
|
7
|
+
data.tar.gz: 8240e9af8ac51480be4922d4079bcd52cd3665ee1dd1c031a6af0fe92126edd0e93847257f57a5d003e233059c7a53564b66d191e189ff3311edc7fddac8a5bb
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.116.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -5591,7 +5591,7 @@ module Aws::ECS
|
|
|
5591
5591
|
#
|
|
5592
5592
|
#
|
|
5593
5593
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#tag-resources
|
|
5594
|
-
# [2]: https://docs.aws.amazon.com/
|
|
5594
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-fips-compliance.html
|
|
5595
5595
|
#
|
|
5596
5596
|
# @option params [required, String] :value
|
|
5597
5597
|
# The account setting value for the specified principal ARN. Accepted
|
|
@@ -9704,7 +9704,7 @@ module Aws::ECS
|
|
|
9704
9704
|
params: params,
|
|
9705
9705
|
config: config)
|
|
9706
9706
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
9707
|
-
context[:gem_version] = '1.
|
|
9707
|
+
context[:gem_version] = '1.116.0'
|
|
9708
9708
|
Seahorse::Client::Request.new(handlers, context)
|
|
9709
9709
|
end
|
|
9710
9710
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
|
@@ -5408,6 +5408,9 @@ module Aws::ECS
|
|
|
5408
5408
|
# <note markdown="1"> If you're using tasks that use the Fargate launch type, the
|
|
5409
5409
|
# `maxSwap` parameter isn't supported.
|
|
5410
5410
|
#
|
|
5411
|
+
# If you're using tasks on Amazon Linux 2023 the `swappiness`
|
|
5412
|
+
# parameter isn't supported.
|
|
5413
|
+
#
|
|
5411
5414
|
# </note>
|
|
5412
5415
|
#
|
|
5413
5416
|
#
|
|
@@ -5429,6 +5432,9 @@ module Aws::ECS
|
|
|
5429
5432
|
# <note markdown="1"> If you're using tasks that use the Fargate launch type, the
|
|
5430
5433
|
# `swappiness` parameter isn't supported.
|
|
5431
5434
|
#
|
|
5435
|
+
# If you're using tasks on Amazon Linux 2023 the `swappiness`
|
|
5436
|
+
# parameter isn't supported.
|
|
5437
|
+
#
|
|
5432
5438
|
# </note>
|
|
5433
5439
|
#
|
|
5434
5440
|
#
|
|
@@ -6846,6 +6852,13 @@ module Aws::ECS
|
|
|
6846
6852
|
# mode, specify the exposed ports using `containerPort`. The `hostPort`
|
|
6847
6853
|
# can be left blank or it must be the same value as the `containerPort`.
|
|
6848
6854
|
#
|
|
6855
|
+
# Most fields of this parameter (`containerPort`, `hostPort`,
|
|
6856
|
+
# `protocol`) maps to `PortBindings` in the [Create a container][1]
|
|
6857
|
+
# section of the [Docker Remote API][2] and the `--publish` option to [
|
|
6858
|
+
# `docker run` ][3]. If the network mode of a task definition is set to
|
|
6859
|
+
# `host`, host ports must either be undefined or match the container
|
|
6860
|
+
# port in the port mapping.
|
|
6861
|
+
#
|
|
6849
6862
|
# <note markdown="1"> You can't expose the same container port for multiple protocols. If
|
|
6850
6863
|
# you attempt this, an error is returned.
|
|
6851
6864
|
#
|
|
@@ -6855,6 +6868,12 @@ module Aws::ECS
|
|
|
6855
6868
|
# and container port assignments are visible in the `networkBindings`
|
|
6856
6869
|
# section of DescribeTasks API responses.
|
|
6857
6870
|
#
|
|
6871
|
+
#
|
|
6872
|
+
#
|
|
6873
|
+
# [1]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
|
|
6874
|
+
# [2]: https://docs.docker.com/engine/api/v1.35/
|
|
6875
|
+
# [3]: https://docs.docker.com/engine/reference/commandline/run/
|
|
6876
|
+
#
|
|
6858
6877
|
# @!attribute [rw] container_port
|
|
6859
6878
|
# The port number on the container that's bound to the user-specified
|
|
6860
6879
|
# or automatically assigned host port.
|
|
@@ -7162,7 +7181,7 @@ module Aws::ECS
|
|
|
7162
7181
|
#
|
|
7163
7182
|
#
|
|
7164
7183
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#tag-resources
|
|
7165
|
-
# [2]: https://docs.aws.amazon.com/
|
|
7184
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-fips-compliance.html
|
|
7166
7185
|
# @return [String]
|
|
7167
7186
|
#
|
|
7168
7187
|
# @!attribute [rw] value
|
data/lib/aws-sdk-ecs.rb
CHANGED
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.116.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: 2023-04-
|
|
11
|
+
date: 2023-04-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|