aws-sdk-ecs 1.100.0 → 1.102.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b281c3b06771b917ba901037424e0fd0729911f7fb4a379059854c0ace42794c
4
- data.tar.gz: ca27528e3d0d988c2d25082036867137404e2aa08701127b529b9b135f775b99
3
+ metadata.gz: 40246590a9286ae0c974b7b423c9568a06b5f6e31b8342b9841dae00557ccb8b
4
+ data.tar.gz: 62b5fb042ca7e1de9196ca0484490b560ce6c81b7b97e930853dccca32eb861c
5
5
  SHA512:
6
- metadata.gz: 4e6f1dde1e63dc7968ade75e69a178fde91bf571aa66cdc18d7b1b48ed42647585440c4bf408aa5d85e63bd6a7f04dff9f1163af0dfeaddb8b4c3f61bf1bc391
7
- data.tar.gz: e27a8623fc0de329ec6f72128162a25ca9a1deea292df9f9b3932f957d322f1e6206db46d5895c6731c2f81d4066e7082933a7a336c5b3739f6132d7a268422b
6
+ metadata.gz: ef03ab4ce6a13749c3eb798bd360a1a257afa6e0eb271f431b3b1dc2c2b2a58317b1d5a6d5cee2bdf8fb00a597b12740d69ee625142241404b682991159d039e
7
+ data.tar.gz: 6acbe1f1e29fefed9e75c2909ad1fe9ee7934262aaba8513dda9ecc74c7c76b609c16c1e11665320438b3bbd652af93ac7a2d400dc390b323b7ef18af38ae3dd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.102.0 (2022-10-04)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates to address various Amazon ECS tickets.
8
+
9
+ 1.101.0 (2022-09-16)
10
+ ------------------
11
+
12
+ * Feature - This release supports new task definition sizes.
13
+
4
14
  1.100.0 (2022-06-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.102.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
@@ -4991,6 +4973,16 @@ module Aws::ECS
4991
4973
  # the default setting for CloudWatch Container Insights for your
4992
4974
  # clusters is affected.
4993
4975
  #
4976
+ # Fargate is transitioning from task count-based quotas to vCPU-based
4977
+ # quotas. You can set the name to `fargateVCPULimit` to opt in or opt
4978
+ # out of the vCPU-based quotas. For information about the opt in
4979
+ # timeline, see [Fargate vCPU-based quotas timeline][1] in the *Amazon
4980
+ # ECS Developer Guide*.
4981
+ #
4982
+ #
4983
+ #
4984
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#fargate-quota-timeline
4985
+ #
4994
4986
  # @option params [required, String] :value
4995
4987
  # The account setting value for the specified principal ARN. Accepted
4996
4988
  # values are `enabled` and `disabled`.
@@ -5547,7 +5539,8 @@ module Aws::ECS
5547
5539
  #
5548
5540
  # If you're using the EC2 launch type, this field is optional.
5549
5541
  # Supported values are between `128` CPU units (`0.125` vCPUs) and
5550
- # `10240` CPU units (`10` vCPUs).
5542
+ # `10240` CPU units (`10` vCPUs). If you do not specify a value, the
5543
+ # parameter is ignored.
5551
5544
  #
5552
5545
  # If you're using the Fargate launch type, this field is required and
5553
5546
  # you must use one of the following values, which determines your range
@@ -5565,11 +5558,21 @@ module Aws::ECS
5565
5558
  # * 1024 (1 vCPU) - Available `memory` values: 2048 (2 GB), 3072 (3 GB),
5566
5559
  # 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)
5567
5560
  #
5568
- # * 2048 (2 vCPU) - Available `memory` values: Between 4096 (4 GB) and
5569
- # 16384 (16 GB) in increments of 1024 (1 GB)
5561
+ # * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384 (16
5562
+ # GB) in increments of 1024 (1 GB)
5563
+ #
5564
+ # * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720 (30
5565
+ # GB) in increments of 1024 (1 GB)
5566
+ #
5567
+ # * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
5568
+ # increments
5569
+ #
5570
+ # This option requires Linux platform `1.4.0` or later.
5570
5571
  #
5571
- # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8 GB) and
5572
- # 30720 (30 GB) in increments of 1024 (1 GB)
5572
+ # * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8 GB
5573
+ # increments
5574
+ #
5575
+ # This option requires Linux platform `1.4.0` or later.
5573
5576
  #
5574
5577
  # @option params [String] :memory
5575
5578
  # The amount of memory (in MiB) used by the task. It can be expressed as
@@ -5608,6 +5611,16 @@ module Aws::ECS
5608
5611
  # * Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB) -
5609
5612
  # Available `cpu` values: 4096 (4 vCPU)
5610
5613
  #
5614
+ # * Between 16 GB and 60 GB in 4 GB increments - Available `cpu` values:
5615
+ # 8192 (8 vCPU)
5616
+ #
5617
+ # This option requires Linux platform `1.4.0` or later.
5618
+ #
5619
+ # * Between 32GB and 120 GB in 8 GB increments - Available `cpu` values:
5620
+ # 16384 (16 vCPU)
5621
+ #
5622
+ # This option requires Linux platform `1.4.0` or later.
5623
+ #
5611
5624
  # @option params [Array<Types::Tag>] :tags
5612
5625
  # The metadata that you apply to the task definition to help you
5613
5626
  # categorize and organize them. Each tag consists of a key and an
@@ -5734,7 +5747,7 @@ module Aws::ECS
5734
5747
  #
5735
5748
  # * Linux platform version `1.4.0` or later.
5736
5749
  #
5737
- # * Windows platform version `1.0.0` or later.
5750
+ # ^
5738
5751
  #
5739
5752
  # </note>
5740
5753
  #
@@ -8757,7 +8770,7 @@ module Aws::ECS
8757
8770
  params: params,
8758
8771
  config: config)
