aws-sdk-ecs 1.112.0 → 1.113.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +47 -38
- data/lib/aws-sdk-ecs/types.rb +81 -67
- 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: a76ffb05a916f4f3f5ccd7fec5cbc2e06e8fb1c39f8e62066877416fd0d5e853
|
4
|
+
data.tar.gz: 61381602f6d9cdb9733bfabd38ddac65a0322afd32b59ebf072984c86471a5dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bb1494e02873743999bbea2dcddefed53ee93a42a0258fcfde18ff55880441a510751c5b5131750fa30f6c1406b8917111019353414d5d374b5f86491dbdfea
|
7
|
+
data.tar.gz: 636e49a6438e17287d95dccd965c853c468827cf927bba3c25061d44e3dc7b08005b161838eacea58b2d5bab9afa0b348752a7c0c05fa9b1866b83000dd60bab
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.113.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.113.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
|
#
|
@@ -2511,6 +2511,13 @@ module Aws::ECS
|
|
2511
2511
|
#
|
2512
2512
|
# A task definition must be specified if the service uses either the
|
2513
2513
|
# `ECS` or `CODE_DEPLOY` deployment controllers.
|
2514
|
+
#
|
2515
|
+
# For more information about deployment types, see [Amazon ECS
|
2516
|
+
# deployment types][1].
|
2517
|
+
#
|
2518
|
+
#
|
2519
|
+
#
|
2520
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html
|
2514
2521
|
# @return [String]
|
2515
2522
|
#
|
2516
2523
|
# @!attribute [rw] load_balancers
|
@@ -2839,9 +2846,9 @@ module Aws::ECS
|
|
2839
2846
|
# @return [String]
|
2840
2847
|
#
|
2841
2848
|
# @!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.
|
2849
|
+
# Determines whether the execute command functionality is turned on
|
2850
|
+
# for the service. If `true`, this enables execute command
|
2851
|
+
# functionality on all containers in the service tasks.
|
2845
2852
|
# @return [Boolean]
|
2846
2853
|
#
|
2847
2854
|
# @!attribute [rw] service_connect_configuration
|
@@ -3445,9 +3452,9 @@ module Aws::ECS
|
|
3445
3452
|
# started, it begins in an `IN_PROGRESS` state. When the service
|
3446
3453
|
# reaches a steady state, the deployment transitions to a `COMPLETED`
|
3447
3454
|
# 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.
|
3455
|
+
# breaker is turned on, the deployment transitions to a `FAILED`
|
3456
|
+
# state. A deployment in `FAILED` state doesn't launch any new tasks.
|
3457
|
+
# For more information, see DeploymentCircuitBreaker.
|
3451
3458
|
# @return [String]
|
3452
3459
|
#
|
3453
3460
|
# @!attribute [rw] rollout_state_reason
|
@@ -3559,12 +3566,12 @@ module Aws::ECS
|
|
3559
3566
|
# </note>
|
3560
3567
|
#
|
3561
3568
|
# 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*.
|
3569
|
+
# deployment will fail if the service can't reach a steady state. If it
|
3570
|
+
# is turned on, a service deployment will transition to a failed state
|
3571
|
+
# and stop launching new tasks. You can also configure Amazon ECS to
|
3572
|
+
# roll back your service to the last completed deployment after a
|
3573
|
+
# failure. For more information, see [Rolling update][1] in the *Amazon
|
3574
|
+
# Elastic Container Service Developer Guide*.
|
3568
3575
|
#
|
3569
3576
|
#
|
3570
3577
|
#
|
@@ -4385,7 +4392,7 @@ module Aws::ECS
|
|
4385
4392
|
# specified, the root directory value specified in the
|
4386
4393
|
# `EFSVolumeConfiguration` must either be omitted or set to `/` which
|
4387
4394
|
# will enforce the path set on the EFS access point. If an access
|
4388
|
-
# point is used, transit encryption must be
|
4395
|
+
# point is used, transit encryption must be on in the
|
4389
4396
|
# `EFSVolumeConfiguration`. For more information, see [Working with
|
4390
4397
|
# Amazon EFS access points][1] in the *Amazon Elastic File System User
|
4391
4398
|
# Guide*.
|
@@ -4397,11 +4404,12 @@ module Aws::ECS
|
|
4397
4404
|
#
|
4398
4405
|
# @!attribute [rw] iam
|
4399
4406
|
# 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
|
4407
|
+
# definition when mounting the Amazon EFS file system. If it is turned
|
4408
|
+
# on, transit encryption must be turned on in the
|
4409
|
+
# `EFSVolumeConfiguration`. If this parameter is omitted, the default
|
4410
|
+
# value of `DISABLED` is used. For more information, see [Using Amazon
|
4411
|
+
# EFS access points][1] in the *Amazon Elastic Container Service
|
4412
|
+
# Developer Guide*.
|
4405
4413
|
#
|
4406
4414
|
#
|
4407
4415
|
#
|
@@ -4444,10 +4452,10 @@ module Aws::ECS
|
|
4444
4452
|
# @!attribute [rw] transit_encryption
|
4445
4453
|
# Determines whether to use encryption for Amazon EFS data in transit
|
4446
4454
|
# 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*.
|
4455
|
+
# encryption must be turned on if Amazon EFS IAM authorization is
|
4456
|
+
# used. If this parameter is omitted, the default value of `DISABLED`
|
4457
|
+
# is used. For more information, see [Encrypting data in transit][1]
|
4458
|
+
# in the *Amazon Elastic File System User Guide*.
|
4451
4459
|
#
|
4452
4460
|
#
|
4453
4461
|
#
|
@@ -4536,9 +4544,12 @@ module Aws::ECS
|
|
4536
4544
|
# more information, see [Fargate task storage][1] in the *Amazon ECS
|
4537
4545
|
# User Guide for Fargate*.
|
4538
4546
|
#
|
4539
|
-
# <note markdown="1">
|
4540
|
-
#
|
4541
|
-
#
|
4547
|
+
# <note markdown="1"> For tasks using the Fargate launch type, the task requires the
|
4548
|
+
# following platforms:
|
4549
|
+
#
|
4550
|
+
# * Linux platform version `1.4.0` or later.
|
4551
|
+
#
|
4552
|
+
# ^
|
4542
4553
|
#
|
4543
4554
|
# </note>
|
4544
4555
|
#
|
@@ -4895,7 +4906,7 @@ module Aws::ECS
|
|
4895
4906
|
# * `taskArn`: The task ARN.
|
4896
4907
|
#
|
4897
4908
|
# * `protectionEnabled`: The protection status of the task. If
|
4898
|
-
# scale-in protection is
|
4909
|
+
# scale-in protection is turned on for a task, the value is `true`.
|
4899
4910
|
# Otherwise, it is `false`.
|
4900
4911
|
#
|
4901
4912
|
# * `expirationDate`: The epoch time when protection for the task will
|
@@ -6381,7 +6392,7 @@ module Aws::ECS
|
|
6381
6392
|
#
|
6382
6393
|
# @!attribute [rw] name
|
6383
6394
|
# The name of the managed agent. When the execute command feature is
|
6384
|
-
#
|
6395
|
+
# turned on, the managed agent name is `ExecuteCommandAgent`.
|
6385
6396
|
# @return [String]
|
6386
6397
|
#
|
6387
6398
|
# @!attribute [rw] reason
|
@@ -6435,7 +6446,7 @@ module Aws::ECS
|
|
6435
6446
|
# The managed scaling settings for the Auto Scaling group capacity
|
6436
6447
|
# provider.
|
6437
6448
|
#
|
6438
|
-
# When managed scaling is
|
6449
|
+
# When managed scaling is turned on, Amazon ECS manages the scale-in and
|
6439
6450
|
# scale-out actions of the Auto Scaling group. Amazon ECS manages a
|
6440
6451
|
# target tracking scaling policy using an Amazon ECS managed CloudWatch
|
6441
6452
|
# metric with the specified `targetCapacity` value as the target value
|
@@ -6866,7 +6877,7 @@ module Aws::ECS
|
|
6866
6877
|
# is a static mapping strategy.
|
6867
6878
|
#
|
6868
6879
|
# * For containers in a task with the `bridge` network mode, the
|
6869
|
-
# Amazon ECS agent finds open ports on the host and
|
6880
|
+
# Amazon ECS agent finds open ports on the host and automatically
|
6870
6881
|
# binds them to the container ports. This is a dynamic mapping
|
6871
6882
|
# strategy.
|
6872
6883
|
#
|
@@ -7129,18 +7140,19 @@ module Aws::ECS
|
|
7129
7140
|
# ID for your Amazon ECS container instances is affected. If
|
7130
7141
|
# `awsvpcTrunking` is specified, the ENI limit for your Amazon ECS
|
7131
7142
|
# container instances is affected. If `containerInsights` is
|
7132
|
-
# specified, the default setting for
|
7133
|
-
# your clusters is affected.
|
7143
|
+
# specified, the default setting for Amazon Web Services CloudWatch
|
7144
|
+
# Container Insights for your clusters is affected.
|
7134
7145
|
#
|
7135
|
-
#
|
7136
|
-
#
|
7137
|
-
#
|
7138
|
-
#
|
7139
|
-
#
|
7146
|
+
# When you specify `fargateFIPSMode` for the `name` and `enabled` for
|
7147
|
+
# the `value`, Fargate uses FIPS-140 compliant cryptographic
|
7148
|
+
# algorithms on your tasks. For more information about FIPS-140
|
7149
|
+
# compliance with Fargate, see [ Amazon Web Services Fargate Federal
|
7150
|
+
# Information Processing Standard (FIPS) 140-2 compliance][1] in the
|
7151
|
+
# *Amazon Elastic Container Service Developer Guide*.
|
7140
7152
|
#
|
7141
7153
|
#
|
7142
7154
|
#
|
7143
|
-
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-
|
7155
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2ContainerServiceDocs/build/server-root/AmazonECS/latest/developerguide/ecs-fips-compliance.html
|
7144
7156
|
# @return [String]
|
7145
7157
|
#
|
7146
7158
|
# @!attribute [rw] value
|
@@ -7178,8 +7190,10 @@ module Aws::ECS
|
|
7178
7190
|
# and resource ID for your Amazon ECS container instances is affected.
|
7179
7191
|
# If `awsvpcTrunking` is specified, the elastic network interface
|
7180
7192
|
# (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
|
7193
|
+
# `containerInsights` is specified, the default setting for Amazon Web
|
7194
|
+
# Services CloudWatch Container Insights for your clusters is
|
7195
|
+
# affected. If `fargateFIPSMode` is specified, Fargate FIPS 140
|
7196
|
+
# compliance is affected.
|
7183
7197
|
# @return [String]
|
7184
7198
|
#
|
7185
7199
|
# @!attribute [rw] value
|
@@ -7754,8 +7768,8 @@ module Aws::ECS
|
|
7754
7768
|
# For more information, see [Fargate task storage][1] in the *Amazon
|
7755
7769
|
# ECS User Guide for Fargate*.
|
7756
7770
|
#
|
7757
|
-
# <note markdown="1">
|
7758
|
-
#
|
7771
|
+
# <note markdown="1"> For tasks using the Fargate launch type, the task requires the
|
7772
|
+
# following platforms:
|
7759
7773
|
#
|
7760
7774
|
# * Linux platform version `1.4.0` or later.
|
7761
7775
|
#
|
@@ -7906,7 +7920,7 @@ module Aws::ECS
|
|
7906
7920
|
#
|
7907
7921
|
#
|
7908
7922
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html
|
7909
|
-
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/
|
7923
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html
|
7910
7924
|
#
|
7911
7925
|
# @!attribute [rw] value
|
7912
7926
|
# The value for the specified resource type.
|
@@ -8565,9 +8579,9 @@ module Aws::ECS
|
|
8565
8579
|
# @return [String]
|
8566
8580
|
#
|
8567
8581
|
# @!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.
|
8582
|
+
# Determines whether the execute command functionality is turned on
|
8583
|
+
# for the service. If `true`, the execute command functionality is
|
8584
|
+
# turned on for all containers in tasks as part of the service.
|
8571
8585
|
# @return [Boolean]
|
8572
8586
|
#
|
8573
8587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Service AWS API Documentation
|
@@ -8704,7 +8718,7 @@ module Aws::ECS
|
|
8704
8718
|
#
|
8705
8719
|
#
|
8706
8720
|
#
|
8707
|
-
# [1]: https://docs.aws.amazon.com/
|
8721
|
+
# [1]: https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html
|
8708
8722
|
# @return [String]
|
8709
8723
|
#
|
8710
8724
|
# @!attribute [rw] services
|
@@ -9064,9 +9078,9 @@ module Aws::ECS
|
|
9064
9078
|
# @return [Boolean]
|
9065
9079
|
#
|
9066
9080
|
# @!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.
|
9081
|
+
# Whether or not the execute command functionality is turned on for
|
9082
|
+
# the task. If `true`, this enables execute command functionality on
|
9083
|
+
# all containers in the task.
|
9070
9084
|
# @return [Boolean]
|
9071
9085
|
#
|
9072
9086
|
# @!attribute [rw] group
|
@@ -9548,7 +9562,7 @@ module Aws::ECS
|
|
9548
9562
|
# * The SSM agent is not installed or is not running
|
9549
9563
|
#
|
9550
9564
|
# * There is an interface Amazon VPC endpoint for Amazon ECS, but there
|
9551
|
-
# is not one for
|
9565
|
+
# is not one for Systems Manager Session Manager
|
9552
9566
|
#
|
9553
9567
|
# For information about how to troubleshoot the issues, see
|
9554
9568
|
# [Troubleshooting issues with ECS Exec][1] in the *Amazon Elastic
|
@@ -9672,9 +9686,9 @@ module Aws::ECS
|
|
9672
9686
|
# @return [String]
|
9673
9687
|
#
|
9674
9688
|
# @!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.
|
9689
|
+
# Determines whether execute command functionality is turned on for
|
9690
|
+
# this task. If `true`, execute command functionality is turned on all
|
9691
|
+
# the containers in the task.
|
9678
9692
|
# @return [Boolean]
|
9679
9693
|
#
|
9680
9694
|
# @!attribute [rw] execution_stopped_at
|
@@ -10356,9 +10370,9 @@ module Aws::ECS
|
|
10356
10370
|
include Aws::Structure
|
10357
10371
|
end
|
10358
10372
|
|
10359
|
-
#
|
10360
|
-
#
|
10361
|
-
#
|
10373
|
+
# The constraint on task placement in the task definition. For more
|
10374
|
+
# information, see [Task placement constraints][1] in the *Amazon
|
10375
|
+
# Elastic Container Service Developer Guide*.
|
10362
10376
|
#
|
10363
10377
|
# <note markdown="1"> Task placement constraints aren't supported for tasks run on Fargate.
|
10364
10378
|
#
|
@@ -11369,7 +11383,7 @@ module Aws::ECS
|
|
11369
11383
|
# * `taskArn`: The task ARN.
|
11370
11384
|
#
|
11371
11385
|
# * `protectionEnabled`: The protection status of the task. If
|
11372
|
-
# scale-in protection is
|
11386
|
+
# scale-in protection is turned on for a task, the value is `true`.
|
11373
11387
|
# Otherwise, it is `false`.
|
11374
11388
|
#
|
11375
11389
|
# * `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.113.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-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|