aws-sdk-ecs 1.111.0 → 1.112.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 +39 -2
- data/lib/aws-sdk-ecs/types.rb +77 -62
- 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: 4c90a46a4baacf0c614cb6ddbe7370359a73afecb74f94e919a811bbdc7203f8
|
4
|
+
data.tar.gz: ba17e93cfe6d99ea96eac67e0cf39b1632c912b4f36a6cb92001154c37b56853
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 423438e98765b7af6b1427a4199dcf98eb0e47c08a3bc57fb930482e620e3b24b50e36242cf7d62c1de3c751e7da03adf563df77df2cfcc5a797b84d4fcb30e4
|
7
|
+
data.tar.gz: daffa348af405620d718fabb3027a89e241ed61ddeb687cccc81370fc14d7cc6504827c55bf956a186f414a5e272233cd2c6c5009af092de6c851cedd21beab6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.112.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -735,6 +735,17 @@ module Aws::ECS
|
|
735
735
|
# specified cluster. To update an existing service, see the
|
736
736
|
# UpdateService action.
|
737
737
|
#
|
738
|
+
# <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
|
739
|
+
# customers to Amazon Elastic Inference (EI), and will help current
|
740
|
+
# customers migrate their workloads to options that offer better price
|
741
|
+
# and performance. After April 15, 2023, new customers will not be able
|
742
|
+
# to launch instances with Amazon EI accelerators in Amazon SageMaker,
|
743
|
+
# Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
|
744
|
+
# at least once during the past 30-day period are considered current
|
745
|
+
# customers and will be able to continue using the service.
|
746
|
+
#
|
747
|
+
# </note>
|
748
|
+
#
|
738
749
|
# In addition to maintaining the desired count of tasks in your service,
|
739
750
|
# you can optionally run your service behind one or more load balancers.
|
740
751
|
# The load balancers distribute traffic across the tasks that are
|
@@ -1149,7 +1160,11 @@ module Aws::ECS
|
|
1149
1160
|
# Specifies whether to propagate the tags from the task definition to
|
1150
1161
|
# the task. If no value is specified, the tags aren't propagated. Tags
|
1151
1162
|
# can only be propagated to the task during task creation. To add tags
|
1152
|
-
# to a task after task creation, use the TagResource API action.
|
1163
|
+
# to a task after task creation, use the [TagResource][1] API action.
|
1164
|
+
#
|
1165
|
+
#
|
1166
|
+
#
|
1167
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TagResource.html
|
1153
1168
|
#
|
1154
1169
|
# @option params [Boolean] :enable_execute_command
|
1155
1170
|
# Determines whether the execute command functionality is enabled for
|
@@ -6814,6 +6829,17 @@ module Aws::ECS
|
|
6814
6829
|
# Alternatively, you can use StartTask to use your own scheduler or
|
6815
6830
|
# place tasks manually on specific container instances.
|
6816
6831
|
#
|
6832
|
+
# <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
|
6833
|
+
# customers to Amazon Elastic Inference (EI), and will help current
|
6834
|
+
# customers migrate their workloads to options that offer better price
|
6835
|
+
# and performance. After April 15, 2023, new customers will not be able
|
6836
|
+
# to launch instances with Amazon EI accelerators in Amazon SageMaker,
|
6837
|
+
# Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
|
6838
|
+
# at least once during the past 30-day period are considered current
|
6839
|
+
# customers and will be able to continue using the service.
|
6840
|
+
#
|
6841
|
+
# </note>
|
6842
|
+
#
|
6817
6843
|
# The Amazon ECS API follows an eventual consistency model. This is
|
6818
6844
|
# because of the distributed nature of the system supporting the API.
|
6819
6845
|
# This means that the result of an API command you run that affects your
|
@@ -7307,6 +7333,17 @@ module Aws::ECS
|
|
7307
7333
|
# Starts a new task from the specified task definition on the specified
|
7308
7334
|
# container instance or instances.
|
7309
7335
|
#
|
7336
|
+
# <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
|
7337
|
+
# customers to Amazon Elastic Inference (EI), and will help current
|
7338
|
+
# customers migrate their workloads to options that offer better price
|
7339
|
+
# and performance. After April 15, 2023, new customers will not be able
|
7340
|
+
# to launch instances with Amazon EI accelerators in Amazon SageMaker,
|
7341
|
+
# Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
|
7342
|
+
# at least once during the past 30-day period are considered current
|
7343
|
+
# customers and will be able to continue using the service.
|
7344
|
+
#
|
7345
|
+
# </note>
|
7346
|
+
#
|
7310
7347
|
# Alternatively, you can use RunTask to place tasks for you. For more
|
7311
7348
|
# information, see [Scheduling Tasks][1] in the *Amazon Elastic
|
7312
7349
|
# Container Service Developer Guide*.
|
@@ -9637,7 +9674,7 @@ module Aws::ECS
|
|
9637
9674
|
params: params,
|
9638
9675
|
config: config)
|
9639
9676
|
context[:gem_name] = 'aws-sdk-ecs'
|
9640
|
-
context[:gem_version] = '1.
|
9677
|
+
context[:gem_version] = '1.112.0'
|
9641
9678
|
Seahorse::Client::Request.new(handlers, context)
|
9642
9679
|
end
|
9643
9680
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -2830,7 +2830,12 @@ module Aws::ECS
|
|
2830
2830
|
# Specifies whether to propagate the tags from the task definition to
|
2831
2831
|
# the task. If no value is specified, the tags aren't propagated.
|
2832
2832
|
# Tags can only be propagated to the task during task creation. To add
|
2833
|
-
# tags to a task after task creation, use the TagResource API
|
2833
|
+
# tags to a task after task creation, use the [TagResource][1] API
|
2834
|
+
# action.
|
2835
|
+
#
|
2836
|
+
#
|
2837
|
+
#
|
2838
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TagResource.html
|
2834
2839
|
# @return [String]
|
2835
2840
|
#
|
2836
2841
|
# @!attribute [rw] enable_execute_command
|
@@ -4566,14 +4571,14 @@ module Aws::ECS
|
|
4566
4571
|
# The log setting to use for redirecting logs for your execute command
|
4567
4572
|
# results. The following log settings are available.
|
4568
4573
|
#
|
4569
|
-
# * `NONE
|
4574
|
+
# * `NONE`: The execute command session is not logged.
|
4570
4575
|
#
|
4571
|
-
# * `DEFAULT
|
4576
|
+
# * `DEFAULT`: The `awslogs` configuration in the task definition is
|
4572
4577
|
# used. If no logging parameter is specified, it defaults to this
|
4573
4578
|
# value. If no `awslogs` log driver is configured in the task
|
4574
4579
|
# definition, the output won't be logged.
|
4575
4580
|
#
|
4576
|
-
# * `OVERRIDE
|
4581
|
+
# * `OVERRIDE`: Specify the logging details as a part of
|
4577
4582
|
# `logConfiguration`. If the `OVERRIDE` logging option is specified,
|
4578
4583
|
# the `logConfiguration` is required.
|
4579
4584
|
# @return [String]
|
@@ -4887,14 +4892,14 @@ module Aws::ECS
|
|
4887
4892
|
# @!attribute [rw] protected_tasks
|
4888
4893
|
# A list of tasks with the following information.
|
4889
4894
|
#
|
4890
|
-
# * `taskArn
|
4895
|
+
# * `taskArn`: The task ARN.
|
4891
4896
|
#
|
4892
|
-
# * `protectionEnabled
|
4897
|
+
# * `protectionEnabled`: The protection status of the task. If
|
4893
4898
|
# scale-in protection is enabled for a task, the value is `true`.
|
4894
4899
|
# Otherwise, it is `false`.
|
4895
4900
|
#
|
4896
|
-
# * `expirationDate
|
4897
|
-
#
|
4901
|
+
# * `expirationDate`: The epoch time when protection for the task will
|
4902
|
+
# expire.
|
4898
4903
|
# @return [Array<Types::ProtectedTask>]
|
4899
4904
|
#
|
4900
4905
|
# @!attribute [rw] failures
|
@@ -4913,7 +4918,8 @@ module Aws::ECS
|
|
4913
4918
|
# An object representing a container health check. Health check
|
4914
4919
|
# parameters that are specified in a container definition override any
|
4915
4920
|
# Docker health checks that exist in the container image (such as those
|
4916
|
-
# specified in a parent image or from the image's Dockerfile).
|
4921
|
+
# specified in a parent image or from the image's Dockerfile). This
|
4922
|
+
# configuration maps to the `HEALTHCHECK` parameter of [docker run][1].
|
4917
4923
|
#
|
4918
4924
|
# <note markdown="1"> The Amazon ECS container agent only monitors and reports on the health
|
4919
4925
|
# checks specified in the task definition. Amazon ECS does not monitor
|
@@ -4939,9 +4945,8 @@ module Aws::ECS
|
|
4939
4945
|
# no container health check defined.
|
4940
4946
|
#
|
4941
4947
|
# The following describes the possible `healthStatus` values for a task.
|
4942
|
-
# The container health check status of
|
4943
|
-
#
|
4944
|
-
# health checks defined.
|
4948
|
+
# The container health check status of non-essential containers don't
|
4949
|
+
# have an effect on the health status of a task.
|
4945
4950
|
#
|
4946
4951
|
# * `HEALTHY`-All essential containers within the task have passed their
|
4947
4952
|
# health checks.
|
@@ -4950,38 +4955,33 @@ module Aws::ECS
|
|
4950
4955
|
# health check.
|
4951
4956
|
#
|
4952
4957
|
# * `UNKNOWN`-The essential containers within the task are still having
|
4953
|
-
# their health checks evaluated
|
4954
|
-
# containers with health checks defined
|
4958
|
+
# their health checks evaluated, there are only nonessential
|
4959
|
+
# containers with health checks defined, or there are no container
|
4960
|
+
# health checks defined.
|
4955
4961
|
#
|
4956
4962
|
# If a task is run manually, and not as part of a service, the task will
|
4957
4963
|
# continue its lifecycle regardless of its health status. For tasks that
|
4958
4964
|
# are part of a service, if the task reports as unhealthy then the task
|
4959
4965
|
# will be stopped and the service scheduler will replace it.
|
4960
4966
|
#
|
4961
|
-
# For tasks that are a part of a service and the service uses the `ECS`
|
4962
|
-
# rolling deployment type, the deployment is paused while the new tasks
|
4963
|
-
# have the `UNKNOWN` task health check status. For example, tasks that
|
4964
|
-
# define health checks for nonessential containers when no essential
|
4965
|
-
# containers have health checks will have the `UNKNOWN` health check
|
4966
|
-
# status indefinitely which prevents the deployment from completing.
|
4967
|
-
#
|
4968
4967
|
# The following are notes about container health check support:
|
4969
4968
|
#
|
4970
4969
|
# * Container health checks require version 1.17.0 or greater of the
|
4971
4970
|
# Amazon ECS container agent. For more information, see [Updating the
|
4972
|
-
# Amazon ECS container agent][
|
4971
|
+
# Amazon ECS container agent][2].
|
4973
4972
|
#
|
4974
4973
|
# * Container health checks are supported for Fargate tasks if you're
|
4975
4974
|
# using platform version `1.1.0` or greater. For more information, see
|
4976
|
-
# [Fargate platform versions][
|
4975
|
+
# [Fargate platform versions][3].
|
4977
4976
|
#
|
4978
4977
|
# * Container health checks aren't supported for tasks that are part of
|
4979
4978
|
# a service that's configured to use a Classic Load Balancer.
|
4980
4979
|
#
|
4981
4980
|
#
|
4982
4981
|
#
|
4983
|
-
# [1]: https://docs.
|
4984
|
-
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/
|
4982
|
+
# [1]: https://docs.docker.com/engine/reference/run/
|
4983
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html
|
4984
|
+
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
|
4985
4985
|
#
|
4986
4986
|
# @!attribute [rw] command
|
4987
4987
|
# A string array representing the command that the container runs to
|
@@ -5110,7 +5110,11 @@ module Aws::ECS
|
|
5110
5110
|
# @!attribute [rw] device_name
|
5111
5111
|
# The Elastic Inference accelerator device name. The `deviceName` must
|
5112
5112
|
# also be referenced in a container definition as a
|
5113
|
-
# ResourceRequirement.
|
5113
|
+
# [ResourceRequirement][1].
|
5114
|
+
#
|
5115
|
+
#
|
5116
|
+
#
|
5117
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ResourceRequirement.html
|
5114
5118
|
# @return [String]
|
5115
5119
|
#
|
5116
5120
|
# @!attribute [rw] device_type
|
@@ -5294,8 +5298,12 @@ module Aws::ECS
|
|
5294
5298
|
#
|
5295
5299
|
class LimitExceededException < Aws::EmptyStructure; end
|
5296
5300
|
|
5297
|
-
# Linux-specific options that are applied to the container, such as
|
5298
|
-
# Linux KernelCapabilities.
|
5301
|
+
# The Linux-specific options that are applied to the container, such as
|
5302
|
+
# Linux [KernelCapabilities][1].
|
5303
|
+
#
|
5304
|
+
#
|
5305
|
+
#
|
5306
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_KernelCapabilities.html
|
5299
5307
|
#
|
5300
5308
|
# @!attribute [rw] capabilities
|
5301
5309
|
# The Linux capabilities for the container that are added to or
|
@@ -6177,10 +6185,6 @@ module Aws::ECS
|
|
6177
6185
|
|
6178
6186
|
# The load balancer configuration to use with a service or task set.
|
6179
6187
|
#
|
6180
|
-
# For specific notes and restrictions regarding the use of load
|
6181
|
-
# balancers with services and task sets, see the CreateService and
|
6182
|
-
# CreateTaskSet actions.
|
6183
|
-
#
|
6184
6188
|
# When you add, update, or remove a load balancer configuration, Amazon
|
6185
6189
|
# ECS starts a new deployment with the updated Elastic Load Balancing
|
6186
6190
|
# configuration. This causes tasks to register to and deregister from
|
@@ -6450,10 +6454,13 @@ module Aws::ECS
|
|
6450
6454
|
# @return [String]
|
6451
6455
|
#
|
6452
6456
|
# @!attribute [rw] target_capacity
|
6453
|
-
# The target capacity
|
6454
|
-
# value must be greater than `0` and less than
|
6455
|
-
#
|
6456
|
-
#
|
6457
|
+
# The target capacity utilization as a percentage for the capacity
|
6458
|
+
# provider. The specified value must be greater than `0` and less than
|
6459
|
+
# or equal to `100`. For example, if you want the capacity provider to
|
6460
|
+
# maintain 10% spare capacity, then that means the utilization is 90%,
|
6461
|
+
# so use a `targetCapacity` of `90`. The default value of `100`
|
6462
|
+
# percent results in the Amazon EC2 instances in your Auto Scaling
|
6463
|
+
# group being completely used.
|
6457
6464
|
# @return [Integer]
|
6458
6465
|
#
|
6459
6466
|
# @!attribute [rw] minimum_scaling_step_size
|
@@ -6509,7 +6516,7 @@ module Aws::ECS
|
|
6509
6516
|
#
|
6510
6517
|
class MissingVersionException < Aws::EmptyStructure; end
|
6511
6518
|
|
6512
|
-
#
|
6519
|
+
# The details for a volume mount point that's used in a container
|
6513
6520
|
# definition.
|
6514
6521
|
#
|
6515
6522
|
# @!attribute [rw] source_volume
|
@@ -6570,7 +6577,7 @@ module Aws::ECS
|
|
6570
6577
|
# The port number range on the container that's bound to the
|
6571
6578
|
# dynamically mapped host port range.
|
6572
6579
|
#
|
6573
|
-
# The following rules apply when you specify a `containerPortRange
|
6580
|
+
# The following rules apply when you specify a `containerPortRange`:
|
6574
6581
|
#
|
6575
6582
|
# * You must use either the `bridge` network mode or the `awsvpc`
|
6576
6583
|
# network mode.
|
@@ -6888,10 +6895,14 @@ module Aws::ECS
|
|
6888
6895
|
# port that was previously specified in a running task is also
|
6889
6896
|
# reserved while the task is running. That is, after a task stops, the
|
6890
6897
|
# host port is released. The current reserved ports are displayed in
|
6891
|
-
# the `remainingResources` of DescribeContainerInstances output.
|
6892
|
-
# container instance can have up to 100 reserved ports at a time.
|
6893
|
-
# number includes the default reserved ports. Automatically
|
6894
|
-
# ports aren't included in the 100 reserved ports quota.
|
6898
|
+
# the `remainingResources` of [DescribeContainerInstances][1] output.
|
6899
|
+
# A container instance can have up to 100 reserved ports at a time.
|
6900
|
+
# This number includes the default reserved ports. Automatically
|
6901
|
+
# assigned ports aren't included in the 100 reserved ports quota.
|
6902
|
+
#
|
6903
|
+
#
|
6904
|
+
#
|
6905
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_DescribeContainerInstances.html
|
6895
6906
|
# @return [Integer]
|
6896
6907
|
#
|
6897
6908
|
# @!attribute [rw] protocol
|
@@ -6946,7 +6957,7 @@ module Aws::ECS
|
|
6946
6957
|
# The port number range on the container that's bound to the
|
6947
6958
|
# dynamically mapped host port range.
|
6948
6959
|
#
|
6949
|
-
# The following rules apply when you specify a `containerPortRange
|
6960
|
+
# The following rules apply when you specify a `containerPortRange`:
|
6950
6961
|
#
|
6951
6962
|
# * You must use either the `bridge` network mode or the `awsvpc`
|
6952
6963
|
# network mode.
|
@@ -7895,7 +7906,7 @@ module Aws::ECS
|
|
7895
7906
|
#
|
7896
7907
|
#
|
7897
7908
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html
|
7898
|
-
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html
|
7909
|
+
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/url-ecs-dev;ecs-inference.html
|
7899
7910
|
#
|
7900
7911
|
# @!attribute [rw] value
|
7901
7912
|
# The value for the specified resource type.
|
@@ -7907,8 +7918,12 @@ module Aws::ECS
|
|
7907
7918
|
# that the task is launched on.
|
7908
7919
|
#
|
7909
7920
|
# If the `InferenceAccelerator` type is used, the `value` matches the
|
7910
|
-
# `deviceName` for an InferenceAccelerator specified in a task
|
7921
|
+
# `deviceName` for an [InferenceAccelerator][1] specified in a task
|
7911
7922
|
# definition.
|
7923
|
+
#
|
7924
|
+
#
|
7925
|
+
#
|
7926
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_InferenceAccelerator.html
|
7912
7927
|
# @return [String]
|
7913
7928
|
#
|
7914
7929
|
# @!attribute [rw] type
|
@@ -8312,7 +8327,7 @@ module Aws::ECS
|
|
8312
8327
|
include Aws::Structure
|
8313
8328
|
end
|
8314
8329
|
|
8315
|
-
# Details on a service within a cluster
|
8330
|
+
# Details on a service within a cluster.
|
8316
8331
|
#
|
8317
8332
|
# @!attribute [rw] service_arn
|
8318
8333
|
# The ARN that identifies the service. For more information about the
|
@@ -8787,10 +8802,8 @@ module Aws::ECS
|
|
8787
8802
|
# underscores (\_), and hyphens (-). The name can't start with a
|
8788
8803
|
# hyphen.
|
8789
8804
|
#
|
8790
|
-
# If
|
8791
|
-
#
|
8792
|
-
# specified, the port mapping name from the task definition is used in
|
8793
|
-
# `portName.namespace`.
|
8805
|
+
# If the `discoveryName` isn't specified, the port mapping name from
|
8806
|
+
# the task definition is used in `portName.namespace`.
|
8794
8807
|
# @return [String]
|
8795
8808
|
#
|
8796
8809
|
# @!attribute [rw] client_aliases
|
@@ -8855,10 +8868,8 @@ module Aws::ECS
|
|
8855
8868
|
# underscores (\_), and hyphens (-). The name can't start with a
|
8856
8869
|
# hyphen.
|
8857
8870
|
#
|
8858
|
-
# If
|
8859
|
-
#
|
8860
|
-
# specified, the port mapping name from the task definition is used in
|
8861
|
-
# `portName.namespace`.
|
8871
|
+
# If the `discoveryName` isn't specified, the port mapping name from
|
8872
|
+
# the task definition is used in `portName.namespace`.
|
8862
8873
|
# @return [String]
|
8863
8874
|
#
|
8864
8875
|
# @!attribute [rw] discovery_arn
|
@@ -10117,9 +10128,13 @@ module Aws::ECS
|
|
10117
10128
|
# @return [Types::RuntimePlatform]
|
10118
10129
|
#
|
10119
10130
|
# @!attribute [rw] requires_compatibilities
|
10120
|
-
# The task launch types the task definition was validated against.
|
10121
|
-
#
|
10122
|
-
#
|
10131
|
+
# The task launch types the task definition was validated against. For
|
10132
|
+
# more information, see [Amazon ECS launch types][1] in the *Amazon
|
10133
|
+
# Elastic Container Service Developer Guide*.
|
10134
|
+
#
|
10135
|
+
#
|
10136
|
+
#
|
10137
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
|
10123
10138
|
# @return [Array<String>]
|
10124
10139
|
#
|
10125
10140
|
# @!attribute [rw] cpu
|
@@ -10597,7 +10612,7 @@ module Aws::ECS
|
|
10597
10612
|
# @!attribute [rw] stability_status
|
10598
10613
|
# The stability status. This indicates whether the task set has
|
10599
10614
|
# reached a steady state. If the following conditions are met, the
|
10600
|
-
# task set are in `STEADY_STATE
|
10615
|
+
# task set are in `STEADY_STATE`:
|
10601
10616
|
#
|
10602
10617
|
# * The task `runningCount` is equal to the `computedDesiredCount`.
|
10603
10618
|
#
|
@@ -11351,14 +11366,14 @@ module Aws::ECS
|
|
11351
11366
|
# @!attribute [rw] protected_tasks
|
11352
11367
|
# A list of tasks with the following information.
|
11353
11368
|
#
|
11354
|
-
# * `taskArn
|
11369
|
+
# * `taskArn`: The task ARN.
|
11355
11370
|
#
|
11356
|
-
# * `protectionEnabled
|
11371
|
+
# * `protectionEnabled`: The protection status of the task. If
|
11357
11372
|
# scale-in protection is enabled for a task, the value is `true`.
|
11358
11373
|
# Otherwise, it is `false`.
|
11359
11374
|
#
|
11360
|
-
# * `expirationDate
|
11361
|
-
#
|
11375
|
+
# * `expirationDate`: The epoch time when protection for the task will
|
11376
|
+
# expire.
|
11362
11377
|
# @return [Array<Types::ProtectedTask>]
|
11363
11378
|
#
|
11364
11379
|
# @!attribute [rw] failures
|
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.112.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-
|
11
|
+
date: 2023-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|