8759
8772
  context[:gem_name] = 'aws-sdk-ecs'
8760
- context[:gem_version] = '1.100.0'
8773
+ context[:gem_version] = '1.102.0'
8761
8774
  Seahorse::Client::Request.new(handlers, context)
8762
8775
  end
8763
8776
 
@@ -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,
@@ -7428,11 +7432,6 @@ module Aws::ECS
7428
7432
  # In general, ports below 32768 are outside of the ephemeral port
7429
7433
  # range.
7430
7434
  #
7431
- # <note markdown="1"> The default ephemeral port range from 49153 through 65535 is always
7432
- # used for Docker versions before 1.6.0.
7433
- #
7434
- # </note>
7435
- #
7436
7435
  # The default reserved ports are 22 for SSH, the Docker ports 2375 and
7437
7436
  # 2376, and the Amazon ECS container agent ports 51678-51680. Any host
7438
7437
  # port that was previously specified in a running task is also
@@ -7557,6 +7556,16 @@ module Aws::ECS
7557
7556
  # container instances is affected. If `containerInsights` is
7558
7557
  # specified, the default setting for CloudWatch Container Insights for
7559
7558
  # your clusters is affected.
7559
+ #
7560
+ # Fargate is transitioning from task count-based quotas to vCPU-based
7561
+ # quotas. You can set the name to `fargateVCPULimit` to opt in or opt
7562
+ # out of the vCPU-based quotas. For information about the opt in
7563
+ # timeline, see [Fargate vCPU-based quotas timeline][1] in the *Amazon
7564
+ # ECS Developer Guide*.
7565
+ #
7566
+ #
7567
+ #
7568
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#fargate-quota-timeline
7560
7569
  # @return [String]
7561
7570
  #
7562
7571
  # @!attribute [rw] value
@@ -8280,7 +8289,8 @@ module Aws::ECS
8280
8289
  #
8281
8290
  # If you're using the EC2 launch type, this field is optional.
8282
8291
  # Supported values are between `128` CPU units (`0.125` vCPUs) and
8283
- # `10240` CPU units (`10` vCPUs).
8292
+ # `10240` CPU units (`10` vCPUs). If you do not specify a value, the
8293
+ # parameter is ignored.
8284
8294
  #
8285
8295
  # If you're using the Fargate launch type, this field is required and
8286
8296
  # you must use one of the following values, which determines your
@@ -8299,11 +8309,21 @@ module Aws::ECS
8299
8309
  # GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
8300
8310
  # GB)
8301
8311
  #
8302
- # * 2048 (2 vCPU) - Available `memory` values: Between 4096 (4 GB) and
8303
- # 16384 (16 GB) in increments of 1024 (1 GB)
8312
+ # * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
8313
+ # (16 GB) in increments of 1024 (1 GB)
8314
+ #
8315
+ # * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
8316
+ # (30 GB) in increments of 1024 (1 GB)
8317
+ #
8318
+ # * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
8319
+ # increments
8304
8320
  #
8305
- # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8 GB) and
8306
- # 30720 (30 GB) in increments of 1024 (1 GB)
8321
+ # This option requires Linux platform `1.4.0` or later.
8322
+ #
8323
+ # * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
8324
+ # GB increments
8325
+ #
8326
+ # This option requires Linux platform `1.4.0` or later.
8307
8327
  # @return [String]
8308
8328
  #
8309
8329
  # @!attribute [rw] memory
@@ -8342,6 +8362,16 @@ module Aws::ECS
8342
8362
  #
8343
8363
  # * Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
8344
8364
  # - Available `cpu` values: 4096 (4 vCPU)
8365
+ #
8366
+ # * Between 16 GB and 60 GB in 4 GB increments - Available `cpu`
8367
+ # values: 8192 (8 vCPU)
8368
+ #
8369
+ # This option requires Linux platform `1.4.0` or later.
8370
+ #
8371
+ # * Between 32GB and 120 GB in 8 GB increments - Available `cpu`
8372
+ # values: 16384 (16 vCPU)
8373
+ #
8374
+ # This option requires Linux platform `1.4.0` or later.
8345
8375
  # @return [String]
