aws-sdk-ecs 1.112.0 → 1.114.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +47 -38
- data/lib/aws-sdk-ecs/types.rb +103 -84
- 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: c14e1ae322a80a0e104527e1d5f5608f133a9c55b1fafff4f9557230d24404ff
|
4
|
+
data.tar.gz: b66f29af6d95589d8365dd099f19d8babf2ddb1c781a6152450d84ee9f04879f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58dd9bb74b69d618eaa6a91068349bc7a4042779e565c003ac9ea021ff58d2a29cbebf838bc687c598f19eb1e52d09ff6140131d40b30309b8e609bdfafa7971
|
7
|
+
data.tar.gz: 477cf6d183bb9f79eedc1a2809261e92b0209a4e72e59fc4ff602cf110816d0f09e42ecb4433ca3af39335ff977738ef9366dfdbdb58fd853e6ad35a7b069321
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.114.0 (2023-04-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release supports ephemeral storage for AWS Fargate Windows containers.
|
8
|
+
|
9
|
+
1.113.0 (2023-04-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for enabling FIPS compliance on Amazon ECS Fargate tasks
|
13
|
+
|
4
14
|
1.112.0 (2023-04-05)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.114.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -866,6 +866,13 @@ module Aws::ECS
|
|
866
866
|
# A task definition must be specified if the service uses either the
|
867
867
|
# `ECS` or `CODE_DEPLOY` deployment controllers.
|
868
868
|
#
|
869
|
+
# For more information about deployment types, see [Amazon ECS
|
870
|
+
# deployment types][1].
|
871
|
+
#
|
872
|
+
#
|
873
|
+
#
|
874
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html
|
875
|
+
#
|
869
876
|
# @option params [Array<Types::LoadBalancer>] :load_balancers
|
870
877
|
# A load balancer object representing the load balancers to use with
|
871
878
|
# your service. For more information, see [Service load balancing][1] in
|
@@ -1167,7 +1174,7 @@ module Aws::ECS
|
|
1167
1174
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TagResource.html
|
1168
1175
|
#
|
1169
1176
|
# @option params [Boolean] :enable_execute_command
|
1170
|
-
# Determines whether the execute command functionality is
|
1177
|
+
# Determines whether the execute command functionality is turned on for
|
1171
1178
|
# the service. If `true`, this enables execute command functionality on
|
1172
1179
|
# all containers in the service tasks.
|
1173
1180
|
#
|
@@ -1880,13 +1887,13 @@ module Aws::ECS
|
|
1880
1887
|
# @example Request syntax with placeholder values
|
1881
1888
|
#
|
1882
1889
|
# resp = client.delete_account_setting({
|
1883
|
-
# name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights
|
1890
|
+
# name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights, fargateFIPSMode
|
1884
1891
|
# principal_arn: "String",
|
1885
1892
|
# })
|
1886
1893
|
#
|
1887
1894
|
# @example Response structure
|
1888
1895
|
#
|
1889
|
-
# resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights"
|
1896
|
+
# resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights", "fargateFIPSMode"
|
1890
1897
|
# resp.setting.value #=> String
|
1891
1898
|
# resp.setting.principal_arn #=> String
|
1892
1899
|
#
|
@@ -4282,7 +4289,7 @@ module Aws::ECS
|
|
4282
4289
|
#
|
4283
4290
|
#
|
4284
4291
|
#
|
4285
|
-
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.
|
4292
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.html
|
4286
4293
|
#
|
4287
4294
|
# @option params [String] :cluster
|
4288
4295
|
# The Amazon Resource Name (ARN) or short name of the cluster the task
|
@@ -4527,7 +4534,7 @@ module Aws::ECS
|
|
4527
4534
|
# @example Request syntax with placeholder values
|
4528
4535
|
#
|
4529
4536
|
# resp = client.list_account_settings({
|
4530
|
-
# name: "serviceLongArnFormat", # accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights
|
4537
|
+
# name: "serviceLongArnFormat", # accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights, fargateFIPSMode
|
4531
4538
|
# value: "String",
|
4532
4539
|
# principal_arn: "String",
|
4533
4540
|
# effective_settings: false,
|
@@ -4538,7 +4545,7 @@ module Aws::ECS
|
|
4538
4545
|
# @example Response structure
|
4539
4546
|
#
|
4540
4547
|
# resp.settings #=> Array
|
4541
|
-
# resp.settings[0].name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights"
|
4548
|
+
# resp.settings[0].name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights", "fargateFIPSMode"
|
4542
4549
|
# resp.settings[0].value #=> String
|
4543
4550
|
# resp.settings[0].principal_arn #=> String
|
4544
4551
|
# resp.next_token #=> String
|
@@ -5402,11 +5409,10 @@ module Aws::ECS
|
|
5402
5409
|
# Modifies an account setting. Account settings are set on a per-Region
|
5403
5410
|
# basis.
|
5404
5411
|
#
|
5405
|
-
# If you change the account setting
|
5406
|
-
#
|
5407
|
-
#
|
5408
|
-
#
|
5409
|
-
# Developer Guide*.
|
5412
|
+
# If you change the root user account setting, the default settings are
|
5413
|
+
# reset for users and roles that do not have specified individual
|
5414
|
+
# account settings. For more information, see [Account Settings][1] in
|
5415
|
+
# the *Amazon Elastic Container Service Developer Guide*.
|
5410
5416
|
#
|
5411
5417
|
# When `serviceLongArnFormat`, `taskLongArnFormat`, or
|
5412
5418
|
# `containerInstanceLongArnFormat` are specified, the Amazon Resource
|
@@ -5420,19 +5426,19 @@ module Aws::ECS
|
|
5420
5426
|
#
|
5421
5427
|
# When `awsvpcTrunking` is specified, the elastic network interface
|
5422
5428
|
# (ENI) limit for any new container instances that support the feature
|
5423
|
-
# is changed. If `awsvpcTrunking` is
|
5429
|
+
# is changed. If `awsvpcTrunking` is turned on, any new container
|
5424
5430
|
# instances that support the feature are launched have the increased ENI
|
5425
5431
|
# limits available to them. For more information, see [Elastic Network
|
5426
5432
|
# Interface Trunking][2] in the *Amazon Elastic Container Service
|
5427
5433
|
# Developer Guide*.
|
5428
5434
|
#
|
5429
5435
|
# When `containerInsights` is specified, the default setting indicating
|
5430
|
-
# whether CloudWatch Container Insights is
|
5431
|
-
# changed. If `containerInsights` is
|
5432
|
-
# created will have Container Insights
|
5433
|
-
# during cluster creation. For more information,
|
5434
|
-
# Container Insights][3] in the *Amazon Elastic
|
5435
|
-
# Developer Guide*.
|
5436
|
+
# whether Amazon Web Services CloudWatch Container Insights is turned on
|
5437
|
+
# for your clusters is changed. If `containerInsights` is turned on, any
|
5438
|
+
# new clusters that are created will have Container Insights turned on
|
5439
|
+
# unless you disable it during cluster creation. For more information,
|
5440
|
+
# see [CloudWatch Container Insights][3] in the *Amazon Elastic
|
5441
|
+
# Container Service Developer Guide*.
|
5436
5442
|
#
|
5437
5443
|
#
|
5438
5444
|
#
|
@@ -5449,8 +5455,10 @@ module Aws::ECS
|
|
5449
5455
|
# for your Amazon ECS container instances is affected. If
|
5450
5456
|
# `awsvpcTrunking` is specified, the elastic network interface (ENI)
|
5451
5457
|
# limit for your Amazon ECS container instances is affected. If
|
5452
|
-
# `containerInsights` is specified, the default setting for
|
5453
|
-
# Container Insights for your clusters is affected.
|
5458
|
+
# `containerInsights` is specified, the default setting for Amazon Web
|
5459
|
+
# Services CloudWatch Container Insights for your clusters is affected.
|
5460
|
+
# If `fargateFIPSMode` is specified, Fargate FIPS 140 compliance is
|
5461
|
+
# affected.
|
5454
5462
|
#
|
5455
5463
|
# @option params [required, String] :value
|
5456
5464
|
# The account setting value for the specified principal ARN. Accepted
|
@@ -5517,14 +5525,14 @@ module Aws::ECS
|
|
5517
5525
|
# @example Request syntax with placeholder values
|
5518
5526
|
#
|
5519
5527
|
# resp = client.put_account_setting({
|
5520
|
-
# name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights
|
5528
|
+
# name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights, fargateFIPSMode
|
5521
5529
|
# value: "String", # required
|
5522
5530
|
# principal_arn: "String",
|
5523
5531
|
# })
|
5524
5532
|
#
|
5525
5533
|
# @example Response structure
|
5526
5534
|
#
|
5527
|
-
# resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights"
|
5535
|
+
# resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights", "fargateFIPSMode"
|
5528
5536
|
# resp.setting.value #=> String
|
5529
5537
|
# resp.setting.principal_arn #=> String
|
5530
5538
|
#
|
@@ -5550,18 +5558,19 @@ module Aws::ECS
|
|
5550
5558
|
# for your Amazon ECS container instances is affected. If
|
5551
5559
|
# `awsvpcTrunking` is specified, the ENI limit for your Amazon ECS
|
5552
5560
|
# container instances is affected. If `containerInsights` is specified,
|
5553
|
-
# the default setting for
|
5554
|
-
# clusters is affected.
|
5555
|
-
#
|
5556
|
-
#
|
5557
|
-
#
|
5558
|
-
#
|
5559
|
-
#
|
5560
|
-
#
|
5561
|
+
# the default setting for Amazon Web Services CloudWatch Container
|
5562
|
+
# Insights for your clusters is affected.
|
5563
|
+
#
|
5564
|
+
# When you specify `fargateFIPSMode` for the `name` and `enabled` for
|
5565
|
+
# the `value`, Fargate uses FIPS-140 compliant cryptographic algorithms
|
5566
|
+
# on your tasks. For more information about FIPS-140 compliance with
|
5567
|
+
# Fargate, see [ Amazon Web Services Fargate Federal Information
|
5568
|
+
# Processing Standard (FIPS) 140-2 compliance][1] in the *Amazon Elastic
|
5569
|
+
# Container Service Developer Guide*.
|
5561
5570
|
#
|
5562
5571
|
#
|
5563
5572
|
#
|
5564
|
-
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-
|
5573
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2ContainerServiceDocs/build/server-root/AmazonECS/latest/developerguide/ecs-fips-compliance.html
|
5565
5574
|
#
|
5566
5575
|
# @option params [required, String] :value
|
5567
5576
|
# The account setting value for the specified principal ARN. Accepted
|
@@ -5595,13 +5604,13 @@ module Aws::ECS
|
|
5595
5604
|
# @example Request syntax with placeholder values
|
5596
5605
|
#
|
5597
5606
|
# resp = client.put_account_setting_default({
|
5598
|
-
# name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights
|
5607
|
+
# name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat, awsvpcTrunking, containerInsights, fargateFIPSMode
|
5599
5608
|
# value: "String", # required
|
5600
5609
|
# })
|
5601
5610
|
#
|
5602
5611
|
# @example Response structure
|
5603
5612
|
#
|
5604
|
-
# resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights"
|
5613
|
+
# resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat", "awsvpcTrunking", "containerInsights", "fargateFIPSMode"
|
5605
5614
|
# resp.setting.value #=> String
|
5606
5615
|
# resp.setting.principal_arn #=> String
|
5607
5616
|
#
|
@@ -6322,8 +6331,8 @@ module Aws::ECS
|
|
6322
6331
|
# more information, see [Fargate task storage][1] in the *Amazon ECS
|
6323
6332
|
# User Guide for Fargate*.
|
6324
6333
|
#
|
6325
|
-
# <note markdown="1">
|
6326
|
-
# following
|
6334
|
+
# <note markdown="1"> For tasks using the Fargate launch type, the task requires the
|
6335
|
+
# following platforms:
|
6327
6336
|
#
|
6328
6337
|
# * Linux platform version `1.4.0` or later.
|
6329
6338
|
#
|
@@ -7372,7 +7381,7 @@ module Aws::ECS
|
|
7372
7381
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html
|
7373
7382
|
#
|
7374
7383
|
# @option params [Boolean] :enable_execute_command
|
7375
|
-
# Whether or not the execute command functionality is
|
7384
|
+
# Whether or not the execute command functionality is turned on for the
|
7376
7385
|
# task. If `true`, this enables execute command functionality on all
|
7377
7386
|
# containers in the task.
|
7378
7387
|
#
|
@@ -9400,7 +9409,7 @@ module Aws::ECS
|
|
9400
9409
|
# [deployments][2].
|
9401
9410
|
#
|
9402
9411
|
# Task-protection, by default, expires after 2 hours at which point
|
9403
|
-
# Amazon ECS
|
9412
|
+
# Amazon ECS clears the `protectionEnabled` property making the task
|
9404
9413
|
# eligible for termination by a subsequent scale-in event.
|
9405
9414
|
#
|
9406
9415
|
# You can specify a custom expiration period for task protection from 1
|
@@ -9674,7 +9683,7 @@ module Aws::ECS
|
|
9674
9683
|
params: params,
|
9675
9684
|
config: config)
|
9676
9685
|
context[:gem_name] = 'aws-sdk-ecs'
|
9677
|
-
context[:gem_version] = '1.
|
9686
|
+
context[:gem_version] = '1.114.0'
|
9678
9687
|
Seahorse::Client::Request.new(handlers, context)
|
9679
9688
|
end
|
9680
9689
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -148,9 +148,8 @@ module Aws::ECS
|
|
148
148
|
# Amazon EC2 instances in an Auto Scaling group that contain tasks
|
149
149
|
# from being terminated during a scale-in action. The Auto Scaling
|
150
150
|
# group and each instance in the Auto Scaling group must have instance
|
151
|
-
# protection from scale-in actions
|
152
|
-
#
|
153
|
-
# Guide*.
|
151
|
+
# protection from scale-in actions on as well. For more information,
|
152
|
+
# see [Instance Protection][1] in the *Auto Scaling User Guide*.
|
154
153
|
#
|
155
154
|
# When managed termination protection is off, your Amazon EC2
|
156
155
|
# instances aren't protected from termination when the Auto Scaling
|
@@ -774,7 +773,7 @@ module Aws::ECS
|
|
774
773
|
#
|
775
774
|
#
|
776
775
|
#
|
777
|
-
# [1]: https://docs.aws.amazon.com/
|
776
|
+
# [1]: https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html
|
778
777
|
# @return [String]
|
779
778
|
#
|
780
779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ClusterServiceConnectDefaultsRequest AWS API Documentation
|
@@ -789,16 +788,17 @@ module Aws::ECS
|
|
789
788
|
# turn on CloudWatch Container Insights for a cluster.
|
790
789
|
#
|
791
790
|
# @!attribute [rw] name
|
792
|
-
# The name of the cluster setting. The
|
793
|
-
# `containerInsights`.
|
791
|
+
# The name of the cluster setting. The value is `containerInsights` .
|
794
792
|
# @return [String]
|
795
793
|
#
|
796
794
|
# @!attribute [rw] value
|
797
795
|
# The value to set for the cluster setting. The supported values are
|
798
|
-
# `enabled` and `disabled`.
|
799
|
-
#
|
800
|
-
#
|
801
|
-
#
|
796
|
+
# `enabled` and `disabled`.
|
797
|
+
#
|
798
|
+
# If you set `name` to `containerInsights` and `value` to `enabled`,
|
799
|
+
# CloudWatch Container Insights will be on for the cluster, otherwise
|
800
|
+
# it will be off unless the `containerInsights` account setting is
|
801
|
+
# turned on. If a cluster value is specified, it will override the
|
802
802
|
# `containerInsights` value set with [PutAccountSetting][1] or
|
803
803
|
# [PutAccountSettingDefault][2].
|
804
804
|
#
|
@@ -1624,42 +1624,47 @@ module Aws::ECS
|
|
1624
1624
|
# @return [Array<Types::HostEntry>]
|
1625
1625
|
#
|
1626
1626
|
# @!attribute [rw] docker_security_options
|
1627
|
-
# A list of strings to provide custom
|
1628
|
-
#
|
1629
|
-
#
|
1627
|
+
# A list of strings to provide custom configuration for multiple
|
1628
|
+
# security systems. For more information about valid values, see
|
1629
|
+
# [Docker Run Security Configuration][1]. This field isn't valid for
|
1630
|
+
# containers in tasks using the Fargate launch type.
|
1630
1631
|
#
|
1631
|
-
#
|
1632
|
-
#
|
1632
|
+
# For Linux tasks on EC2, this parameter can be used to reference
|
1633
|
+
# custom labels for SELinux and AppArmor multi-level security systems.
|
1634
|
+
#
|
1635
|
+
# For any tasks on EC2, this parameter can be used to reference a
|
1636
|
+
# credential spec file that configures a container for Active
|
1633
1637
|
# Directory authentication. For more information, see [Using gMSAs for
|
1634
|
-
# Windows Containers][
|
1635
|
-
# Developer Guide*.
|
1638
|
+
# Windows Containers][2] and [Using gMSAs for Linux Containers][3] in
|
1639
|
+
# the *Amazon Elastic Container Service Developer Guide*.
|
1636
1640
|
#
|
1637
|
-
# This parameter maps to `SecurityOpt` in the [Create a container][
|
1638
|
-
# section of the [Docker Remote API][
|
1639
|
-
# option to [docker run][
|
1641
|
+
# This parameter maps to `SecurityOpt` in the [Create a container][4]
|
1642
|
+
# section of the [Docker Remote API][5] and the `--security-opt`
|
1643
|
+
# option to [docker run][1].
|
1640
1644
|
#
|
1641
1645
|
# <note markdown="1"> The Amazon ECS container agent running on a container instance must
|
1642
1646
|
# register with the `ECS_SELINUX_CAPABLE=true` or
|
1643
1647
|
# `ECS_APPARMOR_CAPABLE=true` environment variables before containers
|
1644
1648
|
# placed on that instance can use these security options. For more
|
1645
|
-
# information, see [Amazon ECS Container Agent Configuration][
|
1649
|
+
# information, see [Amazon ECS Container Agent Configuration][6] in
|
1646
1650
|
# the *Amazon Elastic Container Service Developer Guide*.
|
1647
1651
|
#
|
1648
1652
|
# </note>
|
1649
1653
|
#
|
1650
1654
|
# For more information about valid values, see [Docker Run Security
|
1651
|
-
# Configuration][
|
1655
|
+
# Configuration][1].
|
1652
1656
|
#
|
1653
1657
|
# Valid values: "no-new-privileges" \| "apparmor:PROFILE" \|
|
1654
1658
|
# "label:value" \| "credentialspec:CredentialSpecFilePath"
|
1655
1659
|
#
|
1656
1660
|
#
|
1657
1661
|
#
|
1658
|
-
# [1]: https://docs.
|
1659
|
-
# [2]: https://docs.
|
1660
|
-
# [3]: https://docs.
|
1661
|
-
# [4]: https://docs.docker.com/engine/
|
1662
|
-
# [5]: https://docs.
|
1662
|
+
# [1]: https://docs.docker.com/engine/reference/run/#security-configuration
|
1663
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/windows-gmsa.html
|
1664
|
+
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/linux-gmsa.html
|
1665
|
+
# [4]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
|
1666
|
+
# [5]: https://docs.docker.com/engine/api/v1.35/
|
1667
|
+
# [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
|
1663
1668
|
# @return [Array<String>]
|
1664
1669
|
#
|
1665
1670
|
# @!attribute [rw] interactive
|
@@ -2511,6 +2516,13 @@ module Aws::ECS
|
|
2511
2516
|
#
|
2512
2517
|
# A task definition must be specified if the service uses either the
|
2513
2518
|
# `ECS` or `CODE_DEPLOY` deployment controllers.
|
2519
|
+
#
|
2520
|
+
# For more information about deployment types, see [Amazon ECS
|
2521
|
+
# deployment types][1].
|
2522
|
+
#
|
2523
|
+
#
|
2524
|
+
#
|
2525
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html
|
2514
2526
|
# @return [String]
|
2515
2527
|
#
|
2516
2528
|
# @!attribute [rw] load_balancers
|
@@ -2839,9 +2851,9 @@ module Aws::ECS
|
|
2839
2851
|
# @return [String]
|
2840
2852
|
#
|
2841
2853
|
# @!attribute [rw] enable_execute_command
|
2842
|
-
# Determines whether the execute command functionality is
|
2843
|
-
# the service. If `true`, this enables execute command
|
2844
|
-
# on all containers in the service tasks.
|
2854
|
+
# Determines whether the execute command functionality is turned on
|
2855
|
+
# for the service. If `true`, this enables execute command
|
2856
|
+
# functionality on all containers in the service tasks.
|
2845
2857
|
# @return [Boolean]
|
2846
2858
|
#
|
2847
2859
|
# @!attribute [rw] service_connect_configuration
|
@@ -3445,9 +3457,9 @@ module Aws::ECS
|
|
3445
3457
|
# started, it begins in an `IN_PROGRESS` state. When the service
|
3446
3458
|
# reaches a steady state, the deployment transitions to a `COMPLETED`
|
3447
3459
|
# state. If the service fails to reach a steady state and circuit
|
3448
|
-
# breaker is
|
3449
|
-
# A deployment in `FAILED` state doesn't launch any new tasks.
|
3450
|
-
# more information, see DeploymentCircuitBreaker.
|
3460
|
+
# breaker is turned on, the deployment transitions to a `FAILED`
|
3461
|
+
# state. A deployment in `FAILED` state doesn't launch any new tasks.
|
3462
|
+
# For more information, see DeploymentCircuitBreaker.
|
3451
3463
|
# @return [String]
|
3452
3464
|
#
|
3453
3465
|
# @!attribute [rw] rollout_state_reason
|
@@ -3559,12 +3571,12 @@ module Aws::ECS
|
|
3559
3571
|
# </note>
|
3560
3572
|
#
|
3561
3573
|
# The **deployment circuit breaker** determines whether a service
|
3562
|
-
# deployment will fail if the service can't reach a steady state. If
|
3563
|
-
#
|
3564
|
-
# stop launching new tasks. You can also configure Amazon ECS to
|
3565
|
-
# back your service to the last completed deployment after a
|
3566
|
-
# For more information, see [Rolling update][1] in the *Amazon
|
3567
|
-
# Container Service Developer Guide*.
|
3574
|
+
# deployment will fail if the service can't reach a steady state. If it
|
3575
|
+
# is turned on, a service deployment will transition to a failed state
|
3576
|
+
# and stop launching new tasks. You can also configure Amazon ECS to
|
3577
|
+
# roll back your service to the last completed deployment after a
|
3578
|
+
# failure. For more information, see [Rolling update][1] in the *Amazon
|
3579
|
+
# Elastic Container Service Developer Guide*.
|
3568
3580
|
#
|
3569
3581
|
#
|
3570
3582
|
#
|
@@ -4385,7 +4397,7 @@ module Aws::ECS
|
|
4385
4397
|
# specified, the root directory value specified in the
|
4386
4398
|
# `EFSVolumeConfiguration` must either be omitted or set to `/` which
|
4387
4399
|
# will enforce the path set on the EFS access point. If an access
|
4388
|
-
# point is used, transit encryption must be
|
4400
|
+
# point is used, transit encryption must be on in the
|
4389
4401
|
# `EFSVolumeConfiguration`. For more information, see [Working with
|
4390
4402
|
# Amazon EFS access points][1] in the *Amazon Elastic File System User
|
4391
4403
|
# Guide*.
|
@@ -4397,11 +4409,12 @@ module Aws::ECS
|
|
4397
4409
|
#
|
4398
4410
|
# @!attribute [rw] iam
|
4399
4411
|
# Determines whether to use the Amazon ECS task role defined in a task
|
4400
|
-
# definition when mounting the Amazon EFS file system. If
|
4401
|
-
# transit encryption must be
|
4402
|
-
# If this parameter is omitted, the default
|
4403
|
-
# used. For more information, see [Using Amazon
|
4404
|
-
# in the *Amazon Elastic Container Service
|
4412
|
+
# definition when mounting the Amazon EFS file system. If it is turned
|
4413
|
+
# on, transit encryption must be turned on in the
|
4414
|
+
# `EFSVolumeConfiguration`. If this parameter is omitted, the default
|
4415
|
+
# value of `DISABLED` is used. For more information, see [Using Amazon
|
4416
|
+
# EFS access points][1] in the *Amazon Elastic Container Service
|
4417
|
+
# Developer Guide*.
|
4405
4418
|
#
|
4406
4419
|
#
|
4407
4420
|
#
|
@@ -4444,10 +4457,10 @@ module Aws::ECS
|
|
4444
4457
|
# @!attribute [rw] transit_encryption
|
4445
4458
|
# Determines whether to use encryption for Amazon EFS data in transit
|
4446
4459
|
# between the Amazon ECS host and the Amazon EFS server. Transit
|
4447
|
-
# encryption must be
|
4448
|
-
# If this parameter is omitted, the default value of `DISABLED`
|
4449
|
-
# used. For more information, see [Encrypting data in transit][1]
|
4450
|
-
# the *Amazon Elastic File System User Guide*.
|
4460
|
+
# encryption must be turned on if Amazon EFS IAM authorization is
|
4461
|
+
# used. If this parameter is omitted, the default value of `DISABLED`
|
4462
|
+
# is used. For more information, see [Encrypting data in transit][1]
|
4463
|
+
# in the *Amazon Elastic File System User Guide*.
|
4451
4464
|
#
|
4452
4465
|
#
|
4453
4466
|
#
|
@@ -4536,9 +4549,12 @@ module Aws::ECS
|
|
4536
4549
|
# more information, see [Fargate task storage][1] in the *Amazon ECS
|
4537
4550
|
# User Guide for Fargate*.
|
4538
4551
|
#
|
4539
|
-
# <note markdown="1">
|
4540
|
-
#
|
4541
|
-
#
|
4552
|
+
# <note markdown="1"> For tasks using the Fargate launch type, the task requires the
|
4553
|
+
# following platforms:
|
4554
|
+
#
|
4555
|
+
# * Linux platform version `1.4.0` or later.
|
4556
|
+
#
|
4557
|
+
# ^
|
4542
4558
|
#
|
4543
4559
|
# </note>
|
4544
4560
|
#
|
@@ -4895,7 +4911,7 @@ module Aws::ECS
|
|
4895
4911
|
# * `taskArn`: The task ARN.
|
4896
4912
|
#
|
4897
4913
|
# * `protectionEnabled`: The protection status of the task. If
|
4898
|
-
# scale-in protection is
|
4914
|
+
# scale-in protection is turned on for a task, the value is `true`.
|
4899
4915
|
# Otherwise, it is `false`.
|
4900
4916
|
#
|
4901
4917
|
# * `expirationDate`: The epoch time when protection for the task will
|
@@ -6381,7 +6397,7 @@ module Aws::ECS
|
|
6381
6397
|
#
|
6382
6398
|
# @!attribute [rw] name
|
6383
6399
|
# The name of the managed agent. When the execute command feature is
|
6384
|
-
#
|
6400
|
+
# turned on, the managed agent name is `ExecuteCommandAgent`.
|
6385
6401
|
# @return [String]
|
6386
6402
|
#
|
6387
6403
|
# @!attribute [rw] reason
|
@@ -6435,7 +6451,7 @@ module Aws::ECS
|
|
6435
6451
|
# The managed scaling settings for the Auto Scaling group capacity
|
6436
6452
|
# provider.
|
6437
6453
|
#
|
6438
|
-
# When managed scaling is
|
6454
|
+
# When managed scaling is turned on, Amazon ECS manages the scale-in and
|
6439
6455
|
# scale-out actions of the Auto Scaling group. Amazon ECS manages a
|
6440
6456
|
# target tracking scaling policy using an Amazon ECS managed CloudWatch
|
6441
6457
|
# metric with the specified `targetCapacity` value as the target value
|
@@ -6866,7 +6882,7 @@ module Aws::ECS
|
|
6866
6882
|
# is a static mapping strategy.
|
6867
6883
|
#
|
6868
6884
|
# * For containers in a task with the `bridge` network mode, the
|
6869
|
-
# Amazon ECS agent finds open ports on the host and
|
6885
|
+
# Amazon ECS agent finds open ports on the host and automatically
|
6870
6886
|
# binds them to the container ports. This is a dynamic mapping
|
6871
6887
|
# strategy.
|
6872
6888
|
#
|
@@ -7129,18 +7145,19 @@ module Aws::ECS
|
|
7129
7145
|
# ID for your Amazon ECS container instances is affected. If
|
7130
7146
|
# `awsvpcTrunking` is specified, the ENI limit for your Amazon ECS
|
7131
7147
|
# container instances is affected. If `containerInsights` is
|
7132
|
-
# specified, the default setting for
|
7133
|
-
# your clusters is affected.
|
7148
|
+
# specified, the default setting for Amazon Web Services CloudWatch
|
7149
|
+
# Container Insights for your clusters is affected.
|
7134
7150
|
#
|
7135
|
-
#
|
7136
|
-
#
|
7137
|
-
#
|
7138
|
-
#
|
7139
|
-
#
|
7151
|
+
# When you specify `fargateFIPSMode` for the `name` and `enabled` for
|
7152
|
+
# the `value`, Fargate uses FIPS-140 compliant cryptographic
|
7153
|
+
# algorithms on your tasks. For more information about FIPS-140
|
7154
|
+
# compliance with Fargate, see [ Amazon Web Services Fargate Federal
|
7155
|
+
# Information Processing Standard (FIPS) 140-2 compliance][1] in the
|
7156
|
+
# *Amazon Elastic Container Service Developer Guide*.
|
7140
7157
|
#
|
7141
7158
|
#
|
7142
7159
|
#
|
7143
|
-
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-
|
7160
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2ContainerServiceDocs/build/server-root/AmazonECS/latest/developerguide/ecs-fips-compliance.html
|
7144
7161
|
# @return [String]
|
7145
7162
|
#
|
7146
7163
|
# @!attribute [rw] value
|
@@ -7178,8 +7195,10 @@ module Aws::ECS
|
|
7178
7195
|
# and resource ID for your Amazon ECS container instances is affected.
|
7179
7196
|
# If `awsvpcTrunking` is specified, the elastic network interface
|
7180
7197
|
# (ENI) limit for your Amazon ECS container instances is affected. If
|
7181
|
-
# `containerInsights` is specified, the default setting for
|
7182
|
-
# Container Insights for your clusters is
|
7198
|
+
# `containerInsights` is specified, the default setting for Amazon Web
|
7199
|
+
# Services CloudWatch Container Insights for your clusters is
|
7200
|
+
# affected. If `fargateFIPSMode` is specified, Fargate FIPS 140
|
7201
|
+
# compliance is affected.
|
7183
7202
|
# @return [String]
|
7184
7203
|
#
|
7185
7204
|
# @!attribute [rw] value
|
@@ -7754,8 +7773,8 @@ module Aws::ECS
|
|
7754
7773
|
# For more information, see [Fargate task storage][1] in the *Amazon
|
7755
7774
|
# ECS User Guide for Fargate*.
|
7756
7775
|
#
|
7757
|
-
# <note markdown="1">
|
7758
|
-
#
|
7776
|
+
# <note markdown="1"> For tasks using the Fargate launch type, the task requires the
|
7777
|
+
# following platforms:
|
7759
7778
|
#
|
7760
7779
|
# * Linux platform version `1.4.0` or later.
|
7761
7780
|
#
|
@@ -7906,7 +7925,7 @@ module Aws::ECS
|
|
7906
7925
|
#
|
7907
7926
|
#
|
7908
7927
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html
|
7909
|
-
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/
|
7928
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html
|
7910
7929
|
#
|
7911
7930
|
# @!attribute [rw] value
|
7912
7931
|
# The value for the specified resource type.
|
@@ -8565,9 +8584,9 @@ module Aws::ECS
|
|
8565
8584
|
# @return [String]
|
8566
8585
|
#
|
8567
8586
|
# @!attribute [rw] enable_execute_command
|
8568
|
-
# Determines whether the execute command functionality is
|
8569
|
-
# the service. If `true`, the execute command functionality is
|
8570
|
-
# for all containers in tasks as part of the service.
|
8587
|
+
# Determines whether the execute command functionality is turned on
|
8588
|
+
# for the service. If `true`, the execute command functionality is
|
8589
|
+
# turned on for all containers in tasks as part of the service.
|
8571
8590
|
# @return [Boolean]
|
8572
8591
|
#
|
8573
8592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Service AWS API Documentation
|
@@ -8704,7 +8723,7 @@ module Aws::ECS
|
|
8704
8723
|
#
|
8705
8724
|
#
|
8706
8725
|
#
|
8707
|
-
# [1]: https://docs.aws.amazon.com/
|
8726
|
+
# [1]: https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html
|
8708
8727
|
# @return [String]
|
8709
8728
|
#
|
8710
8729
|
# @!attribute [rw] services
|
@@ -9064,9 +9083,9 @@ module Aws::ECS
|
|
9064
9083
|
# @return [Boolean]
|
9065
9084
|
#
|
9066
9085
|
# @!attribute [rw] enable_execute_command
|
9067
|
-
# Whether or not the execute command functionality is
|
9068
|
-
# task. If `true`, this enables execute command functionality on
|
9069
|
-
# containers in the task.
|
9086
|
+
# Whether or not the execute command functionality is turned on for
|
9087
|
+
# the task. If `true`, this enables execute command functionality on
|
9088
|
+
# all containers in the task.
|
9070
9089
|
# @return [Boolean]
|
9071
9090
|
#
|
9072
9091
|
# @!attribute [rw] group
|
@@ -9548,7 +9567,7 @@ module Aws::ECS
|
|
9548
9567
|
# * The SSM agent is not installed or is not running
|
9549
9568
|
#
|
9550
9569
|
# * There is an interface Amazon VPC endpoint for Amazon ECS, but there
|
9551
|
-
# is not one for
|
9570
|
+
# is not one for Systems Manager Session Manager
|
9552
9571
|
#
|
9553
9572
|
# For information about how to troubleshoot the issues, see
|
9554
9573
|
# [Troubleshooting issues with ECS Exec][1] in the *Amazon Elastic
|
@@ -9672,9 +9691,9 @@ module Aws::ECS
|
|
9672
9691
|
# @return [String]
|
9673
9692
|
#
|
9674
9693
|
# @!attribute [rw] enable_execute_command
|
9675
|
-
# Determines whether execute command functionality is
|
9676
|
-
# task. If `true`, execute command functionality is
|
9677
|
-
# containers in the task.
|
9694
|
+
# Determines whether execute command functionality is turned on for
|
9695
|
+
# this task. If `true`, execute command functionality is turned on all
|
9696
|
+
# the containers in the task.
|
9678
9697
|
# @return [Boolean]
|
9679
9698
|
#
|
9680
9699
|
# @!attribute [rw] execution_stopped_at
|
@@ -10356,9 +10375,9 @@ module Aws::ECS
|
|
10356
10375
|
include Aws::Structure
|
10357
10376
|
end
|
10358
10377
|
|
10359
|
-
#
|
10360
|
-
#
|
10361
|
-
#
|
10378
|
+
# The constraint on task placement in the task definition. For more
|
10379
|
+
# information, see [Task placement constraints][1] in the *Amazon
|
10380
|
+
# Elastic Container Service Developer Guide*.
|
10362
10381
|
#
|
10363
10382
|
# <note markdown="1"> Task placement constraints aren't supported for tasks run on Fargate.
|
10364
10383
|
#
|
@@ -11369,7 +11388,7 @@ module Aws::ECS
|
|
11369
11388
|
# * `taskArn`: The task ARN.
|
11370
11389
|
#
|
11371
11390
|
# * `protectionEnabled`: The protection status of the task. If
|
11372
|
-
# scale-in protection is
|
11391
|
+
# scale-in protection is turned on for a task, the value is `true`.
|
11373
11392
|
# Otherwise, it is `false`.
|
11374
11393
|
#
|
11375
11394
|
# * `expirationDate`: The epoch time when protection for the task will
|
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.114.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: 2023-04-
|
11
|
+
date: 2023-04-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|