aws-sdk-ecs 1.100.0 → 1.101.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +31 -28
- data/lib/aws-sdk-ecs/types.rb +87 -23
- 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: c7c24151220082593d3c62306451f919d4c149fc6de728ed403bc089d676a919
|
4
|
+
data.tar.gz: df34f28a6c24b274f665b097e5c0503a5ce7e6d3594e68b31333552fbd120070
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ef2762169198b943b4570319db65dd67ebd69213b079692969c8b1f56258e02df37654714c96f2397be95add6454850f718d8f39afd5b32d9b5f973fd02b071
|
7
|
+
data.tar.gz: ca0a50f297f85f18ed896f8554c86a2239424cbc42967751fd7e4bdbaecaa5405cd75f3252d8d111020e876590c535714989ce54581ab012740bb63c067bcc5a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.101.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -770,34 +770,16 @@ module Aws::ECS
|
|
770
770
|
# Elastic Container Service Developer Guide*.
|
771
771
|
#
|
772
772
|
# When the service scheduler launches new tasks, it determines task
|
773
|
-
# placement
|
774
|
-
#
|
775
|
-
#
|
776
|
-
# support the task definition of your service. For example, they have
|
777
|
-
# the required CPU, memory, ports, and container instance attributes.
|
778
|
-
#
|
779
|
-
# * By default, the service scheduler attempts to balance tasks across
|
780
|
-
# Availability Zones in this manner. This is the case even if you can
|
781
|
-
# choose a different placement strategy with the `placementStrategy`
|
782
|
-
# parameter.
|
783
|
-
#
|
784
|
-
# * Sort the valid container instances, giving priority to instances
|
785
|
-
# that have the fewest number of running tasks for this service in
|
786
|
-
# their respective Availability Zone. For example, if zone A has one
|
787
|
-
# running service task and zones B and C each have zero, valid
|
788
|
-
# container instances in either zone B or C are considered optimal
|
789
|
-
# for placement.
|
790
|
-
#
|
791
|
-
# * Place the new service task on a valid container instance in an
|
792
|
-
# optimal Availability Zone based on the previous steps, favoring
|
793
|
-
# container instances with the fewest number of running tasks for
|
794
|
-
# this service.
|
773
|
+
# placement. For information about task placement and task placement
|
774
|
+
# strategies, see [Amazon ECS task placement][4] in the *Amazon Elastic
|
775
|
+
# Container Service Developer Guide*.
|
795
776
|
#
|
796
777
|
#
|
797
778
|
#
|
798
779
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html
|
799
780
|
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html
|
800
781
|
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html
|
782
|
+
# [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement.html
|
801
783
|
#
|
802
784
|
# @option params [String] :cluster
|
803
785
|
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
@@ -5547,7 +5529,8 @@ module Aws::ECS
|
|
5547
5529
|
#
|
5548
5530
|
# If you're using the EC2 launch type, this field is optional.
|
5549
5531
|
# Supported values are between `128` CPU units (`0.125` vCPUs) and
|
5550
|
-
# `10240` CPU units (`10` vCPUs).
|
5532
|
+
# `10240` CPU units (`10` vCPUs). If you do not specify a value, the
|
5533
|
+
# parameter is ignored.
|
5551
5534
|
#
|
5552
5535
|
# If you're using the Fargate launch type, this field is required and
|
5553
5536
|
# you must use one of the following values, which determines your range
|
@@ -5565,11 +5548,21 @@ module Aws::ECS
|
|
5565
5548
|
# * 1024 (1 vCPU) - Available `memory` values: 2048 (2 GB), 3072 (3 GB),
|
5566
5549
|
# 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)
|
5567
5550
|
#
|
5568
|
-
# * 2048 (2 vCPU) - Available `memory` values:
|
5569
|
-
#
|
5551
|
+
# * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384 (16
|
5552
|
+
# GB) in increments of 1024 (1 GB)
|
5553
|
+
#
|
5554
|
+
# * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720 (30
|
5555
|
+
# GB) in increments of 1024 (1 GB)
|
5556
|
+
#
|
5557
|
+
# * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
|
5558
|
+
# increments
|
5559
|
+
#
|
5560
|
+
# This option requires Linux platform `1.4.0` or later.
|
5561
|
+
#
|
5562
|
+
# * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8 GB
|
5563
|
+
# increments
|
5570
5564
|
#
|
5571
|
-
#
|
5572
|
-
# 30720 (30 GB) in increments of 1024 (1 GB)
|
5565
|
+
# This option requires Linux platform `1.4.0` or later.
|
5573
5566
|
#
|
5574
5567
|
# @option params [String] :memory
|
5575
5568
|
# The amount of memory (in MiB) used by the task. It can be expressed as
|
@@ -5608,6 +5601,16 @@ module Aws::ECS
|
|
5608
5601
|
# * Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB) -
|
5609
5602
|
# Available `cpu` values: 4096 (4 vCPU)
|
5610
5603
|
#
|
5604
|
+
# * Between 16 GB and 60 GB in 4 GB increments - Available `cpu` values:
|
5605
|
+
# 8192 (8 vCPU)
|
5606
|
+
#
|
5607
|
+
# This option requires Linux platform `1.4.0` or later.
|
5608
|
+
#
|
5609
|
+
# * Between 32GB and 120 GB in 8 GB increments - Available `cpu` values:
|
5610
|
+
# 16384 (16 vCPU)
|
5611
|
+
#
|
5612
|
+
# This option requires Linux platform `1.4.0` or later.
|
5613
|
+
#
|
5611
5614
|
# @option params [Array<Types::Tag>] :tags
|
5612
5615
|
# The metadata that you apply to the task definition to help you
|
5613
5616
|
# categorize and organize them. Each tag consists of a key and an
|
@@ -8757,7 +8760,7 @@ module Aws::ECS
|
|
8757
8760
|
params: params,
|
8758
8761
|
config: config)
|
8759
8762
|
context[:gem_name] = 'aws-sdk-ecs'
|
8760
|
-
context[:gem_version] = '1.
|
8763
|
+
context[:gem_version] = '1.101.0'
|
8761
8764
|
Seahorse::Client::Request.new(handlers, context)
|
8762
8765
|
end
|
8763
8766
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -1225,9 +1225,13 @@ module Aws::ECS
|
|
1225
1225
|
# container instance, but also allow the container to consume more
|
1226
1226
|
# memory resources when needed.
|
1227
1227
|
#
|
1228
|
-
# The Docker daemon reserves a minimum of
|
1229
|
-
# container.
|
1230
|
-
#
|
1228
|
+
# The Docker 20.10.0 or later daemon reserves a minimum of 6 MiB of
|
1229
|
+
# memory for a container. So, don't specify less than 6 MiB of memory
|
1230
|
+
# for your containers.
|
1231
|
+
#
|
1232
|
+
# The Docker 19.03.13-ce or earlier daemon reserves a minimum of 4 MiB
|
1233
|
+
# of memory for a container. So, don't specify less than 4 MiB of
|
1234
|
+
# memory for your containers.
|
1231
1235
|
#
|
1232
1236
|
#
|
1233
1237
|
#
|
@@ -1454,9 +1458,9 @@ module Aws::ECS
|
|
1454
1458
|
#
|
1455
1459
|
# @!attribute [rw] depends_on
|
1456
1460
|
# The dependencies defined for container startup and shutdown. A
|
1457
|
-
# container can contain multiple dependencies
|
1458
|
-
# defined for container startup,
|
1459
|
-
# reversed.
|
1461
|
+
# container can contain multiple dependencies on other containers in a
|
1462
|
+
# task definition. When a dependency is defined for container startup,
|
1463
|
+
# for container shutdown it is reversed.
|
1460
1464
|
#
|
1461
1465
|
# For tasks using the EC2 launch type, the container instances require
|
1462
1466
|
# at least version 1.26.0 of the container agent to turn on container
|
@@ -5421,7 +5425,7 @@ module Aws::ECS
|
|
5421
5425
|
# @!attribute [rw] command
|
5422
5426
|
# A string array representing the command that the container runs to
|
5423
5427
|
# determine if it is healthy. The string array must start with `CMD`
|
5424
|
-
# to
|
5428
|
+
# to run the command arguments directly, or `CMD-SHELL` to run the
|
5425
5429
|
# command with the container's default shell.
|
5426
5430
|
#
|
5427
5431
|
# When you use the Amazon Web Services Management Console JSON panel,
|
@@ -8280,7 +8284,8 @@ module Aws::ECS
|
|
8280
8284
|
#
|
8281
8285
|
# If you're using the EC2 launch type, this field is optional.
|
8282
8286
|
# Supported values are between `128` CPU units (`0.125` vCPUs) and
|
8283
|
-
# `10240` CPU units (`10` vCPUs).
|
8287
|
+
# `10240` CPU units (`10` vCPUs). If you do not specify a value, the
|
8288
|
+
# parameter is ignored.
|
8284
8289
|
#
|
8285
8290
|
# If you're using the Fargate launch type, this field is required and
|
8286
8291
|
# you must use one of the following values, which determines your
|
@@ -8299,11 +8304,21 @@ module Aws::ECS
|
|
8299
8304
|
# GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
|
8300
8305
|
# GB)
|
8301
8306
|
#
|
8302
|
-
# * 2048 (2 vCPU) - Available `memory` values:
|
8303
|
-
#
|
8307
|
+
# * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
|
8308
|
+
# (16 GB) in increments of 1024 (1 GB)
|
8309
|
+
#
|
8310
|
+
# * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
|
8311
|
+
# (30 GB) in increments of 1024 (1 GB)
|
8312
|
+
#
|
8313
|
+
# * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
|
8314
|
+
# increments
|
8304
8315
|
#
|
8305
|
-
#
|
8306
|
-
#
|
8316
|
+
# This option requires Linux platform `1.4.0` or later.
|
8317
|
+
#
|
8318
|
+
# * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
|
8319
|
+
# GB increments
|
8320
|
+
#
|
8321
|
+
# This option requires Linux platform `1.4.0` or later.
|
8307
8322
|
# @return [String]
|
8308
8323
|
#
|
8309
8324
|
# @!attribute [rw] memory
|
@@ -8342,6 +8357,16 @@ module Aws::ECS
|
|
8342
8357
|
#
|
8343
8358
|
# * Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
|
8344
8359
|
# - Available `cpu` values: 4096 (4 vCPU)
|
8360
|
+
#
|
8361
|
+
# * Between 16 GB and 60 GB in 4 GB increments - Available `cpu`
|
8362
|
+
# values: 8192 (8 vCPU)
|
8363
|
+
#
|
8364
|
+
# This option requires Linux platform `1.4.0` or later.
|
8365
|
+
#
|
8366
|
+
# * Between 32GB and 120 GB in 8 GB increments - Available `cpu`
|
8367
|
+
# values: 16384 (16 vCPU)
|
8368
|
+
#
|
8369
|
+
# This option requires Linux platform `1.4.0` or later.
|
8345
8370
|
# @return [String]
|
8346
8371
|
#
|
8347
8372
|
# @!attribute [rw] tags
|
@@ -9042,9 +9067,8 @@ module Aws::ECS
|
|
9042
9067
|
|
9043
9068
|
# Information about the platform for the Amazon ECS service or task.
|
9044
9069
|
#
|
9045
|
-
# For more
|
9046
|
-
#
|
9047
|
-
# Developer Guide*.
|
9070
|
+
# For more information about `RuntimePlatform`, see [RuntimePlatform][1]
|
9071
|
+
# in the *Amazon Elastic Container Service Developer Guide*.
|
9048
9072
|
#
|
9049
9073
|
#
|
9050
9074
|
#
|
@@ -10415,11 +10439,21 @@ module Aws::ECS
|
|
10415
10439
|
# GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
|
10416
10440
|
# GB)
|
10417
10441
|
#
|
10418
|
-
# * 2048 (2 vCPU) - Available `memory` values:
|
10419
|
-
#
|
10442
|
+
# * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
|
10443
|
+
# (16 GB) in increments of 1024 (1 GB)
|
10420
10444
|
#
|
10421
|
-
# * 4096 (4 vCPU) - Available `memory` values:
|
10422
|
-
#
|
10445
|
+
# * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
|
10446
|
+
# (30 GB) in increments of 1024 (1 GB)
|
10447
|
+
#
|
10448
|
+
# * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
|
10449
|
+
# increments
|
10450
|
+
#
|
10451
|
+
# This option requires Linux platform `1.4.0` or later.
|
10452
|
+
#
|
10453
|
+
# * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
|
10454
|
+
# GB increments
|
10455
|
+
#
|
10456
|
+
# This option requires Linux platform `1.4.0` or later.
|
10423
10457
|
# @return [String]
|
10424
10458
|
#
|
10425
10459
|
# @!attribute [rw] created_at
|
@@ -10520,6 +10554,16 @@ module Aws::ECS
|
|
10520
10554
|
#
|
10521
10555
|
# * Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
|
10522
10556
|
# - Available `cpu` values: 4096 (4 vCPU)
|
10557
|
+
#
|
10558
|
+
# * Between 16 GB and 60 GB in 4 GB increments - Available `cpu`
|
10559
|
+
# values: 8192 (8 vCPU)
|
10560
|
+
#
|
10561
|
+
# This option requires Linux platform `1.4.0` or later.
|
10562
|
+
#
|
10563
|
+
# * Between 32GB and 120 GB in 8 GB increments - Available `cpu`
|
10564
|
+
# values: 16384 (16 vCPU)
|
10565
|
+
#
|
10566
|
+
# This option requires Linux platform `1.4.0` or later.
|
10523
10567
|
# @return [String]
|
10524
10568
|
#
|
10525
10569
|
# @!attribute [rw] overrides
|
@@ -10909,11 +10953,21 @@ module Aws::ECS
|
|
10909
10953
|
# GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
|
10910
10954
|
# GB)
|
10911
10955
|
#
|
10912
|
-
# * 2048 (2 vCPU) - Available `memory` values:
|
10913
|
-
#
|
10956
|
+
# * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
|
10957
|
+
# (16 GB) in increments of 1024 (1 GB)
|
10914
10958
|
#
|
10915
|
-
# * 4096 (4 vCPU) - Available `memory` values:
|
10916
|
-
#
|
10959
|
+
# * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
|
10960
|
+
# (30 GB) in increments of 1024 (1 GB)
|
10961
|
+
#
|
10962
|
+
# * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
|
10963
|
+
# increments
|
10964
|
+
#
|
10965
|
+
# This option requires Linux platform `1.4.0` or later.
|
10966
|
+
#
|
10967
|
+
# * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
|
10968
|
+
# GB increments
|
10969
|
+
#
|
10970
|
+
# This option requires Linux platform `1.4.0` or later.
|
10917
10971
|
# @return [String]
|
10918
10972
|
#
|
10919
10973
|
# @!attribute [rw] memory
|
@@ -10945,6 +10999,16 @@ module Aws::ECS
|
|
10945
10999
|
# * Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
|
10946
11000
|
# - Available `cpu` values: 4096 (4 vCPU)
|
10947
11001
|
#
|
11002
|
+
# * Between 16 GB and 60 GB in 4 GB increments - Available `cpu`
|
11003
|
+
# values: 8192 (8 vCPU)
|
11004
|
+
#
|
11005
|
+
# This option requires Linux platform `1.4.0` or later.
|
11006
|
+
#
|
11007
|
+
# * Between 32GB and 120 GB in 8 GB increments - Available `cpu`
|
11008
|
+
# values: 16384 (16 vCPU)
|
11009
|
+
#
|
11010
|
+
# This option requires Linux platform `1.4.0` or later.
|
11011
|
+
#
|
10948
11012
|
#
|
10949
11013
|
#
|
10950
11014
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ContainerDefinition.html
|
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.101.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-
|
11
|
+
date: 2022-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|