8346
8376
  #
8347
8377
  # @!attribute [rw] tags
@@ -8476,7 +8506,7 @@ module Aws::ECS
8476
8506
  #
8477
8507
  # * Linux platform version `1.4.0` or later.
8478
8508
  #
8479
- # * Windows platform version `1.0.0` or later.
8509
+ # ^
8480
8510
  #
8481
8511
  # </note>
8482
8512
  #
@@ -9042,9 +9072,8 @@ module Aws::ECS
9042
9072
 
9043
9073
  # Information about the platform for the Amazon ECS service or task.
9044
9074
  #
9045
- # For more informataion about `RuntimePlatform`, see
9046
- # [RuntimePlatform][1] in the *Amazon Elastic Container Service
9047
- # Developer Guide*.
9075
+ # For more information about `RuntimePlatform`, see [RuntimePlatform][1]
9076
+ # in the *Amazon Elastic Container Service Developer Guide*.
9048
9077
  #
9049
9078
  #
9050
9079
  #
@@ -10415,11 +10444,21 @@ module Aws::ECS
10415
10444
  # GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
10416
10445
  # GB)
10417
10446
  #
10418
- # * 2048 (2 vCPU) - Available `memory` values: Between 4096 (4 GB) and
10419
- # 16384 (16 GB) in increments of 1024 (1 GB)
10447
+ # * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
10448
+ # (16 GB) in increments of 1024 (1 GB)
10449
+ #
10450
+ # * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
10451
+ # (30 GB) in increments of 1024 (1 GB)
10420
10452
  #
10421
- # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8 GB) and
10422
- # 30720 (30 GB) in increments of 1024 (1 GB)
10453
+ # * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
10454
+ # increments
10455
+ #
10456
+ # This option requires Linux platform `1.4.0` or later.
10457
+ #
10458
+ # * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
10459
+ # GB increments
10460
+ #
10461
+ # This option requires Linux platform `1.4.0` or later.
10423
10462
  # @return [String]
10424
10463
  #
10425
10464
  # @!attribute [rw] created_at
@@ -10520,6 +10559,16 @@ module Aws::ECS
10520
10559
  #
10521
10560
  # * Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
10522
10561
  # - Available `cpu` values: 4096 (4 vCPU)
10562
+ #
10563
+ # * Between 16 GB and 60 GB in 4 GB increments - Available `cpu`
10564
+ # values: 8192 (8 vCPU)
10565
+ #
10566
+ # This option requires Linux platform `1.4.0` or later.
10567
+ #
10568
+ # * Between 32GB and 120 GB in 8 GB increments - Available `cpu`
10569
+ # values: 16384 (16 vCPU)
10570
+ #
10571
+ # This option requires Linux platform `1.4.0` or later.
10523
10572
  # @return [String]
10524
10573
  #
10525
10574
  # @!attribute [rw] overrides
@@ -10909,11 +10958,21 @@ module Aws::ECS
10909
10958
  # GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
10910
10959
  # GB)
10911
10960
  #
10912
- # * 2048 (2 vCPU) - Available `memory` values: Between 4096 (4 GB) and
10913
- # 16384 (16 GB) in increments of 1024 (1 GB)
10961
+ # * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
10962
+ # (16 GB) in increments of 1024 (1 GB)
10963
+ #
10964
+ # * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
10965
+ # (30 GB) in increments of 1024 (1 GB)
10966
+ #
10967
+ # * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
10968
+ # increments
10969
+ #
10970
+ # This option requires Linux platform `1.4.0` or later.
10914
10971
  #
10915
- # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8 GB) and
10916
- # 30720 (30 GB) in increments of 1024 (1 GB)
10972
+ # * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
10973
+ # GB increments
10974
+ #
10975
+ # This option requires Linux platform `1.4.0` or later.
10917
10976
  # @return [String]
10918
10977
  #
10919
10978
  # @!attribute [rw] memory
@@ -10945,6 +11004,16 @@ module Aws::ECS
10945
11004
  # * Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
10946
11005
  # - Available `cpu` values: 4096 (4 vCPU)
10947
11006
  #
11007
+ # * Between 16 GB and 60 GB in 4 GB increments - Available `cpu`
11008
+ # values: 8192 (8 vCPU)
11009
+ #
11010
+ # This option requires Linux platform `1.4.0` or later.
11011
+ #
11012
+ # * Between 32GB and 120 GB in 8 GB increments - Available `cpu`
11013
+ # values: 16384 (16 vCPU)
11014
+ #
11015
+ # This option requires Linux platform `1.4.0` or later.
11016
+ #
10948
11017
  #
10949
11018
  #
10950
11019
  # [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.102.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.102.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-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core