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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ca30e3806f75411b24b361c388cdb2009426d17f9de6da79fd1e71af4886b0b
4
- data.tar.gz: 24955861fac0e68d2ad944d2b37edfc3bd21d9b9805b3b36571ae56b3da23096
3
+ metadata.gz: c9d5abbd33de57234e3078be526939c5597427b4eede4c19c00673fdaad5f396
4
+ data.tar.gz: df76354c0704f80d1e6f928cd61454cb90c8bd8611a71f6b20aecf1589c09cd4
5
5
  SHA512:
6
- metadata.gz: e2049b552727eac77b8e7913b1c5e577842212ee06d596e3e1f7222b1aae807942a5f7a2a538961343b384d577b2a7b75f12928826597dfafee590fde0bc2ca4
7
- data.tar.gz: 550f9502d73c6c4fab93bb92bc6d7553249905566c9886731d829ab5b8eae50a22fe391bfa7d5bfda055386a387553115ea678ae9c9d481a88d80915532f291e
6
+ metadata.gz: 03343a21e3e167f02764d438d3a6b16e02bdd59a1d50f224a5e61d767a760e3065a239a61455279d2516fce34cf68d54328f7e18a796521c5548cfac4c016935
7
+ data.tar.gz: 8240e9af8ac51480be4922d4079bcd52cd3665ee1dd1c031a6af0fe92126edd0e93847257f57a5d003e233059c7a53564b66d191e189ff3311edc7fddac8a5bb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2023-04-21)
5
+ ------------------
6
+
7
+ * Feature - Documentation update to address various Amazon ECS tickets.
8
+
4
9
  1.115.0 (2023-04-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.115.0
1
+ 1.116.0
@@ -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/AWSEC2ContainerServiceDocs/build/server-root/AmazonECS/latest/developerguide/ecs-fips-compliance.html
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.115.0'
9707
+ context[:gem_version] = '1.116.0'
9708
9708
  Seahorse::Client::Request.new(handlers, context)
9709
9709
  end
9710
9710
 
@@ -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/AWSEC2ContainerServiceDocs/build/server-root/AmazonECS/latest/developerguide/ecs-fips-compliance.html
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
@@ -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.115.0'
56
+ GEM_VERSION = '1.116.0'
57
57
 
58
58
  end
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.115.0
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-19 00:00:00.000000000 Z
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