aws-sdk-ecs 1.144.0 → 1.145.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: 21435feeacbac309446d33890d3261f38cbea1d23a3db469faec64a0e411794d
4
- data.tar.gz: '042429b968f451e6c444328e330c0edf316dfb689cdbe6c687308a92d21f084f'
3
+ metadata.gz: 28aaaa491aa79993e7d0f66a3cdfdee12f7c1780d4a60d57dfeb14b78e1c6fa9
4
+ data.tar.gz: 77b11c809ff641d82bb22320a7ee0b33d18dee8c3a5e3e25e2cdc98d23613940
5
5
  SHA512:
6
- metadata.gz: e068ccad0cd96cdb5cbf651480dcd5722556d16585469d90d0e7bbf87d16f07fe7373bc3bb5354449d6d37481c43a12820d0836ec081f0e71170c316291c8907
7
- data.tar.gz: 39a8dbe4a43be21989ff613142369cac8d8bf3f450d3df8bcfa2141c3c4427f8c4ee157f1902f3478739bce95b71fad2623e9298d1cbbffc0db8da910c314c54
6
+ metadata.gz: e4d1a8e77321cf0cc1a9e9e6de9f995e3a90e5f7114b87e0141512a29ceec685f7e62fcb68007bb2e1a0797b1ae1bfd0d14a43c68cbf6cddc11fec8a3f47c028
7
+ data.tar.gz: 9887951dbbf82eed3edd9e202b8037f6201b5161a9a8605ddff32e8225f6cc7fecd9ca99277808a62e72b60216d458130315c63ce0fc76c1f624d37bc030833c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.145.0 (2024-04-02)
5
+ ------------------
6
+
7
+ * Feature - Documentation only update for Amazon ECS.
8
+
4
9
  1.144.0 (2024-03-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.144.0
1
+ 1.145.0
@@ -7430,28 +7430,22 @@ module Aws::ECS
7430
7430
  # task definition to run. If a `revision` isn't specified, the latest
7431
7431
  # `ACTIVE` revision is used.
7432
7432
  #
7433
- # When you create a policy for run-task, you can set the resource to be
7434
- # the latest task definition revision, or a specific revision.
7435
- #
7436
7433
  # The full ARN value must match the value that you specified as the
7437
7434
  # `Resource` of the principal's permissions policy.
7438
7435
  #
7439
- # When you specify the policy resource as the latest task definition
7440
- # version (by setting the `Resource` in the policy to
7441
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName`),
7442
- # then set this value to
7443
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName`.
7436
+ # When you specify a task definition, you must either specify a specific
7437
+ # revision, or all revisions in the ARN.
7438
+ #
7439
+ # To specify a specific revision, include the revision number in the
7440
+ # ARN. For example, to specify revision 2, use
7441
+ # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2`.
7444
7442
  #
7445
- # When you specify the policy resource as a specific task definition
7446
- # version (by setting the `Resource` in the policy to
7447
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1`
7448
- # or
7449
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*`),
7450
- # then set this value to
7451
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1`.
7443
+ # To specify all revisions, use the wildcard (*) in the ARN. For
7444
+ # example, to specify all revisions, use
7445
+ # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*`.
7452
7446
  #
7453
7447
  # For more information, see [Policy Resources for Amazon ECS][1] in the
7454
- # Amazon Elastic Container Service developer Guide.
7448
+ # Amazon Elastic Container Service Developer Guide.
7455
7449
  #
7456
7450
  #
7457
7451
  #
@@ -10259,7 +10253,7 @@ module Aws::ECS
10259
10253
  params: params,
10260
10254
  config: config)
10261
10255
  context[:gem_name] = 'aws-sdk-ecs'
10262
- context[:gem_version] = '1.144.0'
10256
+ context[:gem_version] = '1.145.0'
10263
10257
  Seahorse::Client::Request.new(handlers, context)
10264
10258
  end
10265
10259
 
@@ -3833,6 +3833,16 @@ module Aws::ECS
3833
3833
  # return a healthy status before counting the task towards the
3834
3834
  # minimum healthy percent total.
3835
3835
  #
3836
+ # The default value for a replica service for `minimumHealthyPercent`
3837
+ # is 100%. The default `minimumHealthyPercent` value for a service
3838
+ # using the `DAEMON` service schedule is 0% for the CLI, the Amazon
3839
+ # Web Services SDKs, and the APIs and 50% for the Amazon Web Services
3840
+ # Management Console.
3841
+ #
3842
+ # The minimum number of healthy tasks during a deployment is the
3843
+ # `desiredCount` multiplied by the `minimumHealthyPercent`/100,
3844
+ # rounded up to the nearest integer value.
3845
+ #
3836
3846
  # If a service is using either the blue/green (`CODE_DEPLOY`) or
3837
3847
  # `EXTERNAL` deployment types and is running tasks that use the EC2
3838
3848
  # launch type, the **minimum healthy percent** value is set to the
@@ -8603,28 +8613,22 @@ module Aws::ECS
8603
8613
  # task definition to run. If a `revision` isn't specified, the latest
8604
8614
  # `ACTIVE` revision is used.
8605
8615
  #
8606
- # When you create a policy for run-task, you can set the resource to
8607
- # be the latest task definition revision, or a specific revision.
8608
- #
8609
8616
  # The full ARN value must match the value that you specified as the
8610
8617
  # `Resource` of the principal's permissions policy.
8611
8618
  #
8612
- # When you specify the policy resource as the latest task definition
8613
- # version (by setting the `Resource` in the policy to
8614
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName`),
8615
- # then set this value to
8616
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName`.
8619
+ # When you specify a task definition, you must either specify a
8620
+ # specific revision, or all revisions in the ARN.
8621
+ #
8622
+ # To specify a specific revision, include the revision number in the
8623
+ # ARN. For example, to specify revision 2, use
8624
+ # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2`.
8617
8625
  #
8618
- # When you specify the policy resource as a specific task definition
8619
- # version (by setting the `Resource` in the policy to
8620
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1`
8621
- # or
8622
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*`),
8623
- # then set this value to
8624
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1`.
8626
+ # To specify all revisions, use the wildcard (*) in the ARN. For
8627
+ # example, to specify all revisions, use
8628
+ # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*`.
8625
8629
  #
8626
8630
  # For more information, see [Policy Resources for Amazon ECS][1] in
8627
- # the Amazon Elastic Container Service developer Guide.
8631
+ # the Amazon Elastic Container Service Developer Guide.
8628
8632
  #
8629
8633
  #
8630
8634
  #
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.144.0'
56
+ GEM_VERSION = '1.145.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.144.0
4
+ version: 1.145.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: 2024-03-26 00:00:00.000000000 Z
11
+ date: 2024-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core