aws-sdk-ecs 1.173.0 → 1.181.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,15 @@ 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`.
271
278
  # @return [String]
272
279
  #
273
280
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/AwsVpcConfiguration AWS API Documentation
@@ -281,7 +288,7 @@ module Aws::ECS
281
288
  end
282
289
 
283
290
  # Your Amazon Web Services account was blocked. For more information,
284
- # contact [ Amazon Web Services Support][1].
291
+ # contact [ Amazon Web ServicesSupport][1].
285
292
  #
286
293
  #
287
294
  #
@@ -836,8 +843,8 @@ module Aws::ECS
836
843
  # Map namespace that's used when you create a service and don't
837
844
  # specify a Service Connect configuration. The namespace name can
838
845
  # include up to 1024 characters. The name is case-sensitive. The name
839
- # can't include hyphens (-), tilde (~), greater than (&gt;), less
840
- # than (&lt;), or slash (/).
846
+ # can't include greater than (&gt;), less than (&lt;), double
847
+ # quotation marks ("), or slash (/).
841
848
  #
842
849
  # If you enter an existing namespace name or ARN, then that namespace
843
850
  # will be used. Any namespace type is supported. The namespace must be
@@ -1378,9 +1385,9 @@ module Aws::ECS
1378
1385
  # @return [Array<Types::VolumeFrom>]
1379
1386
  #
1380
1387
  # @!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].
1388
+ # Linux-specific modifications that are applied to the default Docker
1389
+ # container configuration, such as Linux kernel capabilities. For more
1390
+ # information see [KernelCapabilities][1].
1384
1391
  #
1385
1392
  # <note markdown="1"> This parameter is not supported for Windows containers.
1386
1393
  #
@@ -2651,8 +2658,8 @@ module Aws::ECS
2651
2658
  # service.
2652
2659
  #
2653
2660
  # For more information, see [Balancing an Amazon ECS service across
2654
- # Availability Zones][1] in the *Amazon Elastic Container Service
2655
- # Developer Guide*.
2661
+ # Availability Zones][1] in the <i> <i>Amazon Elastic Container
2662
+ # Service Developer Guide</i> </i>.
2656
2663
  #
2657
2664
  #
2658
2665
  #
@@ -5416,10 +5423,16 @@ module Aws::ECS
5416
5423
  # * Container health checks aren't supported for tasks that are part of
5417
5424
  # a service that's configured to use a Classic Load Balancer.
5418
5425
  #
5426
+ # For an example of how to specify a task definition with multiple
5427
+ # containers where container dependency is specified, see [Container
5428
+ # dependency][3] in the *Amazon Elastic Container Service Developer
5429
+ # Guide*.
5430
+ #
5419
5431
  #
5420
5432
  #
5421
5433
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html
5422
5434
  # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
5435
+ # [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/example_task_definitions.html#example_task_definition-containerdependency
5423
5436
  #
5424
5437
  # @!attribute [rw] command
5425
5438
  # A string array representing the command that the container runs to
@@ -5446,26 +5459,29 @@ module Aws::ECS
5446
5459
  # @!attribute [rw] interval
5447
5460
  # The time period in seconds between each health check execution. You
5448
5461
  # may specify between 5 and 300 seconds. The default value is 30
5449
- # seconds.
5462
+ # seconds. This value applies only when you specify a `command`.
5450
5463
  # @return [Integer]
5451
5464
  #
5452
5465
  # @!attribute [rw] timeout
5453
5466
  # The time period in seconds to wait for a health check to succeed
5454
5467
  # before it is considered a failure. You may specify between 2 and 60
5455
- # seconds. The default value is 5.
5468
+ # seconds. The default value is 5. This value applies only when you
5469
+ # specify a `command`.
5456
5470
  # @return [Integer]
5457
5471
  #
5458
5472
  # @!attribute [rw] retries
5459
5473
  # The number of times to retry a failed health check before the
5460
5474
  # container is considered unhealthy. You may specify between 1 and 10
5461
- # retries. The default value is 3.
5475
+ # retries. The default value is 3. This value applies only when you
5476
+ # specify a `command`.
5462
5477
  # @return [Integer]
5463
5478
  #
5464
5479
  # @!attribute [rw] start_period
5465
5480
  # The optional grace period to provide containers time to bootstrap
5466
5481
  # before failed health checks count towards the maximum number of
5467
5482
  # retries. You can specify between 0 and 300 seconds. By default, the
5468
- # `startPeriod` is off.
5483
+ # `startPeriod` is off. This value applies only when you specify a
5484
+ # `command`.
5469
5485
  #
5470
5486
  # <note markdown="1"> If a health check succeeds within the `startPeriod`, then the
5471
5487
  # container is considered healthy and any subsequent failures count
@@ -5631,6 +5647,13 @@ module Aws::ECS
5631
5647
  # The specified parameter isn't valid. Review the available parameters
5632
5648
  # for the API request.
5633
5649
  #
5650
+ # For more information about service event errors, see [Amazon ECS
5651
+ # service event messages][1].
5652
+ #
5653
+ #
5654
+ #
5655
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-event-messages-list.html
5656
+ #
5634
5657
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/InvalidParameterException AWS API Documentation
5635
5658
  #
5636
5659
  class InvalidParameterException < Aws::EmptyStructure; end
@@ -5640,9 +5663,36 @@ module Aws::ECS
5640
5663
  # detailed information about these Linux capabilities, see the
5641
5664
  # [capabilities(7)][1] Linux manual page.
5642
5665
  #
5666
+ # The following describes how Docker processes the Linux capabilities
5667
+ # specified in the `add` and `drop` request parameters. For information
5668
+ # about the latest behavior, see [Docker Compose: order of cap\_drop and
5669
+ # cap\_add][2] in the Docker Community Forum.
5670
+ #
5671
+ # * When the container is a privleged container, the container
5672
+ # capabilities are all of the default Docker capabilities. The
5673
+ # capabilities specified in the `add` request parameter, and the
5674
+ # `drop` request parameter are ignored.
5675
+ #
5676
+ # * When the `add` request parameter is set to ALL, the container
5677
+ # capabilities are all of the default Docker capabilities, excluding
5678
+ # those specified in the `drop` request parameter.
5679
+ #
5680
+ # * When the `drop` request parameter is set to ALL, the container
5681
+ # capabilities are the capabilities specified in the `add` request
5682
+ # parameter.
5683
+ #
5684
+ # * When the `add` request parameter and the `drop` request parameter
5685
+ # are both empty, the capabilities the container capabilities are all
5686
+ # of the default Docker capabilities.
5687
+ #
5688
+ # * The default is to first drop the capabilities specified in the
5689
+ # `drop` request parameter, and then add the capabilities specified in
5690
+ # the `add` request parameter.
5691
+ #
5643
5692
  #
5644
5693
  #
5645
5694
  # [1]: http://man7.org/linux/man-pages/man7/capabilities.7.html
5695
+ # [2]: https://forums.docker.com/t/docker-compose-order-of-cap-drop-and-cap-add/97136/1
5646
5696
  #
5647
5697
  # @!attribute [rw] add
5648
5698
  # The Linux capabilities for the container that have been added to the
@@ -7200,11 +7250,15 @@ module Aws::ECS
7200
7250
  # @!attribute [rw] kms_key_id
7201
7251
  # Specify a Key Management Service key ID to encrypt the managed
7202
7252
  # storage.
7253
+ #
7254
+ # The key must be a single Region key.
7203
7255
  # @return [String]
7204
7256
  #
7205
7257
  # @!attribute [rw] fargate_ephemeral_storage_kms_key_id
7206
7258
  # Specify the Key Management Service key ID for the Fargate ephemeral
7207
7259
  # storage.
7260
+ #
7261
+ # The key must be a single Region key.
7208
7262
  # @return [String]
7209
7263
  #
7210
7264
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ManagedStorageConfiguration AWS API Documentation
@@ -8481,10 +8535,10 @@ module Aws::ECS
8481
8535
  #
8482
8536
  # </note>
8483
8537
  #
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.
8538
+ # If you're using the EC2 launch type or external launch type, this
8539
+ # field is optional. Supported values are between `128` CPU units
8540
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
8541
+ # specify a value, the parameter is ignored.
8488
8542
  #
8489
8543
  # If you're using the Fargate launch type, this field is required and
8490
8544
  # you must use one of the following values, which determines your
@@ -9613,8 +9667,8 @@ module Aws::ECS
9613
9667
  # service.
9614
9668
  #
9615
9669
  # For more information, see [Balancing an Amazon ECS service across
9616
- # Availability Zones][1] in the *Amazon Elastic Container Service
9617
- # Developer Guide*.
9670
+ # Availability Zones][1] in the <i> <i>Amazon Elastic Container
9671
+ # Service Developer Guide</i> </i>.
9618
9672
  #
9619
9673
  #
9620
9674
  #
@@ -10994,7 +11048,7 @@ module Aws::ECS
10994
11048
  # @return [String]
10995
11049
  #
10996
11050
  # @!attribute [rw] task
10997
- # The task ID of the task to stop.
11051
+ # Thefull Amazon Resource Name (ARN) of the task.
10998
11052
  # @return [String]
10999
11053
  #
11000
11054
  # @!attribute [rw] reason
@@ -11317,6 +11371,25 @@ module Aws::ECS
11317
11371
  # Currently, the supported resources are Amazon ECS capacity
11318
11372
  # providers, tasks, services, task definitions, clusters, and
11319
11373
  # container instances.
11374
+ #
11375
+ # In order to tag a service that has the following ARN format, you
11376
+ # need to migrate the service to the long ARN. For more information,
11377
+ # see [Migrate an Amazon ECS short service ARN to a long ARN][1] in
11378
+ # the *Amazon Elastic Container Service Developer Guide*.
11379
+ #
11380
+ # `arn:aws:ecs:region:aws_account_id:service/service-name`
11381
+ #
11382
+ # After the migration is complete, the service has the long ARN
11383
+ # format, as shown below. Use this ARN to tag the service.
11384
+ #
11385
+ # `arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name`
11386
+ #
11387
+ # If you try to tag a service with a short ARN, you receive an
11388
+ # `InvalidParameterException` error.
11389
+ #
11390
+ #
11391
+ #
11392
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-arn-migration.html
11320
11393
  # @return [String]
11321
11394
  #
11322
11395
  # @!attribute [rw] tags
@@ -11444,13 +11517,14 @@ module Aws::ECS
11444
11517
  # an integer that indicates the CPU units when the task definition is
11445
11518
  # registered.
11446
11519
  #
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).
11520
+ # If you're using the EC2 launch type or the external launch type,
11521
+ # this field is optional. Supported values are between `128` CPU units
11522
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
11523
+ # specify a value, the parameter is ignored.
11450
11524
  #
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:
11525
+ # If you're using the Fargate launch type, this field is required.
11526
+ # You must use one of the following values. These values determine the
11527
+ # range of supported values for the `memory` parameter:
11454
11528
  #
11455
11529
  # The CPU units cannot be less than 1 vCPU when you use Windows
11456
11530
  # containers on Fargate.
@@ -11961,12 +12035,11 @@ module Aws::ECS
11961
12035
  # one of the following values. The value that you choose determines
11962
12036
  # your range of valid values for the `memory` parameter.
11963
12037
  #
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).
11967
- #
11968
- # The CPU units cannot be less than 1 vCPU when you use Windows
11969
- # containers on Fargate.
12038
+ # If you're using the EC2 launch type or the external launch type,
12039
+ # this field is optional. Supported values are between `128` CPU units
12040
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). 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.181.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.181.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-03-11 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