aws-sdk-ecs 1.77.0 → 1.78.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.rb +1 -1
- data/lib/aws-sdk-ecs/client.rb +7 -6
- data/lib/aws-sdk-ecs/types.rb +26 -20
- 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: faf66a3300e6e2511e9e1476c901ad9fedefc0086bd4dc9274408b6599f21ff6
|
|
4
|
+
data.tar.gz: 30e2775986c5300956396fd6989c37f8de3f72e032b60017921458f2601eef95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6741505bae9c51cf802c7bcafb6aca825614aceedc443b3ace002ee49be249e5182d891e5c70081a0b2ec7a2b4324886350f10a24a1eed02fc64b3dc9dfe3fe4
|
|
7
|
+
data.tar.gz: d04f63c23729f68b8f4012728f2dbc83b6eecb72dc1bf5e1eadd3371e528246046c04e98a7eddb794164f175588b1148e8b837d82b81738dc4a7c6d76de23a42
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.78.0
|
data/lib/aws-sdk-ecs.rb
CHANGED
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -461,7 +461,8 @@ module Aws::ECS
|
|
|
461
461
|
# @option params [String] :cluster_name
|
|
462
462
|
# The name of your cluster. If you do not specify a name for your
|
|
463
463
|
# cluster, you create a cluster named `default`. Up to 255 letters
|
|
464
|
-
# (uppercase and lowercase), numbers, and hyphens are
|
|
464
|
+
# (uppercase and lowercase), numbers, underscores, and hyphens are
|
|
465
|
+
# allowed.
|
|
465
466
|
#
|
|
466
467
|
# @option params [Array<Types::Tag>] :tags
|
|
467
468
|
# The metadata that you apply to the cluster to help you categorize and
|
|
@@ -778,9 +779,9 @@ module Aws::ECS
|
|
|
778
779
|
#
|
|
779
780
|
# @option params [required, String] :service_name
|
|
780
781
|
# The name of your service. Up to 255 letters (uppercase and lowercase),
|
|
781
|
-
# numbers, and hyphens are allowed. Service names must be
|
|
782
|
-
# a cluster, but you can have similarly named services in
|
|
783
|
-
# clusters within a Region or across multiple Regions.
|
|
782
|
+
# numbers, underscores, and hyphens are allowed. Service names must be
|
|
783
|
+
# unique within a cluster, but you can have similarly named services in
|
|
784
|
+
# multiple clusters within a Region or across multiple Regions.
|
|
784
785
|
#
|
|
785
786
|
# @option params [String] :task_definition
|
|
786
787
|
# The `family` and `revision` (`family:revision`) or full ARN of the
|
|
@@ -5361,7 +5362,7 @@ module Aws::ECS
|
|
|
5361
5362
|
# You must specify a `family` for a task definition, which allows you to
|
|
5362
5363
|
# track multiple versions of the same task definition. The `family` is
|
|
5363
5364
|
# used as a name for your task definition. Up to 255 letters (uppercase
|
|
5364
|
-
# and lowercase), numbers, and hyphens are allowed.
|
|
5365
|
+
# and lowercase), numbers, underscores, and hyphens are allowed.
|
|
5365
5366
|
#
|
|
5366
5367
|
# @option params [String] :task_role_arn
|
|
5367
5368
|
# The short name or full Amazon Resource Name (ARN) of the IAM role that
|
|
@@ -8490,7 +8491,7 @@ module Aws::ECS
|
|
|
8490
8491
|
params: params,
|
|
8491
8492
|
config: config)
|
|
8492
8493
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
8493
|
-
context[:gem_version] = '1.
|
|
8494
|
+
context[:gem_version] = '1.78.0'
|
|
8494
8495
|
Seahorse::Client::Request.new(handlers, context)
|
|
8495
8496
|
end
|
|
8496
8497
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
|
@@ -1043,9 +1043,9 @@ module Aws::ECS
|
|
|
1043
1043
|
# together in a task definition, the `name` of one container can be
|
|
1044
1044
|
# entered in the `links` of another container to connect the
|
|
1045
1045
|
# containers. Up to 255 letters (uppercase and lowercase), numbers,
|
|
1046
|
-
# and hyphens are allowed. This parameter maps to `name`
|
|
1047
|
-
# [Create a container][1] section of the [Docker Remote API][2]
|
|
1048
|
-
# the `--name` option to [docker run][3].
|
|
1046
|
+
# underscores, and hyphens are allowed. This parameter maps to `name`
|
|
1047
|
+
# in the [Create a container][1] section of the [Docker Remote API][2]
|
|
1048
|
+
# and the `--name` option to [docker run][3].
|
|
1049
1049
|
#
|
|
1050
1050
|
#
|
|
1051
1051
|
#
|
|
@@ -1233,12 +1233,12 @@ module Aws::ECS
|
|
|
1233
1233
|
# other without the need for port mappings. This parameter is only
|
|
1234
1234
|
# supported if the network mode of a task definition is `bridge`. The
|
|
1235
1235
|
# `name:internalName` construct is analogous to `name:alias` in Docker
|
|
1236
|
-
# links. Up to 255 letters (uppercase and lowercase), numbers,
|
|
1237
|
-
# hyphens are allowed. For more information about
|
|
1238
|
-
# containers, go to [Legacy container links][1] in the
|
|
1239
|
-
# documentation. This parameter maps to `Links` in the [Create
|
|
1240
|
-
# container][2] section of the [Docker Remote API][3] and the
|
|
1241
|
-
# option to [docker run][4].
|
|
1236
|
+
# links. Up to 255 letters (uppercase and lowercase), numbers,
|
|
1237
|
+
# underscores, and hyphens are allowed. For more information about
|
|
1238
|
+
# linking Docker containers, go to [Legacy container links][1] in the
|
|
1239
|
+
# Docker documentation. This parameter maps to `Links` in the [Create
|
|
1240
|
+
# a container][2] section of the [Docker Remote API][3] and the
|
|
1241
|
+
# `--link` option to [docker run][4].
|
|
1242
1242
|
#
|
|
1243
1243
|
# <note markdown="1"> This parameter is not supported for Windows containers.
|
|
1244
1244
|
#
|
|
@@ -2525,7 +2525,8 @@ module Aws::ECS
|
|
|
2525
2525
|
# @!attribute [rw] cluster_name
|
|
2526
2526
|
# The name of your cluster. If you do not specify a name for your
|
|
2527
2527
|
# cluster, you create a cluster named `default`. Up to 255 letters
|
|
2528
|
-
# (uppercase and lowercase), numbers, and hyphens are
|
|
2528
|
+
# (uppercase and lowercase), numbers, underscores, and hyphens are
|
|
2529
|
+
# allowed.
|
|
2529
2530
|
# @return [String]
|
|
2530
2531
|
#
|
|
2531
2532
|
# @!attribute [rw] tags
|
|
@@ -2716,9 +2717,10 @@ module Aws::ECS
|
|
|
2716
2717
|
#
|
|
2717
2718
|
# @!attribute [rw] service_name
|
|
2718
2719
|
# The name of your service. Up to 255 letters (uppercase and
|
|
2719
|
-
# lowercase), numbers, and hyphens are allowed. Service
|
|
2720
|
-
# unique within a cluster, but you can have similarly
|
|
2721
|
-
# in multiple clusters within a Region or across
|
|
2720
|
+
# lowercase), numbers, underscores, and hyphens are allowed. Service
|
|
2721
|
+
# names must be unique within a cluster, but you can have similarly
|
|
2722
|
+
# named services in multiple clusters within a Region or across
|
|
2723
|
+
# multiple Regions.
|
|
2722
2724
|
# @return [String]
|
|
2723
2725
|
#
|
|
2724
2726
|
# @!attribute [rw] task_definition
|
|
@@ -5021,7 +5023,8 @@ module Aws::ECS
|
|
|
5021
5023
|
#
|
|
5022
5024
|
# @!attribute [rw] interactive
|
|
5023
5025
|
# Whether or not the execute command session is running in interactive
|
|
5024
|
-
# mode.
|
|
5026
|
+
# mode. Amazon ECS only supports initiating interactive sessions, so
|
|
5027
|
+
# you must specify `true` for this value.
|
|
5025
5028
|
# @return [Boolean]
|
|
5026
5029
|
#
|
|
5027
5030
|
# @!attribute [rw] session
|
|
@@ -7980,7 +7983,8 @@ module Aws::ECS
|
|
|
7980
7983
|
# You must specify a `family` for a task definition, which allows you
|
|
7981
7984
|
# to track multiple versions of the same task definition. The `family`
|
|
7982
7985
|
# is used as a name for your task definition. Up to 255 letters
|
|
7983
|
-
# (uppercase and lowercase), numbers, and hyphens are
|
|
7986
|
+
# (uppercase and lowercase), numbers, underscores, and hyphens are
|
|
7987
|
+
# allowed.
|
|
7984
7988
|
# @return [String]
|
|
7985
7989
|
#
|
|
7986
7990
|
# @!attribute [rw] task_role_arn
|
|
@@ -8902,9 +8906,10 @@ module Aws::ECS
|
|
|
8902
8906
|
#
|
|
8903
8907
|
# @!attribute [rw] service_name
|
|
8904
8908
|
# The name of your service. Up to 255 letters (uppercase and
|
|
8905
|
-
# lowercase), numbers, and hyphens are allowed. Service
|
|
8906
|
-
# unique within a cluster, but you can have similarly
|
|
8907
|
-
# in multiple clusters within a Region or across
|
|
8909
|
+
# lowercase), numbers, underscores, and hyphens are allowed. Service
|
|
8910
|
+
# names must be unique within a cluster, but you can have similarly
|
|
8911
|
+
# named services in multiple clusters within a Region or across
|
|
8912
|
+
# multiple Regions.
|
|
8908
8913
|
# @return [String]
|
|
8909
8914
|
#
|
|
8910
8915
|
# @!attribute [rw] cluster_arn
|
|
@@ -11891,8 +11896,9 @@ module Aws::ECS
|
|
|
11891
11896
|
#
|
|
11892
11897
|
# @!attribute [rw] name
|
|
11893
11898
|
# The name of the volume. Up to 255 letters (uppercase and lowercase),
|
|
11894
|
-
# numbers, and hyphens are allowed. This name is
|
|
11895
|
-
# `sourceVolume` parameter of container definition
|
|
11899
|
+
# numbers, underscores, and hyphens are allowed. This name is
|
|
11900
|
+
# referenced in the `sourceVolume` parameter of container definition
|
|
11901
|
+
# `mountPoints`.
|
|
11896
11902
|
# @return [String]
|
|
11897
11903
|
#
|
|
11898
11904
|
# @!attribute [rw] host
|
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.78.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: 2021-
|
|
11
|
+
date: 2021-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|