aws-sdk-ecs 1.77.0 → 1.78.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e445164b0e4079e2eaa8e135efa5be76393ba67e464e57d50f085aeb7d335c37
4
- data.tar.gz: 207a0b2c9f4198ef2e3756c8143d3b4c191ff7f6ae71cbbb099d6a92c78ae84a
3
+ metadata.gz: faf66a3300e6e2511e9e1476c901ad9fedefc0086bd4dc9274408b6599f21ff6
4
+ data.tar.gz: 30e2775986c5300956396fd6989c37f8de3f72e032b60017921458f2601eef95
5
5
  SHA512:
6
- metadata.gz: 8d8649e27ed33ae4a1a21fb6a54243b82c212f7c007df39618761eaefb002f580e07ec902251088594b809bfd4dcbd4d91287095f3adb0346d5c8f0278476953
7
- data.tar.gz: 26f6bc1dcd7ba0e77a7125c6bdc8ec709030569eb84a5cb41c7f4f75fb27df6d8cf4022d145c144a609dab1aefdede1ef9eb38a971cdc88dcdbd6170285f0794
6
+ metadata.gz: 6741505bae9c51cf802c7bcafb6aca825614aceedc443b3ace002ee49be249e5182d891e5c70081a0b2ec7a2b4324886350f10a24a1eed02fc64b3dc9dfe3fe4
7
+ data.tar.gz: d04f63c23729f68b8f4012728f2dbc83b6eecb72dc1bf5e1eadd3371e528246046c04e98a7eddb794164f175588b1148e8b837d82b81738dc4a7c6d76de23a42
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2021-05-10)
5
+ ------------------
6
+
7
+ * Feature - This release contains updates for Amazon ECS.
8
+
4
9
  1.77.0 (2021-04-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.78.0
data/lib/aws-sdk-ecs.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ecs/customizations'
49
49
  # @!group service
50
50
  module Aws::ECS
51
51
 
52
- GEM_VERSION = '1.77.0'
52
+ GEM_VERSION = '1.78.0'
53
53
 
54
54
  end
@@ -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 allowed.
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 unique within
782
- # a cluster, but you can have similarly named services in multiple
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.77.0'
8494
+ context[:gem_version] = '1.78.0'
8494
8495
  Seahorse::Client::Request.new(handlers, context)
8495
8496
  end
8496
8497
 
@@ -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` in the
1047
- # [Create a container][1] section of the [Docker Remote API][2] and
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, and
1237
- # hyphens are allowed. For more information about linking Docker
1238
- # containers, go to [Legacy container links][1] in the Docker
1239
- # documentation. This parameter maps to `Links` in the [Create a
1240
- # container][2] section of the [Docker Remote API][3] and the `--link`
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 allowed.
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 names must be
2720
- # unique within a cluster, but you can have similarly named services
2721
- # in multiple clusters within a Region or across multiple Regions.
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 allowed.
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 names must be
8906
- # unique within a cluster, but you can have similarly named services
8907
- # in multiple clusters within a Region or across multiple Regions.
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 referenced in the
11895
- # `sourceVolume` parameter of container definition `mountPoints`.
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.77.0
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-04-29 00:00:00.000000000 Z
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