aws-sdk-ecs 1.113.0 → 1.114.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: a76ffb05a916f4f3f5ccd7fec5cbc2e06e8fb1c39f8e62066877416fd0d5e853
4
- data.tar.gz: 61381602f6d9cdb9733bfabd38ddac65a0322afd32b59ebf072984c86471a5dc
3
+ metadata.gz: c14e1ae322a80a0e104527e1d5f5608f133a9c55b1fafff4f9557230d24404ff
4
+ data.tar.gz: b66f29af6d95589d8365dd099f19d8babf2ddb1c781a6152450d84ee9f04879f
5
5
  SHA512:
6
- metadata.gz: 7bb1494e02873743999bbea2dcddefed53ee93a42a0258fcfde18ff55880441a510751c5b5131750fa30f6c1406b8917111019353414d5d374b5f86491dbdfea
7
- data.tar.gz: 636e49a6438e17287d95dccd965c853c468827cf927bba3c25061d44e3dc7b08005b161838eacea58b2d5bab9afa0b348752a7c0c05fa9b1866b83000dd60bab
6
+ metadata.gz: 58dd9bb74b69d618eaa6a91068349bc7a4042779e565c003ac9ea021ff58d2a29cbebf838bc687c598f19eb1e52d09ff6140131d40b30309b8e609bdfafa7971
7
+ data.tar.gz: 477cf6d183bb9f79eedc1a2809261e92b0209a4e72e59fc4ff602cf110816d0f09e42ecb4433ca3af39335ff977738ef9366dfdbdb58fd853e6ad35a7b069321
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.114.0 (2023-04-14)
5
+ ------------------
6
+
7
+ * Feature - This release supports ephemeral storage for AWS Fargate Windows containers.
8
+
4
9
  1.113.0 (2023-04-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.113.0
1
+ 1.114.0
@@ -9683,7 +9683,7 @@ module Aws::ECS
9683
9683
  params: params,
9684
9684
  config: config)
9685
9685
  context[:gem_name] = 'aws-sdk-ecs'
9686
- context[:gem_version] = '1.113.0'
9686
+ context[:gem_version] = '1.114.0'
9687
9687
  Seahorse::Client::Request.new(handlers, context)
9688
9688
  end
9689
9689
 
@@ -1624,42 +1624,47 @@ module Aws::ECS
1624
1624
  # @return [Array<Types::HostEntry>]
1625
1625
  #
1626
1626
  # @!attribute [rw] docker_security_options
1627
- # A list of strings to provide custom labels for SELinux and AppArmor
1628
- # multi-level security systems. This field isn't valid for containers
1629
- # in tasks using the Fargate launch type.
1627
+ # A list of strings to provide custom configuration for multiple
1628
+ # security systems. For more information about valid values, see
1629
+ # [Docker Run Security Configuration][1]. This field isn't valid for
1630
+ # containers in tasks using the Fargate launch type.
1630
1631
  #
1631
- # With Windows containers, this parameter can be used to reference a
1632
- # credential spec file when configuring a container for Active
1632
+ # For Linux tasks on EC2, this parameter can be used to reference
1633
+ # custom labels for SELinux and AppArmor multi-level security systems.
1634
+ #
1635
+ # For any tasks on EC2, this parameter can be used to reference a
1636
+ # credential spec file that configures a container for Active
1633
1637
  # Directory authentication. For more information, see [Using gMSAs for
1634
- # Windows Containers][1] in the *Amazon Elastic Container Service
1635
- # Developer Guide*.
1638
+ # Windows Containers][2] and [Using gMSAs for Linux Containers][3] in
1639
+ # the *Amazon Elastic Container Service Developer Guide*.
1636
1640
  #
1637
- # This parameter maps to `SecurityOpt` in the [Create a container][2]
1638
- # section of the [Docker Remote API][3] and the `--security-opt`
1639
- # option to [docker run][4].
1641
+ # This parameter maps to `SecurityOpt` in the [Create a container][4]
1642
+ # section of the [Docker Remote API][5] and the `--security-opt`
1643
+ # option to [docker run][1].
1640
1644
  #
1641
1645
  # <note markdown="1"> The Amazon ECS container agent running on a container instance must
1642
1646
  # register with the `ECS_SELINUX_CAPABLE=true` or
1643
1647
  # `ECS_APPARMOR_CAPABLE=true` environment variables before containers
1644
1648
  # placed on that instance can use these security options. For more
1645
- # information, see [Amazon ECS Container Agent Configuration][5] in
1649
+ # information, see [Amazon ECS Container Agent Configuration][6] in
1646
1650
  # the *Amazon Elastic Container Service Developer Guide*.
1647
1651
  #
1648
1652
  # </note>
1649
1653
  #
1650
1654
  # For more information about valid values, see [Docker Run Security
1651
- # Configuration][4].
1655
+ # Configuration][1].
1652
1656
  #
1653
1657
  # Valid values: "no-new-privileges" \| "apparmor:PROFILE" \|
1654
1658
  # "label:value" \| "credentialspec:CredentialSpecFilePath"
1655
1659
  #
1656
1660
  #
1657
1661
  #
1658
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/windows-gmsa.html
1659
- # [2]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
1660
- # [3]: https://docs.docker.com/engine/api/v1.35/
1661
- # [4]: https://docs.docker.com/engine/reference/run/#security-configuration
1662
- # [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
1662
+ # [1]: https://docs.docker.com/engine/reference/run/#security-configuration
1663
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/windows-gmsa.html
1664
+ # [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/linux-gmsa.html
1665
+ # [4]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
1666
+ # [5]: https://docs.docker.com/engine/api/v1.35/
1667
+ # [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
1663
1668
  # @return [Array<String>]
1664
1669
  #
1665
1670
  # @!attribute [rw] interactive
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.113.0'
56
+ GEM_VERSION = '1.114.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.113.0
4
+ version: 1.114.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-10 00:00:00.000000000 Z
11
+ date: 2023-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core