aws-sdk-ecs 1.141.0 → 1.142.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 +185 -127
- data/lib/aws-sdk-ecs/types.rb +194 -73
- 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: 4500302c9d80a2ade7b9c76b57217d9cc672c7a2b2291b3de8d2dffb89ab499a
|
|
4
|
+
data.tar.gz: 9ec3133f14d07fb569729fb4e619853a39d7d6870b3d0a78356ffd8c901017ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcc243650eb87d14bb39fae429315363dfcc07cd67f3c509646d072195d2bbb85cf852d3802f7e597ffc75352971bc0e454a710f1a9c8fbee79f7892bc0a62a1
|
|
7
|
+
data.tar.gz: f9cf25eb551d6f1d3a4fecd925eb01b283f1e91ae0019893f7ebd8075e85483466a0e07b698cce08a2e2555ff95ba447b413ee873ce0c398d3e898963639f7d1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.142.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -5588,93 +5588,103 @@ module Aws::ECS
|
|
|
5588
5588
|
# account settings. For more information, see [Account Settings][1] in
|
|
5589
5589
|
# the *Amazon Elastic Container Service Developer Guide*.
|
|
5590
5590
|
#
|
|
5591
|
-
# When you specify `serviceLongArnFormat`, `taskLongArnFormat`, or
|
|
5592
|
-
# `containerInstanceLongArnFormat`, the Amazon Resource Name (ARN) and
|
|
5593
|
-
# resource ID format of the resource type for a specified user, role, or
|
|
5594
|
-
# the root user for an account is affected. The opt-in and opt-out
|
|
5595
|
-
# account setting must be set for each Amazon ECS resource separately.
|
|
5596
|
-
# The ARN and resource ID format of a resource is defined by the opt-in
|
|
5597
|
-
# status of the user or role that created the resource. You must turn on
|
|
5598
|
-
# this setting to use Amazon ECS features such as resource tagging.
|
|
5599
|
-
#
|
|
5600
|
-
# When you specify `awsvpcTrunking`, the elastic network interface (ENI)
|
|
5601
|
-
# limit for any new container instances that support the feature is
|
|
5602
|
-
# changed. If `awsvpcTrunking` is turned on, any new container instances
|
|
5603
|
-
# that support the feature are launched have the increased ENI limits
|
|
5604
|
-
# available to them. For more information, see [Elastic Network
|
|
5605
|
-
# Interface Trunking][2] in the *Amazon Elastic Container Service
|
|
5606
|
-
# Developer Guide*.
|
|
5607
|
-
#
|
|
5608
|
-
# When you specify `containerInsights`, the default setting indicating
|
|
5609
|
-
# whether Amazon Web Services CloudWatch Container Insights is turned on
|
|
5610
|
-
# for your clusters is changed. If `containerInsights` is turned on, any
|
|
5611
|
-
# new clusters that are created will have Container Insights turned on
|
|
5612
|
-
# unless you disable it during cluster creation. For more information,
|
|
5613
|
-
# see [CloudWatch Container Insights][3] in the *Amazon Elastic
|
|
5614
|
-
# Container Service Developer Guide*.
|
|
5615
|
-
#
|
|
5616
|
-
# Amazon ECS is introducing tagging authorization for resource creation.
|
|
5617
|
-
# Users must have permissions for actions that create the resource, such
|
|
5618
|
-
# as `ecsCreateCluster`. If tags are specified when you create a
|
|
5619
|
-
# resource, Amazon Web Services performs additional authorization to
|
|
5620
|
-
# verify if users or roles have permissions to create tags. Therefore,
|
|
5621
|
-
# you must grant explicit permissions to use the `ecs:TagResource`
|
|
5622
|
-
# action. For more information, see [Grant permission to tag resources
|
|
5623
|
-
# on creation][4] in the *Amazon ECS Developer Guide*.
|
|
5624
|
-
#
|
|
5625
|
-
# When Amazon Web Services determines that a security or infrastructure
|
|
5626
|
-
# update is needed for an Amazon ECS task hosted on Fargate, the tasks
|
|
5627
|
-
# need to be stopped and new tasks launched to replace them. Use
|
|
5628
|
-
# `fargateTaskRetirementWaitPeriod` to configure the wait time to retire
|
|
5629
|
-
# a Fargate task. For information about the Fargate tasks maintenance,
|
|
5630
|
-
# see [Amazon Web Services Fargate task maintenance][5] in the *Amazon
|
|
5631
|
-
# ECS Developer Guide*.
|
|
5632
|
-
#
|
|
5633
|
-
# The `guardDutyActivate` parameter is read-only in Amazon ECS and
|
|
5634
|
-
# indicates whether Amazon ECS Runtime Monitoring is enabled or disabled
|
|
5635
|
-
# by your security administrator in your Amazon ECS account. Amazon
|
|
5636
|
-
# GuardDuty controls this account setting on your behalf. For more
|
|
5637
|
-
# information, see [Protecting Amazon ECS workloads with Amazon ECS
|
|
5638
|
-
# Runtime Monitoring][6].
|
|
5639
|
-
#
|
|
5640
5591
|
#
|
|
5641
5592
|
#
|
|
5642
5593
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html
|
|
5643
|
-
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-eni.html
|
|
5644
|
-
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
|
|
5645
|
-
# [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/supported-iam-actions-tagging.html
|
|
5646
|
-
# [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-maintenance.html
|
|
5647
|
-
# [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-guard-duty-integration.html
|
|
5648
5594
|
#
|
|
5649
5595
|
# @option params [required, String] :name
|
|
5650
|
-
# The Amazon ECS
|
|
5651
|
-
#
|
|
5652
|
-
#
|
|
5653
|
-
#
|
|
5654
|
-
# `
|
|
5655
|
-
#
|
|
5656
|
-
#
|
|
5657
|
-
#
|
|
5658
|
-
#
|
|
5659
|
-
#
|
|
5660
|
-
#
|
|
5661
|
-
#
|
|
5662
|
-
#
|
|
5663
|
-
#
|
|
5664
|
-
#
|
|
5665
|
-
#
|
|
5666
|
-
#
|
|
5667
|
-
#
|
|
5668
|
-
#
|
|
5669
|
-
#
|
|
5670
|
-
#
|
|
5671
|
-
#
|
|
5672
|
-
#
|
|
5673
|
-
#
|
|
5674
|
-
#
|
|
5675
|
-
#
|
|
5676
|
-
#
|
|
5677
|
-
#
|
|
5596
|
+
# The Amazon ECS account setting name to modify.
|
|
5597
|
+
#
|
|
5598
|
+
# The following are the valid values for the account setting name.
|
|
5599
|
+
#
|
|
5600
|
+
# * `serviceLongArnFormat` - When modified, the Amazon Resource Name
|
|
5601
|
+
# (ARN) and resource ID format of the resource type for a specified
|
|
5602
|
+
# user, role, or the root user for an account is affected. The opt-in
|
|
5603
|
+
# and opt-out account setting must be set for each Amazon ECS resource
|
|
5604
|
+
# separately. The ARN and resource ID format of a resource is defined
|
|
5605
|
+
# by the opt-in status of the user or role that created the resource.
|
|
5606
|
+
# You must turn on this setting to use Amazon ECS features such as
|
|
5607
|
+
# resource tagging.
|
|
5608
|
+
#
|
|
5609
|
+
# * `taskLongArnFormat` - When modified, the Amazon Resource Name (ARN)
|
|
5610
|
+
# and resource ID format of the resource type for a specified user,
|
|
5611
|
+
# role, or the root user for an account is affected. The opt-in and
|
|
5612
|
+
# opt-out account setting must be set for each Amazon ECS resource
|
|
5613
|
+
# separately. The ARN and resource ID format of a resource is defined
|
|
5614
|
+
# by the opt-in status of the user or role that created the resource.
|
|
5615
|
+
# You must turn on this setting to use Amazon ECS features such as
|
|
5616
|
+
# resource tagging.
|
|
5617
|
+
#
|
|
5618
|
+
# * `containerInstanceLongArnFormat` - When modified, the Amazon
|
|
5619
|
+
# Resource Name (ARN) and resource ID format of the resource type for
|
|
5620
|
+
# a specified user, role, or the root user for an account is affected.
|
|
5621
|
+
# The opt-in and opt-out account setting must be set for each Amazon
|
|
5622
|
+
# ECS resource separately. The ARN and resource ID format of a
|
|
5623
|
+
# resource is defined by the opt-in status of the user or role that
|
|
5624
|
+
# created the resource. You must turn on this setting to use Amazon
|
|
5625
|
+
# ECS features such as resource tagging.
|
|
5626
|
+
#
|
|
5627
|
+
# * `awsvpcTrunking` - When modified, the elastic network interface
|
|
5628
|
+
# (ENI) limit for any new container instances that support the feature
|
|
5629
|
+
# is changed. If `awsvpcTrunking` is turned on, any new container
|
|
5630
|
+
# instances that support the feature are launched have the increased
|
|
5631
|
+
# ENI limits available to them. For more information, see [Elastic
|
|
5632
|
+
# Network Interface Trunking][1] in the *Amazon Elastic Container
|
|
5633
|
+
# Service Developer Guide*.
|
|
5634
|
+
#
|
|
5635
|
+
# * `containerInsights` - When modified, the default setting indicating
|
|
5636
|
+
# whether Amazon Web Services CloudWatch Container Insights is turned
|
|
5637
|
+
# on for your clusters is changed. If `containerInsights` is turned
|
|
5638
|
+
# on, any new clusters that are created will have Container Insights
|
|
5639
|
+
# turned on unless you disable it during cluster creation. For more
|
|
5640
|
+
# information, see [CloudWatch Container Insights][2] in the *Amazon
|
|
5641
|
+
# Elastic Container Service Developer Guide*.
|
|
5642
|
+
#
|
|
5643
|
+
# * `dualStackIPv6` - When turned on, when using a VPC in dual stack
|
|
5644
|
+
# mode, your tasks using the `awsvpc` network mode can have an IPv6
|
|
5645
|
+
# address assigned. For more information on using IPv6 with tasks
|
|
5646
|
+
# launched on Amazon EC2 instances, see [Using a VPC in dual-stack
|
|
5647
|
+
# mode][3]. For more information on using IPv6 with tasks launched on
|
|
5648
|
+
# Fargate, see [Using a VPC in dual-stack mode][4].
|
|
5649
|
+
#
|
|
5650
|
+
# * `fargateFIPSMode` - If you specify `fargateFIPSMode`, Fargate FIPS
|
|
5651
|
+
# 140 compliance is affected.
|
|
5652
|
+
#
|
|
5653
|
+
# * `fargateTaskRetirementWaitPeriod` - When Amazon Web Services
|
|
5654
|
+
# determines that a security or infrastructure update is needed for an
|
|
5655
|
+
# Amazon ECS task hosted on Fargate, the tasks need to be stopped and
|
|
5656
|
+
# new tasks launched to replace them. Use
|
|
5657
|
+
# `fargateTaskRetirementWaitPeriod` to configure the wait time to
|
|
5658
|
+
# retire a Fargate task. For information about the Fargate tasks
|
|
5659
|
+
# maintenance, see [Amazon Web Services Fargate task maintenance][5]
|
|
5660
|
+
# in the *Amazon ECS Developer Guide*.
|
|
5661
|
+
#
|
|
5662
|
+
# * `tagResourceAuthorization` - Amazon ECS is introducing tagging
|
|
5663
|
+
# authorization for resource creation. Users must have permissions for
|
|
5664
|
+
# actions that create the resource, such as `ecsCreateCluster`. If
|
|
5665
|
+
# tags are specified when you create a resource, Amazon Web Services
|
|
5666
|
+
# performs additional authorization to verify if users or roles have
|
|
5667
|
+
# permissions to create tags. Therefore, you must grant explicit
|
|
5668
|
+
# permissions to use the `ecs:TagResource` action. For more
|
|
5669
|
+
# information, see [Grant permission to tag resources on creation][6]
|
|
5670
|
+
# in the *Amazon ECS Developer Guide*.
|
|
5671
|
+
#
|
|
5672
|
+
# * `guardDutyActivate` - The `guardDutyActivate` parameter is read-only
|
|
5673
|
+
# in Amazon ECS and indicates whether Amazon ECS Runtime Monitoring is
|
|
5674
|
+
# enabled or disabled by your security administrator in your Amazon
|
|
5675
|
+
# ECS account. Amazon GuardDuty controls this account setting on your
|
|
5676
|
+
# behalf. For more information, see [Protecting Amazon ECS workloads
|
|
5677
|
+
# with Amazon ECS Runtime Monitoring][7].
|
|
5678
|
+
#
|
|
5679
|
+
#
|
|
5680
|
+
#
|
|
5681
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-eni.html
|
|
5682
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
|
|
5683
|
+
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking-awsvpc.html#task-networking-vpc-dual-stack
|
|
5684
|
+
# [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-networking.html#fargate-task-networking-vpc-dual-stack
|
|
5685
|
+
# [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-maintenance.html
|
|
5686
|
+
# [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/supported-iam-actions-tagging.html
|
|
5687
|
+
# [7]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-guard-duty-integration.html
|
|
5678
5688
|
#
|
|
5679
5689
|
# @option params [required, String] :value
|
|
5680
5690
|
# The account setting value for the specified principal ARN. Accepted
|
|
@@ -5782,50 +5792,98 @@ module Aws::ECS
|
|
|
5782
5792
|
# set on a per-Region basis.
|
|
5783
5793
|
#
|
|
5784
5794
|
# @option params [required, String] :name
|
|
5785
|
-
# The resource name for which to modify the account setting.
|
|
5786
|
-
#
|
|
5787
|
-
#
|
|
5788
|
-
#
|
|
5789
|
-
# `
|
|
5790
|
-
#
|
|
5791
|
-
#
|
|
5792
|
-
#
|
|
5793
|
-
#
|
|
5794
|
-
#
|
|
5795
|
-
#
|
|
5796
|
-
#
|
|
5797
|
-
#
|
|
5798
|
-
# `
|
|
5799
|
-
#
|
|
5800
|
-
#
|
|
5801
|
-
#
|
|
5802
|
-
#
|
|
5803
|
-
#
|
|
5804
|
-
#
|
|
5805
|
-
#
|
|
5806
|
-
#
|
|
5807
|
-
#
|
|
5808
|
-
#
|
|
5809
|
-
#
|
|
5810
|
-
#
|
|
5811
|
-
#
|
|
5812
|
-
#
|
|
5813
|
-
#
|
|
5814
|
-
#
|
|
5815
|
-
#
|
|
5816
|
-
#
|
|
5817
|
-
#
|
|
5818
|
-
#
|
|
5819
|
-
#
|
|
5820
|
-
#
|
|
5821
|
-
#
|
|
5822
|
-
#
|
|
5823
|
-
#
|
|
5824
|
-
#
|
|
5825
|
-
#
|
|
5826
|
-
#
|
|
5827
|
-
#
|
|
5828
|
-
#
|
|
5795
|
+
# The resource name for which to modify the account setting.
|
|
5796
|
+
#
|
|
5797
|
+
# The following are the valid values for the account setting name.
|
|
5798
|
+
#
|
|
5799
|
+
# * `serviceLongArnFormat` - When modified, the Amazon Resource Name
|
|
5800
|
+
# (ARN) and resource ID format of the resource type for a specified
|
|
5801
|
+
# user, role, or the root user for an account is affected. The opt-in
|
|
5802
|
+
# and opt-out account setting must be set for each Amazon ECS resource
|
|
5803
|
+
# separately. The ARN and resource ID format of a resource is defined
|
|
5804
|
+
# by the opt-in status of the user or role that created the resource.
|
|
5805
|
+
# You must turn on this setting to use Amazon ECS features such as
|
|
5806
|
+
# resource tagging.
|
|
5807
|
+
#
|
|
5808
|
+
# * `taskLongArnFormat` - When modified, the Amazon Resource Name (ARN)
|
|
5809
|
+
# and resource ID format of the resource type for a specified user,
|
|
5810
|
+
# role, or the root user for an account is affected. The opt-in and
|
|
5811
|
+
# opt-out account setting must be set for each Amazon ECS resource
|
|
5812
|
+
# separately. The ARN and resource ID format of a resource is defined
|
|
5813
|
+
# by the opt-in status of the user or role that created the resource.
|
|
5814
|
+
# You must turn on this setting to use Amazon ECS features such as
|
|
5815
|
+
# resource tagging.
|
|
5816
|
+
#
|
|
5817
|
+
# * `containerInstanceLongArnFormat` - When modified, the Amazon
|
|
5818
|
+
# Resource Name (ARN) and resource ID format of the resource type for
|
|
5819
|
+
# a specified user, role, or the root user for an account is affected.
|
|
5820
|
+
# The opt-in and opt-out account setting must be set for each Amazon
|
|
5821
|
+
# ECS resource separately. The ARN and resource ID format of a
|
|
5822
|
+
# resource is defined by the opt-in status of the user or role that
|
|
5823
|
+
# created the resource. You must turn on this setting to use Amazon
|
|
5824
|
+
# ECS features such as resource tagging.
|
|
5825
|
+
#
|
|
5826
|
+
# * `awsvpcTrunking` - When modified, the elastic network interface
|
|
5827
|
+
# (ENI) limit for any new container instances that support the feature
|
|
5828
|
+
# is changed. If `awsvpcTrunking` is turned on, any new container
|
|
5829
|
+
# instances that support the feature are launched have the increased
|
|
5830
|
+
# ENI limits available to them. For more information, see [Elastic
|
|
5831
|
+
# Network Interface Trunking][1] in the *Amazon Elastic Container
|
|
5832
|
+
# Service Developer Guide*.
|
|
5833
|
+
#
|
|
5834
|
+
# * `containerInsights` - When modified, the default setting indicating
|
|
5835
|
+
# whether Amazon Web Services CloudWatch Container Insights is turned
|
|
5836
|
+
# on for your clusters is changed. If `containerInsights` is turned
|
|
5837
|
+
# on, any new clusters that are created will have Container Insights
|
|
5838
|
+
# turned on unless you disable it during cluster creation. For more
|
|
5839
|
+
# information, see [CloudWatch Container Insights][2] in the *Amazon
|
|
5840
|
+
# Elastic Container Service Developer Guide*.
|
|
5841
|
+
#
|
|
5842
|
+
# * `dualStackIPv6` - When turned on, when using a VPC in dual stack
|
|
5843
|
+
# mode, your tasks using the `awsvpc` network mode can have an IPv6
|
|
5844
|
+
# address assigned. For more information on using IPv6 with tasks
|
|
5845
|
+
# launched on Amazon EC2 instances, see [Using a VPC in dual-stack
|
|
5846
|
+
# mode][3]. For more information on using IPv6 with tasks launched on
|
|
5847
|
+
# Fargate, see [Using a VPC in dual-stack mode][4].
|
|
5848
|
+
#
|
|
5849
|
+
# * `fargateFIPSMode` - If you specify `fargateFIPSMode`, Fargate FIPS
|
|
5850
|
+
# 140 compliance is affected.
|
|
5851
|
+
#
|
|
5852
|
+
# * `fargateTaskRetirementWaitPeriod` - When Amazon Web Services
|
|
5853
|
+
# determines that a security or infrastructure update is needed for an
|
|
5854
|
+
# Amazon ECS task hosted on Fargate, the tasks need to be stopped and
|
|
5855
|
+
# new tasks launched to replace them. Use
|
|
5856
|
+
# `fargateTaskRetirementWaitPeriod` to configure the wait time to
|
|
5857
|
+
# retire a Fargate task. For information about the Fargate tasks
|
|
5858
|
+
# maintenance, see [Amazon Web Services Fargate task maintenance][5]
|
|
5859
|
+
# in the *Amazon ECS Developer Guide*.
|
|
5860
|
+
#
|
|
5861
|
+
# * `tagResourceAuthorization` - Amazon ECS is introducing tagging
|
|
5862
|
+
# authorization for resource creation. Users must have permissions for
|
|
5863
|
+
# actions that create the resource, such as `ecsCreateCluster`. If
|
|
5864
|
+
# tags are specified when you create a resource, Amazon Web Services
|
|
5865
|
+
# performs additional authorization to verify if users or roles have
|
|
5866
|
+
# permissions to create tags. Therefore, you must grant explicit
|
|
5867
|
+
# permissions to use the `ecs:TagResource` action. For more
|
|
5868
|
+
# information, see [Grant permission to tag resources on creation][6]
|
|
5869
|
+
# in the *Amazon ECS Developer Guide*.
|
|
5870
|
+
#
|
|
5871
|
+
# * `guardDutyActivate` - The `guardDutyActivate` parameter is read-only
|
|
5872
|
+
# in Amazon ECS and indicates whether Amazon ECS Runtime Monitoring is
|
|
5873
|
+
# enabled or disabled by your security administrator in your Amazon
|
|
5874
|
+
# ECS account. Amazon GuardDuty controls this account setting on your
|
|
5875
|
+
# behalf. For more information, see [Protecting Amazon ECS workloads
|
|
5876
|
+
# with Amazon ECS Runtime Monitoring][7].
|
|
5877
|
+
#
|
|
5878
|
+
#
|
|
5879
|
+
#
|
|
5880
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-eni.html
|
|
5881
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
|
|
5882
|
+
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking-awsvpc.html#task-networking-vpc-dual-stack
|
|
5883
|
+
# [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-networking.html#fargate-task-networking-vpc-dual-stack
|
|
5884
|
+
# [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-maintenance.html
|
|
5885
|
+
# [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/supported-iam-actions-tagging.html
|
|
5886
|
+
# [7]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-guard-duty-integration.html
|
|
5829
5887
|
#
|
|
5830
5888
|
# @option params [required, String] :value
|
|
5831
5889
|
# The account setting value for the specified principal ARN. Accepted
|
|
@@ -10167,7 +10225,7 @@ module Aws::ECS
|
|
|
10167
10225
|
params: params,
|
|
10168
10226
|
config: config)
|
|
10169
10227
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
10170
|
-
context[:gem_version] = '1.
|
|
10228
|
+
context[:gem_version] = '1.142.0'
|
|
10171
10229
|
Seahorse::Client::Request.new(handlers, context)
|
|
10172
10230
|
end
|
|
10173
10231
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
|
@@ -7377,51 +7377,99 @@ module Aws::ECS
|
|
|
7377
7377
|
end
|
|
7378
7378
|
|
|
7379
7379
|
# @!attribute [rw] name
|
|
7380
|
-
# The resource name for which to modify the account setting.
|
|
7381
|
-
#
|
|
7382
|
-
#
|
|
7383
|
-
#
|
|
7384
|
-
# `
|
|
7385
|
-
#
|
|
7386
|
-
#
|
|
7387
|
-
#
|
|
7388
|
-
#
|
|
7389
|
-
#
|
|
7390
|
-
#
|
|
7391
|
-
#
|
|
7392
|
-
#
|
|
7393
|
-
#
|
|
7394
|
-
#
|
|
7395
|
-
#
|
|
7396
|
-
#
|
|
7397
|
-
#
|
|
7398
|
-
#
|
|
7399
|
-
#
|
|
7400
|
-
#
|
|
7401
|
-
#
|
|
7402
|
-
# *
|
|
7403
|
-
#
|
|
7404
|
-
#
|
|
7405
|
-
#
|
|
7406
|
-
#
|
|
7407
|
-
#
|
|
7408
|
-
#
|
|
7409
|
-
#
|
|
7410
|
-
#
|
|
7411
|
-
#
|
|
7412
|
-
#
|
|
7413
|
-
#
|
|
7414
|
-
#
|
|
7415
|
-
#
|
|
7416
|
-
#
|
|
7417
|
-
#
|
|
7418
|
-
#
|
|
7419
|
-
#
|
|
7380
|
+
# The resource name for which to modify the account setting.
|
|
7381
|
+
#
|
|
7382
|
+
# The following are the valid values for the account setting name.
|
|
7383
|
+
#
|
|
7384
|
+
# * `serviceLongArnFormat` - When modified, the Amazon Resource Name
|
|
7385
|
+
# (ARN) and resource ID format of the resource type for a specified
|
|
7386
|
+
# user, role, or the root user for an account is affected. The
|
|
7387
|
+
# opt-in and opt-out account setting must be set for each Amazon ECS
|
|
7388
|
+
# resource separately. The ARN and resource ID format of a resource
|
|
7389
|
+
# is defined by the opt-in status of the user or role that created
|
|
7390
|
+
# the resource. You must turn on this setting to use Amazon ECS
|
|
7391
|
+
# features such as resource tagging.
|
|
7392
|
+
#
|
|
7393
|
+
# * `taskLongArnFormat` - When modified, the Amazon Resource Name
|
|
7394
|
+
# (ARN) and resource ID format of the resource type for a specified
|
|
7395
|
+
# user, role, or the root user for an account is affected. The
|
|
7396
|
+
# opt-in and opt-out account setting must be set for each Amazon ECS
|
|
7397
|
+
# resource separately. The ARN and resource ID format of a resource
|
|
7398
|
+
# is defined by the opt-in status of the user or role that created
|
|
7399
|
+
# the resource. You must turn on this setting to use Amazon ECS
|
|
7400
|
+
# features such as resource tagging.
|
|
7401
|
+
#
|
|
7402
|
+
# * `containerInstanceLongArnFormat` - When modified, the Amazon
|
|
7403
|
+
# Resource Name (ARN) and resource ID format of the resource type
|
|
7404
|
+
# for a specified user, role, or the root user for an account is
|
|
7405
|
+
# affected. The opt-in and opt-out account setting must be set for
|
|
7406
|
+
# each Amazon ECS resource separately. The ARN and resource ID
|
|
7407
|
+
# format of a resource is defined by the opt-in status of the user
|
|
7408
|
+
# or role that created the resource. You must turn on this setting
|
|
7409
|
+
# to use Amazon ECS features such as resource tagging.
|
|
7410
|
+
#
|
|
7411
|
+
# * `awsvpcTrunking` - When modified, the elastic network interface
|
|
7412
|
+
# (ENI) limit for any new container instances that support the
|
|
7413
|
+
# feature is changed. If `awsvpcTrunking` is turned on, any new
|
|
7414
|
+
# container instances that support the feature are launched have the
|
|
7415
|
+
# increased ENI limits available to them. For more information, see
|
|
7416
|
+
# [Elastic Network Interface Trunking][1] in the *Amazon Elastic
|
|
7417
|
+
# Container Service Developer Guide*.
|
|
7418
|
+
#
|
|
7419
|
+
# * `containerInsights` - When modified, the default setting
|
|
7420
|
+
# indicating whether Amazon Web Services CloudWatch Container
|
|
7421
|
+
# Insights is turned on for your clusters is changed. If
|
|
7422
|
+
# `containerInsights` is turned on, any new clusters that are
|
|
7423
|
+
# created will have Container Insights turned on unless you disable
|
|
7424
|
+
# it during cluster creation. For more information, see [CloudWatch
|
|
7425
|
+
# Container Insights][2] in the *Amazon Elastic Container Service
|
|
7426
|
+
# Developer Guide*.
|
|
7420
7427
|
#
|
|
7421
|
-
#
|
|
7422
|
-
#
|
|
7423
|
-
#
|
|
7424
|
-
#
|
|
7428
|
+
# * `dualStackIPv6` - When turned on, when using a VPC in dual stack
|
|
7429
|
+
# mode, your tasks using the `awsvpc` network mode can have an IPv6
|
|
7430
|
+
# address assigned. For more information on using IPv6 with tasks
|
|
7431
|
+
# launched on Amazon EC2 instances, see [Using a VPC in dual-stack
|
|
7432
|
+
# mode][3]. For more information on using IPv6 with tasks launched
|
|
7433
|
+
# on Fargate, see [Using a VPC in dual-stack mode][4].
|
|
7434
|
+
#
|
|
7435
|
+
# * `fargateFIPSMode` - If you specify `fargateFIPSMode`, Fargate FIPS
|
|
7436
|
+
# 140 compliance is affected.
|
|
7437
|
+
#
|
|
7438
|
+
# * `fargateTaskRetirementWaitPeriod` - When Amazon Web Services
|
|
7439
|
+
# determines that a security or infrastructure update is needed for
|
|
7440
|
+
# an Amazon ECS task hosted on Fargate, the tasks need to be stopped
|
|
7441
|
+
# and new tasks launched to replace them. Use
|
|
7442
|
+
# `fargateTaskRetirementWaitPeriod` to configure the wait time to
|
|
7443
|
+
# retire a Fargate task. For information about the Fargate tasks
|
|
7444
|
+
# maintenance, see [Amazon Web Services Fargate task maintenance][5]
|
|
7445
|
+
# in the *Amazon ECS Developer Guide*.
|
|
7446
|
+
#
|
|
7447
|
+
# * `tagResourceAuthorization` - Amazon ECS is introducing tagging
|
|
7448
|
+
# authorization for resource creation. Users must have permissions
|
|
7449
|
+
# for actions that create the resource, such as `ecsCreateCluster`.
|
|
7450
|
+
# If tags are specified when you create a resource, Amazon Web
|
|
7451
|
+
# Services performs additional authorization to verify if users or
|
|
7452
|
+
# roles have permissions to create tags. Therefore, you must grant
|
|
7453
|
+
# explicit permissions to use the `ecs:TagResource` action. For more
|
|
7454
|
+
# information, see [Grant permission to tag resources on
|
|
7455
|
+
# creation][6] in the *Amazon ECS Developer Guide*.
|
|
7456
|
+
#
|
|
7457
|
+
# * `guardDutyActivate` - The `guardDutyActivate` parameter is
|
|
7458
|
+
# read-only in Amazon ECS and indicates whether Amazon ECS Runtime
|
|
7459
|
+
# Monitoring is enabled or disabled by your security administrator
|
|
7460
|
+
# in your Amazon ECS account. Amazon GuardDuty controls this account
|
|
7461
|
+
# setting on your behalf. For more information, see [Protecting
|
|
7462
|
+
# Amazon ECS workloads with Amazon ECS Runtime Monitoring][7].
|
|
7463
|
+
#
|
|
7464
|
+
#
|
|
7465
|
+
#
|
|
7466
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-eni.html
|
|
7467
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
|
|
7468
|
+
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking-awsvpc.html#task-networking-vpc-dual-stack
|
|
7469
|
+
# [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-networking.html#fargate-task-networking-vpc-dual-stack
|
|
7470
|
+
# [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-maintenance.html
|
|
7471
|
+
# [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/supported-iam-actions-tagging.html
|
|
7472
|
+
# [7]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-guard-duty-integration.html
|
|
7425
7473
|
# @return [String]
|
|
7426
7474
|
#
|
|
7427
7475
|
# @!attribute [rw] value
|
|
@@ -7463,35 +7511,99 @@ module Aws::ECS
|
|
|
7463
7511
|
end
|
|
7464
7512
|
|
|
7465
7513
|
# @!attribute [rw] name
|
|
7466
|
-
# The Amazon ECS
|
|
7467
|
-
#
|
|
7468
|
-
#
|
|
7469
|
-
#
|
|
7470
|
-
#
|
|
7471
|
-
#
|
|
7472
|
-
#
|
|
7473
|
-
#
|
|
7474
|
-
#
|
|
7475
|
-
#
|
|
7476
|
-
#
|
|
7477
|
-
#
|
|
7478
|
-
#
|
|
7479
|
-
#
|
|
7480
|
-
#
|
|
7481
|
-
#
|
|
7482
|
-
#
|
|
7483
|
-
#
|
|
7484
|
-
#
|
|
7485
|
-
#
|
|
7486
|
-
#
|
|
7487
|
-
#
|
|
7488
|
-
#
|
|
7489
|
-
#
|
|
7490
|
-
#
|
|
7491
|
-
#
|
|
7492
|
-
#
|
|
7493
|
-
#
|
|
7494
|
-
#
|
|
7514
|
+
# The Amazon ECS account setting name to modify.
|
|
7515
|
+
#
|
|
7516
|
+
# The following are the valid values for the account setting name.
|
|
7517
|
+
#
|
|
7518
|
+
# * `serviceLongArnFormat` - When modified, the Amazon Resource Name
|
|
7519
|
+
# (ARN) and resource ID format of the resource type for a specified
|
|
7520
|
+
# user, role, or the root user for an account is affected. The
|
|
7521
|
+
# opt-in and opt-out account setting must be set for each Amazon ECS
|
|
7522
|
+
# resource separately. The ARN and resource ID format of a resource
|
|
7523
|
+
# is defined by the opt-in status of the user or role that created
|
|
7524
|
+
# the resource. You must turn on this setting to use Amazon ECS
|
|
7525
|
+
# features such as resource tagging.
|
|
7526
|
+
#
|
|
7527
|
+
# * `taskLongArnFormat` - When modified, the Amazon Resource Name
|
|
7528
|
+
# (ARN) and resource ID format of the resource type for a specified
|
|
7529
|
+
# user, role, or the root user for an account is affected. The
|
|
7530
|
+
# opt-in and opt-out account setting must be set for each Amazon ECS
|
|
7531
|
+
# resource separately. The ARN and resource ID format of a resource
|
|
7532
|
+
# is defined by the opt-in status of the user or role that created
|
|
7533
|
+
# the resource. You must turn on this setting to use Amazon ECS
|
|
7534
|
+
# features such as resource tagging.
|
|
7535
|
+
#
|
|
7536
|
+
# * `containerInstanceLongArnFormat` - When modified, the Amazon
|
|
7537
|
+
# Resource Name (ARN) and resource ID format of the resource type
|
|
7538
|
+
# for a specified user, role, or the root user for an account is
|
|
7539
|
+
# affected. The opt-in and opt-out account setting must be set for
|
|
7540
|
+
# each Amazon ECS resource separately. The ARN and resource ID
|
|
7541
|
+
# format of a resource is defined by the opt-in status of the user
|
|
7542
|
+
# or role that created the resource. You must turn on this setting
|
|
7543
|
+
# to use Amazon ECS features such as resource tagging.
|
|
7544
|
+
#
|
|
7545
|
+
# * `awsvpcTrunking` - When modified, the elastic network interface
|
|
7546
|
+
# (ENI) limit for any new container instances that support the
|
|
7547
|
+
# feature is changed. If `awsvpcTrunking` is turned on, any new
|
|
7548
|
+
# container instances that support the feature are launched have the
|
|
7549
|
+
# increased ENI limits available to them. For more information, see
|
|
7550
|
+
# [Elastic Network Interface Trunking][1] in the *Amazon Elastic
|
|
7551
|
+
# Container Service Developer Guide*.
|
|
7552
|
+
#
|
|
7553
|
+
# * `containerInsights` - When modified, the default setting
|
|
7554
|
+
# indicating whether Amazon Web Services CloudWatch Container
|
|
7555
|
+
# Insights is turned on for your clusters is changed. If
|
|
7556
|
+
# `containerInsights` is turned on, any new clusters that are
|
|
7557
|
+
# created will have Container Insights turned on unless you disable
|
|
7558
|
+
# it during cluster creation. For more information, see [CloudWatch
|
|
7559
|
+
# Container Insights][2] in the *Amazon Elastic Container Service
|
|
7560
|
+
# Developer Guide*.
|
|
7561
|
+
#
|
|
7562
|
+
# * `dualStackIPv6` - When turned on, when using a VPC in dual stack
|
|
7563
|
+
# mode, your tasks using the `awsvpc` network mode can have an IPv6
|
|
7564
|
+
# address assigned. For more information on using IPv6 with tasks
|
|
7565
|
+
# launched on Amazon EC2 instances, see [Using a VPC in dual-stack
|
|
7566
|
+
# mode][3]. For more information on using IPv6 with tasks launched
|
|
7567
|
+
# on Fargate, see [Using a VPC in dual-stack mode][4].
|
|
7568
|
+
#
|
|
7569
|
+
# * `fargateFIPSMode` - If you specify `fargateFIPSMode`, Fargate FIPS
|
|
7570
|
+
# 140 compliance is affected.
|
|
7571
|
+
#
|
|
7572
|
+
# * `fargateTaskRetirementWaitPeriod` - When Amazon Web Services
|
|
7573
|
+
# determines that a security or infrastructure update is needed for
|
|
7574
|
+
# an Amazon ECS task hosted on Fargate, the tasks need to be stopped
|
|
7575
|
+
# and new tasks launched to replace them. Use
|
|
7576
|
+
# `fargateTaskRetirementWaitPeriod` to configure the wait time to
|
|
7577
|
+
# retire a Fargate task. For information about the Fargate tasks
|
|
7578
|
+
# maintenance, see [Amazon Web Services Fargate task maintenance][5]
|
|
7579
|
+
# in the *Amazon ECS Developer Guide*.
|
|
7580
|
+
#
|
|
7581
|
+
# * `tagResourceAuthorization` - Amazon ECS is introducing tagging
|
|
7582
|
+
# authorization for resource creation. Users must have permissions
|
|
7583
|
+
# for actions that create the resource, such as `ecsCreateCluster`.
|
|
7584
|
+
# If tags are specified when you create a resource, Amazon Web
|
|
7585
|
+
# Services performs additional authorization to verify if users or
|
|
7586
|
+
# roles have permissions to create tags. Therefore, you must grant
|
|
7587
|
+
# explicit permissions to use the `ecs:TagResource` action. For more
|
|
7588
|
+
# information, see [Grant permission to tag resources on
|
|
7589
|
+
# creation][6] in the *Amazon ECS Developer Guide*.
|
|
7590
|
+
#
|
|
7591
|
+
# * `guardDutyActivate` - The `guardDutyActivate` parameter is
|
|
7592
|
+
# read-only in Amazon ECS and indicates whether Amazon ECS Runtime
|
|
7593
|
+
# Monitoring is enabled or disabled by your security administrator
|
|
7594
|
+
# in your Amazon ECS account. Amazon GuardDuty controls this account
|
|
7595
|
+
# setting on your behalf. For more information, see [Protecting
|
|
7596
|
+
# Amazon ECS workloads with Amazon ECS Runtime Monitoring][7].
|
|
7597
|
+
#
|
|
7598
|
+
#
|
|
7599
|
+
#
|
|
7600
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-eni.html
|
|
7601
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
|
|
7602
|
+
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking-awsvpc.html#task-networking-vpc-dual-stack
|
|
7603
|
+
# [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-networking.html#fargate-task-networking-vpc-dual-stack
|
|
7604
|
+
# [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-maintenance.html
|
|
7605
|
+
# [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/supported-iam-actions-tagging.html
|
|
7606
|
+
# [7]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-guard-duty-integration.html
|
|
7495
7607
|
# @return [String]
|
|
7496
7608
|
#
|
|
7497
7609
|
# @!attribute [rw] value
|
|
@@ -8566,6 +8678,15 @@ module Aws::ECS
|
|
|
8566
8678
|
#
|
|
8567
8679
|
# @!attribute [rw] failures
|
|
8568
8680
|
# Any failures associated with the call.
|
|
8681
|
+
#
|
|
8682
|
+
# For information about how to address failures, see [Service event
|
|
8683
|
+
# messages][1] and [API failure reasons][2] in the *Amazon Elastic
|
|
8684
|
+
# Container Service Developer Guide*.
|
|
8685
|
+
#
|
|
8686
|
+
#
|
|
8687
|
+
#
|
|
8688
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-event-messages.html#service-event-messages-list
|
|
8689
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/api_failures_messages.html
|
|
8569
8690
|
# @return [Array<Types::Failure>]
|
|
8570
8691
|
#
|
|
8571
8692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RunTaskResponse AWS API Documentation
|
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.142.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-02-
|
|
11
|
+
date: 2024-02-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|