aws-sdk-ecs 1.173.0 → 1.180.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.
@@ -10,40 +10,36 @@
10
10
  module Aws::ECS
11
11
  class EndpointProvider
12
12
  def resolve_endpoint(parameters)
13
- region = parameters.region
14
- use_dual_stack = parameters.use_dual_stack
15
- use_fips = parameters.use_fips
16
- endpoint = parameters.endpoint
17
- if Aws::Endpoints::Matchers.set?(endpoint)
18
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
13
+ if Aws::Endpoints::Matchers.set?(parameters.endpoint)
14
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
19
15
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
20
16
  end
21
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
17
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
22
18
  raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
19
  end
24
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
20
+ return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
25
21
  end
26
- if Aws::Endpoints::Matchers.set?(region)
27
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ if Aws::Endpoints::Matchers.set?(parameters.region)
23
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
24
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
29
25
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
- return Aws::Endpoints::Endpoint.new(url: "https://ecs-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
26
+ return Aws::Endpoints::Endpoint.new(url: "https://ecs-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
27
  end
32
28
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
29
  end
34
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
30
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
35
31
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
- return Aws::Endpoints::Endpoint.new(url: "https://ecs-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
32
+ return Aws::Endpoints::Endpoint.new(url: "https://ecs-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
33
  end
38
34
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
35
  end
40
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
36
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
41
37
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
- return Aws::Endpoints::Endpoint.new(url: "https://ecs.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
38
+ return Aws::Endpoints::Endpoint.new(url: "https://ecs.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
39
  end
44
40
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
41
  end
46
- return Aws::Endpoints::Endpoint.new(url: "https://ecs.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
42
+ return Aws::Endpoints::Endpoint.new(url: "https://ecs.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
47
43
  end
48
44
  end
49
45
  raise ArgumentError, "Invalid Configuration: Missing Region"
@@ -246,8 +246,7 @@ module Aws::ECS
246
246
  #
247
247
  # @!attribute [rw] subnets
248
248
  # The IDs of the subnets associated with the task or service. There's
249
- # a limit of 16 subnets that can be specified per
250
- # `awsvpcConfiguration`.
249
+ # a limit of 16 subnets that can be specified.
251
250
  #
252
251
  # <note markdown="1"> All specified subnets must be from the same VPC.
253
252
  #
@@ -258,7 +257,7 @@ module Aws::ECS
258
257
  # The IDs of the security groups associated with the task or service.
259
258
  # If you don't specify a security group, the default security group
260
259
  # for the VPC is used. There's a limit of 5 security groups that can
261
- # be specified per `awsvpcConfiguration`.
260
+ # be specified.
262
261
  #
263
262
  # <note markdown="1"> All specified security groups must be from the same VPC.
264
263
  #
@@ -267,7 +266,18 @@ module Aws::ECS
267
266
  #
268
267
  # @!attribute [rw] assign_public_ip
269
268
  # Whether the task's elastic network interface receives a public IP
270
- # address. The default value is `ENABLED`.
269
+ # address.
270
+ #
271
+ # Consider the following when you set this value:
272
+ #
273
+ # * When you use `create-service` or `update-service`, the default is
274
+ # `DISABLED`.
275
+ #
276
+ # * When the service `deploymentController` is `ECS`, the value must
277
+ # be `DISABLED`.
278
+ #
279
+ # * When you use `create-service` or `update-service`, the default is
280
+ # `ENABLED`.
271
281
  # @return [String]
272
282
  #
273
283
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/AwsVpcConfiguration AWS API Documentation
@@ -281,7 +291,7 @@ module Aws::ECS
281
291
  end
282
292
 
283
293
  # Your Amazon Web Services account was blocked. For more information,
284
- # contact [ Amazon Web Services Support][1].
294
+ # contact [ Amazon Web ServicesSupport][1].
285
295
  #
286
296
  #
287
297
  #
@@ -1378,9 +1388,9 @@ module Aws::ECS
1378
1388
  # @return [Array<Types::VolumeFrom>]
1379
1389
  #
1380
1390
  # @!attribute [rw] linux_parameters
1381
- # Linux-specific modifications that are applied to the container, such
1382
- # as Linux kernel capabilities. For more information see
1383
- # [KernelCapabilities][1].
1391
+ # Linux-specific modifications that are applied to the default Docker
1392
+ # container configuration, such as Linux kernel capabilities. For more
1393
+ # information see [KernelCapabilities][1].
1384
1394
  #
1385
1395
  # <note markdown="1"> This parameter is not supported for Windows containers.
1386
1396
  #
@@ -2651,8 +2661,8 @@ module Aws::ECS
2651
2661
  # service.
2652
2662
  #
2653
2663
  # For more information, see [Balancing an Amazon ECS service across
2654
- # Availability Zones][1] in the *Amazon Elastic Container Service
2655
- # Developer Guide*.
2664
+ # Availability Zones][1] in the <i> <i>Amazon Elastic Container
2665
+ # Service Developer Guide</i> </i>.
2656
2666
  #
2657
2667
  #
2658
2668
  #
@@ -5416,10 +5426,16 @@ module Aws::ECS
5416
5426
  # * Container health checks aren't supported for tasks that are part of
5417
5427
  # a service that's configured to use a Classic Load Balancer.
5418
5428
  #
5429
+ # For an example of how to specify a task definition with multiple
5430
+ # containers where container dependency is specified, see [Container
5431
+ # dependency][3] in the *Amazon Elastic Container Service Developer
5432
+ # Guide*.
5433
+ #
5419
5434
  #
5420
5435
  #
5421
5436
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html
5422
5437
  # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
5438
+ # [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/example_task_definitions.html#example_task_definition-containerdependency
5423
5439
  #
5424
5440
  # @!attribute [rw] command
5425
5441
  # A string array representing the command that the container runs to
@@ -5446,26 +5462,29 @@ module Aws::ECS
5446
5462
  # @!attribute [rw] interval
5447
5463
  # The time period in seconds between each health check execution. You
5448
5464
  # may specify between 5 and 300 seconds. The default value is 30
5449
- # seconds.
5465
+ # seconds. This value applies only when you specify a `command`.
5450
5466
  # @return [Integer]
5451
5467
  #
5452
5468
  # @!attribute [rw] timeout
5453
5469
  # The time period in seconds to wait for a health check to succeed
5454
5470
  # before it is considered a failure. You may specify between 2 and 60
5455
- # seconds. The default value is 5.
5471
+ # seconds. The default value is 5. This value applies only when you
5472
+ # specify a `command`.
5456
5473
  # @return [Integer]
5457
5474
  #
5458
5475
  # @!attribute [rw] retries
5459
5476
  # The number of times to retry a failed health check before the
5460
5477
  # container is considered unhealthy. You may specify between 1 and 10
5461
- # retries. The default value is 3.
5478
+ # retries. The default value is 3. This value applies only when you
5479
+ # specify a `command`.
5462
5480
  # @return [Integer]
5463
5481
  #
5464
5482
  # @!attribute [rw] start_period
5465
5483
  # The optional grace period to provide containers time to bootstrap
5466
5484
  # before failed health checks count towards the maximum number of
5467
5485
  # retries. You can specify between 0 and 300 seconds. By default, the
5468
- # `startPeriod` is off.
5486
+ # `startPeriod` is off. This value applies only when you specify a
5487
+ # `command`.
5469
5488
  #
5470
5489
  # <note markdown="1"> If a health check succeeds within the `startPeriod`, then the
5471
5490
  # container is considered healthy and any subsequent failures count
@@ -5640,9 +5659,36 @@ module Aws::ECS
5640
5659
  # detailed information about these Linux capabilities, see the
5641
5660
  # [capabilities(7)][1] Linux manual page.
5642
5661
  #
5662
+ # The following describes how Docker processes the Linux capabilities
5663
+ # specified in the `add` and `drop` request parameters. For information
5664
+ # about the latest behavior, see [Docker Compose: order of cap\_drop and
5665
+ # cap\_add][2] in the Docker Community Forum.
5666
+ #
5667
+ # * When the container is a privleged container, the container
5668
+ # capabilities are all of the default Docker capabilities. The
5669
+ # capabilities specified in the `add` request parameter, and the
5670
+ # `drop` request parameter are ignored.
5671
+ #
5672
+ # * When the `add` request parameter is set to ALL, the container
5673
+ # capabilities are all of the default Docker capabilities, excluding
5674
+ # those specified in the `drop` request parameter.
5675
+ #
5676
+ # * When the `drop` request parameter is set to ALL, the container
5677
+ # capabilities are the capabilities specified in the `add` request
5678
+ # parameter.
5679
+ #
5680
+ # * When the `add` request parameter and the `drop` request parameter
5681
+ # are both empty, the capabilities the container capabilities are all
5682
+ # of the default Docker capabilities.
5683
+ #
5684
+ # * The default is to first drop the capabilities specified in the
5685
+ # `drop` request parameter, and then add the capabilities specified in
5686
+ # the `add` request parameter.
5687
+ #
5643
5688
  #
5644
5689
  #
5645
5690
  # [1]: http://man7.org/linux/man-pages/man7/capabilities.7.html
5691
+ # [2]: https://forums.docker.com/t/docker-compose-order-of-cap-drop-and-cap-add/97136/1
5646
5692
  #
5647
5693
  # @!attribute [rw] add
5648
5694
  # The Linux capabilities for the container that have been added to the
@@ -7200,11 +7246,15 @@ module Aws::ECS
7200
7246
  # @!attribute [rw] kms_key_id
7201
7247
  # Specify a Key Management Service key ID to encrypt the managed
7202
7248
  # storage.
7249
+ #
7250
+ # The key must be a single Region key.
7203
7251
  # @return [String]
7204
7252
  #
7205
7253
  # @!attribute [rw] fargate_ephemeral_storage_kms_key_id
7206
7254
  # Specify the Key Management Service key ID for the Fargate ephemeral
7207
7255
  # storage.
7256
+ #
7257
+ # The key must be a single Region key.
7208
7258
  # @return [String]
7209
7259
  #
7210
7260
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ManagedStorageConfiguration AWS API Documentation
@@ -8481,10 +8531,10 @@ module Aws::ECS
8481
8531
  #
8482
8532
  # </note>
8483
8533
  #
8484
- # If you're using the EC2 launch type, this field is optional.
8485
- # Supported values are between `128` CPU units (`0.125` vCPUs) and
8486
- # `10240` CPU units (`10` vCPUs). If you do not specify a value, the
8487
- # parameter is ignored.
8534
+ # If you're using the EC2 launch type or external launch type, this
8535
+ # field is optional. Supported values are between `128` CPU units
8536
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
8537
+ # specify a value, the parameter is ignored.
8488
8538
  #
8489
8539
  # If you're using the Fargate launch type, this field is required and
8490
8540
  # you must use one of the following values, which determines your
@@ -9613,8 +9663,8 @@ module Aws::ECS
9613
9663
  # service.
9614
9664
  #
9615
9665
  # For more information, see [Balancing an Amazon ECS service across
9616
- # Availability Zones][1] in the *Amazon Elastic Container Service
9617
- # Developer Guide*.
9666
+ # Availability Zones][1] in the <i> <i>Amazon Elastic Container
9667
+ # Service Developer Guide</i> </i>.
9618
9668
  #
9619
9669
  #
9620
9670
  #
@@ -10994,7 +11044,7 @@ module Aws::ECS
10994
11044
  # @return [String]
10995
11045
  #
10996
11046
  # @!attribute [rw] task
10997
- # The task ID of the task to stop.
11047
+ # Thefull Amazon Resource Name (ARN) of the task.
10998
11048
  # @return [String]
10999
11049
  #
11000
11050
  # @!attribute [rw] reason
@@ -11317,6 +11367,25 @@ module Aws::ECS
11317
11367
  # Currently, the supported resources are Amazon ECS capacity
11318
11368
  # providers, tasks, services, task definitions, clusters, and
11319
11369
  # container instances.
11370
+ #
11371
+ # In order to tag a service that has the following ARN format, you
11372
+ # need to migrate the service to the long ARN. For more information,
11373
+ # see [Migrate an Amazon ECS short service ARN to a long ARN][1] in
11374
+ # the *Amazon Elastic Container Service Developer Guide*.
11375
+ #
11376
+ # `arn:aws:ecs:region:aws_account_id:service/service-name`
11377
+ #
11378
+ # After the migration is complete, the service has the long ARN
11379
+ # format, as shown below. Use this ARN to tag the service.
11380
+ #
11381
+ # `arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name`
11382
+ #
11383
+ # If you try to tag a service with a short ARN, you receive an
11384
+ # `InvalidParameterException` error.
11385
+ #
11386
+ #
11387
+ #
11388
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-arn-migration.html
11320
11389
  # @return [String]
11321
11390
  #
11322
11391
  # @!attribute [rw] tags
@@ -11444,13 +11513,14 @@ module Aws::ECS
11444
11513
  # an integer that indicates the CPU units when the task definition is
11445
11514
  # registered.
11446
11515
  #
11447
- # If you use the EC2 launch type, this field is optional. Supported
11448
- # values are between `128` CPU units (`0.125` vCPUs) and `10240` CPU
11449
- # units (`10` vCPUs).
11516
+ # If you're using the EC2 launch type or the external launch type,
11517
+ # this field is optional. Supported values are between `128` CPU units
11518
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
11519
+ # specify a value, the parameter is ignored.
11450
11520
  #
11451
- # If you use the Fargate launch type, this field is required. You must
11452
- # use one of the following values. These values determine the range of
11453
- # supported values for the `memory` parameter:
11521
+ # If you're using the Fargate launch type, this field is required.
11522
+ # You must use one of the following values. These values determine the
11523
+ # range of supported values for the `memory` parameter:
11454
11524
  #
11455
11525
  # The CPU units cannot be less than 1 vCPU when you use Windows
11456
11526
  # containers on Fargate.
@@ -11961,12 +12031,15 @@ module Aws::ECS
11961
12031
  # one of the following values. The value that you choose determines
11962
12032
  # your range of valid values for the `memory` parameter.
11963
12033
  #
11964
- # If you use the EC2 launch type, this field is optional. Supported
11965
- # values are between `128` CPU units (`0.125` vCPUs) and `10240` CPU
11966
- # units (`10` vCPUs).
12034
+ # If you're using the EC2 launch type or the external launch type,
12035
+ # this field is optional. Supported values are between `128` CPU units
12036
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs).
11967
12037
  #
11968
- # The CPU units cannot be less than 1 vCPU when you use Windows
11969
- # containers on Fargate.
12038
+ # If you're using the Fargate launch type, this field is required and
12039
+ # you must use one of the following values, which determines your
12040
+ # range of supported values for the `memory` parameter. The CPU units
12041
+ # cannot be less than 1 vCPU when you use Windows containers on
12042
+ # Fargate.
11970
12043
  #
11971
12044
  # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5 GB), 1024 (1
11972
12045
  # GB), 2048 (2 GB)
@@ -13280,8 +13353,8 @@ module Aws::ECS
13280
13353
  # service.
13281
13354
  #
13282
13355
  # For more information, see [Balancing an Amazon ECS service across
13283
- # Availability Zones][1] in the *Amazon Elastic Container Service
13284
- # Developer Guide*.
13356
+ # Availability Zones][1] in the <i> <i>Amazon Elastic Container
13357
+ # Service Developer Guide</i> </i>.
13285
13358
  #
13286
13359
  #
13287
13360
  #
data/lib/aws-sdk-ecs.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::ECS
55
55
  autoload :EndpointProvider, 'aws-sdk-ecs/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ecs/endpoints'
57
57
 
58
- GEM_VERSION = '1.173.0'
58
+ GEM_VERSION = '1.180.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.173.0
4
+ version: 1.180.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-12-17 00:00:00.000000000 Z
11
+ date: 2025-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement