aws-sdk-ecs 1.144.0 → 1.145.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/client.rb +11 -17
- data/lib/aws-sdk-ecs/types.rb +20 -16
- 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: 28aaaa491aa79993e7d0f66a3cdfdee12f7c1780d4a60d57dfeb14b78e1c6fa9
|
4
|
+
data.tar.gz: 77b11c809ff641d82bb22320a7ee0b33d18dee8c3a5e3e25e2cdc98d23613940
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4d1a8e77321cf0cc1a9e9e6de9f995e3a90e5f7114b87e0141512a29ceec685f7e62fcb68007bb2e1a0797b1ae1bfd0d14a43c68cbf6cddc11fec8a3f47c028
|
7
|
+
data.tar.gz: 9887951dbbf82eed3edd9e202b8037f6201b5161a9a8605ddff32e8225f6cc7fecd9ca99277808a62e72b60216d458130315c63ce0fc76c1f624d37bc030833c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.145.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -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
|
7440
|
-
#
|
7441
|
-
#
|
7442
|
-
#
|
7443
|
-
#
|
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
|
-
#
|
7446
|
-
#
|
7447
|
-
# `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName
|
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
|
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.
|
10256
|
+
context[:gem_version] = '1.145.0'
|
10263
10257
|
Seahorse::Client::Request.new(handlers, context)
|
10264
10258
|
end
|
10265
10259
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -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
|
8613
|
-
#
|
8614
|
-
#
|
8615
|
-
#
|
8616
|
-
#
|
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
|
-
#
|
8619
|
-
#
|
8620
|
-
# `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName
|
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
|
8631
|
+
# the Amazon Elastic Container Service Developer Guide.
|
8628
8632
|
#
|
8629
8633
|
#
|
8630
8634
|
#
|
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.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-
|
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
|