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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b281c3b06771b917ba901037424e0fd0729911f7fb4a379059854c0ace42794c
4
- data.tar.gz: ca27528e3d0d988c2d25082036867137404e2aa08701127b529b9b135f775b99
3
+ metadata.gz: c7c24151220082593d3c62306451f919d4c149fc6de728ed403bc089d676a919
4
+ data.tar.gz: df34f28a6c24b274f665b097e5c0503a5ce7e6d3594e68b31333552fbd120070
5
5
  SHA512:
6
- metadata.gz: 4e6f1dde1e63dc7968ade75e69a178fde91bf571aa66cdc18d7b1b48ed42647585440c4bf408aa5d85e63bd6a7f04dff9f1163af0dfeaddb8b4c3f61bf1bc391
7
- data.tar.gz: e27a8623fc0de329ec6f72128162a25ca9a1deea292df9f9b3932f957d322f1e6206db46d5895c6731c2f81d4066e7082933a7a336c5b3739f6132d7a268422b
6
+ metadata.gz: 8ef2762169198b943b4570319db65dd67ebd69213b079692969c8b1f56258e02df37654714c96f2397be95add6454850f718d8f39afd5b32d9b5f973fd02b071
7
+ data.tar.gz: ca0a50f297f85f18ed896f8554c86a2239424cbc42967751fd7e4bdbaecaa5405cd75f3252d8d111020e876590c535714989ce54581ab012740bb63c067bcc5a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.101.0 (2022-09-16)
5
+ ------------------
6
+
7
+ * Feature - This release supports new task definition sizes.
8
+
4
9
  1.100.0 (2022-06-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.101.0
@@ -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 in your cluster using the following logic:
774
- #
775
- # * Determine which of the container instances in your cluster can
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: Between 4096 (4 GB) and
5569
- # 16384 (16 GB) in increments of 1024 (1 GB)
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
- # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8 GB) and
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.100.0'
8763
+ context[:gem_version] = '1.101.0'
8761
8764
  Seahorse::Client::Request.new(handlers, context)
8762
8765
  end
8763
8766
 
@@ -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 4 MiB of memory for a
1229
- # container. Therefore, we recommend that you specify fewer than 4 MiB
1230
- # of memory for your containers.
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. When a dependency is
1458
- # defined for container startup, for container shutdown it is
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 execute the command arguments directly, or `CMD-SHELL` to run the
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: Between 4096 (4 GB) and
8303
- # 16384 (16 GB) in increments of 1024 (1 GB)
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
- # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8 GB) and
8306
- # 30720 (30 GB) in increments of 1024 (1 GB)
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 informataion about `RuntimePlatform`, see
9046
- # [RuntimePlatform][1] in the *Amazon Elastic Container Service
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: Between 4096 (4 GB) and
10419
- # 16384 (16 GB) in increments of 1024 (1 GB)
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: Between 8192 (8 GB) and
10422
- # 30720 (30 GB) in increments of 1024 (1 GB)
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: Between 4096 (4 GB) and
10913
- # 16384 (16 GB) in increments of 1024 (1 GB)
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: Between 8192 (8 GB) and
10916
- # 30720 (30 GB) in increments of 1024 (1 GB)
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
@@ -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.100.0'
52
+ GEM_VERSION = '1.101.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.100.0
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-06-21 00:00:00.000000000 Z
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