aws-sdk-ecs 1.98.0 → 1.99.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: 49266dbfb72f7957a1825b64b2c26d47ee13b3a3a51d14d0ef4ac6bf4cf5c88e
4
- data.tar.gz: e714d5a38946aafca5e0cc96165c3150837569865956727f7c3247f24464dd82
3
+ metadata.gz: e16d5368ec5a0127b3f337f2e935d9ce1a7e327926777a8d45faff0fe8f33e9e
4
+ data.tar.gz: 66aec1d4a433701f7fc74995ad523a8b1afe54507844b495e5aa4c7f3312406b
5
5
  SHA512:
6
- metadata.gz: aae3ed5a949c62f52f95922719cc9915ca043d791ee74a373d40e2602140a00e28aa4ede58ac2fb95cbe8a8501a4c785130535a97ad1c5d71f6437cfcc660804
7
- data.tar.gz: 84060c32132051d81b6473e14823ccb425ecb5b8c09428839d6e4720ea1bbcd58746aebb47fb46f3736ee8b12a365e8c5c698d05310f108fb055bf1b281082a3
6
+ metadata.gz: 37790820c3e93c9ea722ea4c16fca49bba8c556021429edc4d83763c2abf5c697793fd24bfb4cd71700177f0535687851af3347daa2828343372b2c83fff08f7
7
+ data.tar.gz: cdada09a968a4763ad6f1b7703d454e1b7c79dd9403dc9129a923c1213bd8470e227080ab48ad5cb493440b5fed9c82c87b5b8eea6904ff52d92021de810e1bb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2022-03-22)
5
+ ------------------
6
+
7
+ * Feature - Documentation only update to address tickets
8
+
4
9
  1.98.0 (2022-03-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.98.0
1
+ 1.99.0
@@ -8275,8 +8275,32 @@ module Aws::ECS
8275
8275
  # configuration, and then stops the old tasks when the new tasks are
8276
8276
  # running.
8277
8277
  #
8278
+ # For services that use rolling updates, you can add, update, or remove
8279
+ # Elastic Load Balancing target groups. You can update from a single
8280
+ # target group to multiple target groups and from multiple target groups
8281
+ # to a single target group.
8282
+ #
8283
+ # For services that use blue/green deployments, you can update Elastic
8284
+ # Load Balancing target groups by using ` CreateDeployment ` through
8285
+ # CodeDeploy. Note that multiple target groups are not supported for
8286
+ # blue/green deployments. For more information see [Register multiple
8287
+ # target groups with a service][1] in the *Amazon Elastic Container
8288
+ # Service Developer Guide*.
8289
+ #
8290
+ # For services that use the external deployment controller, you can add,
8291
+ # update, or remove load balancers by using [CreateTaskSet][2]. Note
8292
+ # that multiple target groups are not supported for external
8293
+ # deployments. For more information see [Register multiple target groups
8294
+ # with a service][1] in the *Amazon Elastic Container Service Developer
8295
+ # Guide*.
8296
+ #
8278
8297
  # You can remove existing `loadBalancers` by passing an empty list.
8279
8298
  #
8299
+ #
8300
+ #
8301
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/register-multiple-targetgroups.html
8302
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateTaskSet.html
8303
+ #
8280
8304
  # @option params [String] :propagate_tags
8281
8305
  # Determines whether to propagate the tags from the task definition or
8282
8306
  # the service to the task. If no value is specified, the tags aren't
@@ -8729,7 +8753,7 @@ module Aws::ECS
8729
8753
  params: params,
8730
8754
  config: config)
8731
8755
  context[:gem_name] = 'aws-sdk-ecs'
8732
- context[:gem_version] = '1.98.0'
8756
+ context[:gem_version] = '1.99.0'
8733
8757
  Seahorse::Client::Request.new(handlers, context)
8734
8758
  end
8735
8759
 
@@ -6683,7 +6683,7 @@ module Aws::ECS
6683
6683
  # balancers with services and task sets, see the CreateService and
6684
6684
  # CreateTaskSet actions.
6685
6685
  #
6686
- # When you add, update, or remove a load blaancer configuration, Amazon
6686
+ # When you add, update, or remove a load balancer configuration, Amazon
6687
6687
  # ECS starts a new deployment with the updated Elastic Load Balancing
6688
6688
  # configuration. This causes tasks to register to and deregister from
6689
6689
  # load balancers.
@@ -12107,7 +12107,31 @@ module Aws::ECS
12107
12107
  # configuration, and then stops the old tasks when the new tasks are
12108
12108
  # running.
12109
12109
  #
12110
+ # For services that use rolling updates, you can add, update, or
12111
+ # remove Elastic Load Balancing target groups. You can update from a
12112
+ # single target group to multiple target groups and from multiple
12113
+ # target groups to a single target group.
12114
+ #
12115
+ # For services that use blue/green deployments, you can update Elastic
12116
+ # Load Balancing target groups by using ` CreateDeployment ` through
12117
+ # CodeDeploy. Note that multiple target groups are not supported for
12118
+ # blue/green deployments. For more information see [Register multiple
12119
+ # target groups with a service][1] in the *Amazon Elastic Container
12120
+ # Service Developer Guide*.
12121
+ #
12122
+ # For services that use the external deployment controller, you can
12123
+ # add, update, or remove load balancers by using [CreateTaskSet][2].
12124
+ # Note that multiple target groups are not supported for external
12125
+ # deployments. For more information see [Register multiple target
12126
+ # groups with a service][1] in the *Amazon Elastic Container Service
12127
+ # Developer Guide*.
12128
+ #
12110
12129
  # You can remove existing `loadBalancers` by passing an empty list.
12130
+ #
12131
+ #
12132
+ #
12133
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/register-multiple-targetgroups.html
12134
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateTaskSet.html
12111
12135
  # @return [Array<Types::LoadBalancer>]
12112
12136
  #
12113
12137
  # @!attribute [rw] propagate_tags
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.98.0'
52
+ GEM_VERSION = '1.99.0'
53
53
 
54
54
  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.98.0
4
+ version: 1.99.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: 2022-03-15 00:00:00.000000000 Z
11
+ date: 2022-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core