aws-sdk-ecs 1.113.0 → 1.114.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +1 -1
- data/lib/aws-sdk-ecs/types.rb +22 -17
- 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: c14e1ae322a80a0e104527e1d5f5608f133a9c55b1fafff4f9557230d24404ff
|
4
|
+
data.tar.gz: b66f29af6d95589d8365dd099f19d8babf2ddb1c781a6152450d84ee9f04879f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58dd9bb74b69d618eaa6a91068349bc7a4042779e565c003ac9ea021ff58d2a29cbebf838bc687c598f19eb1e52d09ff6140131d40b30309b8e609bdfafa7971
|
7
|
+
data.tar.gz: 477cf6d183bb9f79eedc1a2809261e92b0209a4e72e59fc4ff602cf110816d0f09e42ecb4433ca3af39335ff977738ef9366dfdbdb58fd853e6ad35a7b069321
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.114.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -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
|
1628
|
-
#
|
1629
|
-
#
|
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
|
-
#
|
1632
|
-
#
|
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][
|
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][
|
1638
|
-
# section of the [Docker Remote API][
|
1639
|
-
# option to [docker run][
|
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][
|
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][
|
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.
|
1659
|
-
# [2]: https://docs.
|
1660
|
-
# [3]: https://docs.
|
1661
|
-
# [4]: https://docs.docker.com/engine/
|
1662
|
-
# [5]: https://docs.
|
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
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.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-
|
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
|