aws-sdk-ecs 1.63.0 → 1.69.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/lib/aws-sdk-ecs.rb +5 -2
- data/lib/aws-sdk-ecs/client.rb +104 -14
- data/lib/aws-sdk-ecs/client_api.rb +25 -0
- data/lib/aws-sdk-ecs/customizations.rb +1 -0
- data/lib/aws-sdk-ecs/errors.rb +2 -0
- data/lib/aws-sdk-ecs/resource.rb +2 -0
- data/lib/aws-sdk-ecs/types.rb +269 -40
- data/lib/aws-sdk-ecs/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46340498f3fab6b6bbb9eef6c75984cad106614152a61711c7c634ae2149b7d4
|
|
4
|
+
data.tar.gz: f74e338c0d356d672190cabc8ec606bf7a2d5e45f2bbc9b7f5c675859d9e36e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cbe778bd7def86aee90c2c795c10a8fbf11d5ec996d4467cf099943ac0a9479188385d884b014686eac6b0cfb56be801d8a46a2c6049f4890bd406ecd9906ef
|
|
7
|
+
data.tar.gz: 32e55885c16f3d5c3144a0765b9fa544538459944584499e3c1ecdf204906761698d046536e1c817c7f084ab1d494b7ff655849398ef0823633442facda8d8de
|
data/lib/aws-sdk-ecs.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -5,6 +7,7 @@
|
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
10
|
+
|
|
8
11
|
require 'aws-sdk-core'
|
|
9
12
|
require 'aws-sigv4'
|
|
10
13
|
|
|
@@ -43,9 +46,9 @@ require_relative 'aws-sdk-ecs/customizations'
|
|
|
43
46
|
#
|
|
44
47
|
# See {Errors} for more information.
|
|
45
48
|
#
|
|
46
|
-
#
|
|
49
|
+
# @!group service
|
|
47
50
|
module Aws::ECS
|
|
48
51
|
|
|
49
|
-
GEM_VERSION = '1.
|
|
52
|
+
GEM_VERSION = '1.69.0'
|
|
50
53
|
|
|
51
54
|
end
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
29
32
|
|
|
@@ -69,6 +72,7 @@ module Aws::ECS
|
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
74
78
|
|
|
@@ -81,13 +85,28 @@ module Aws::ECS
|
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
82
86
|
# credentials.
|
|
83
87
|
#
|
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
|
89
|
+
# shared file, such as `~/.aws/config`.
|
|
90
|
+
#
|
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
|
92
|
+
#
|
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
|
94
|
+
# assume a role after providing credentials via the web.
|
|
95
|
+
#
|
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
|
97
|
+
# access token generated from `aws login`.
|
|
98
|
+
#
|
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
|
100
|
+
# process that outputs to stdout.
|
|
101
|
+
#
|
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
|
86
104
|
#
|
|
87
|
-
# * `Aws::
|
|
88
|
-
#
|
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
106
|
+
# instances running in ECS.
|
|
89
107
|
#
|
|
90
|
-
# * `Aws::
|
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
109
|
+
# from the Cognito Identity service.
|
|
91
110
|
#
|
|
92
111
|
# When `:credentials` are not configured directly, the following
|
|
93
112
|
# locations will be searched for credentials:
|
|
@@ -97,10 +116,10 @@ module Aws::ECS
|
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
98
117
|
# * `~/.aws/credentials`
|
|
99
118
|
# * `~/.aws/config`
|
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
101
|
-
# very aggressive. Construct and pass an instance of
|
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
|
103
|
-
# timeouts.
|
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
+
# enable retries and extended timeouts.
|
|
104
123
|
#
|
|
105
124
|
# @option options [required, String] :region
|
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -161,7 +180,7 @@ module Aws::ECS
|
|
|
161
180
|
# @option options [String] :endpoint
|
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
165
184
|
#
|
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -396,13 +415,15 @@ module Aws::ECS
|
|
|
396
415
|
#
|
|
397
416
|
# resp.capacity_provider.capacity_provider_arn #=> String
|
|
398
417
|
# resp.capacity_provider.name #=> String
|
|
399
|
-
# resp.capacity_provider.status #=> String, one of "ACTIVE"
|
|
418
|
+
# resp.capacity_provider.status #=> String, one of "ACTIVE", "INACTIVE"
|
|
400
419
|
# resp.capacity_provider.auto_scaling_group_provider.auto_scaling_group_arn #=> String
|
|
401
420
|
# resp.capacity_provider.auto_scaling_group_provider.managed_scaling.status #=> String, one of "ENABLED", "DISABLED"
|
|
402
421
|
# resp.capacity_provider.auto_scaling_group_provider.managed_scaling.target_capacity #=> Integer
|
|
403
422
|
# resp.capacity_provider.auto_scaling_group_provider.managed_scaling.minimum_scaling_step_size #=> Integer
|
|
404
423
|
# resp.capacity_provider.auto_scaling_group_provider.managed_scaling.maximum_scaling_step_size #=> Integer
|
|
405
424
|
# resp.capacity_provider.auto_scaling_group_provider.managed_termination_protection #=> String, one of "ENABLED", "DISABLED"
|
|
425
|
+
# resp.capacity_provider.update_status #=> String, one of "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED"
|
|
426
|
+
# resp.capacity_provider.update_status_reason #=> String
|
|
406
427
|
# resp.capacity_provider.tags #=> Array
|
|
407
428
|
# resp.capacity_provider.tags[0].key #=> String
|
|
408
429
|
# resp.capacity_provider.tags[0].value #=> String
|
|
@@ -1736,6 +1757,65 @@ module Aws::ECS
|
|
|
1736
1757
|
req.send_request(options)
|
|
1737
1758
|
end
|
|
1738
1759
|
|
|
1760
|
+
# Deletes the specified capacity provider.
|
|
1761
|
+
#
|
|
1762
|
+
# <note markdown="1"> The `FARGATE` and `FARGATE_SPOT` capacity providers are reserved and
|
|
1763
|
+
# cannot be deleted. You can disassociate them from a cluster using
|
|
1764
|
+
# either the PutClusterCapacityProviders API or by deleting the cluster.
|
|
1765
|
+
#
|
|
1766
|
+
# </note>
|
|
1767
|
+
#
|
|
1768
|
+
# Prior to a capacity provider being deleted, the capacity provider must
|
|
1769
|
+
# be removed from the capacity provider strategy from all services. The
|
|
1770
|
+
# UpdateService API can be used to remove a capacity provider from a
|
|
1771
|
+
# service's capacity provider strategy. When updating a service, the
|
|
1772
|
+
# `forceNewDeployment` option can be used to ensure that any tasks using
|
|
1773
|
+
# the Amazon EC2 instance capacity provided by the capacity provider are
|
|
1774
|
+
# transitioned to use the capacity from the remaining capacity
|
|
1775
|
+
# providers. Only capacity providers that are not associated with a
|
|
1776
|
+
# cluster can be deleted. To remove a capacity provider from a cluster,
|
|
1777
|
+
# you can either use PutClusterCapacityProviders or delete the cluster.
|
|
1778
|
+
#
|
|
1779
|
+
# @option params [required, String] :capacity_provider
|
|
1780
|
+
# The short name or full Amazon Resource Name (ARN) of the capacity
|
|
1781
|
+
# provider to delete.
|
|
1782
|
+
#
|
|
1783
|
+
# @return [Types::DeleteCapacityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1784
|
+
#
|
|
1785
|
+
# * {Types::DeleteCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
|
|
1786
|
+
#
|
|
1787
|
+
# @example Request syntax with placeholder values
|
|
1788
|
+
#
|
|
1789
|
+
# resp = client.delete_capacity_provider({
|
|
1790
|
+
# capacity_provider: "String", # required
|
|
1791
|
+
# })
|
|
1792
|
+
#
|
|
1793
|
+
# @example Response structure
|
|
1794
|
+
#
|
|
1795
|
+
# resp.capacity_provider.capacity_provider_arn #=> String
|
|
1796
|
+
# resp.capacity_provider.name #=> String
|
|
1797
|
+
# resp.capacity_provider.status #=> String, one of "ACTIVE", "INACTIVE"
|
|
1798
|
+
# resp.capacity_provider.auto_scaling_group_provider.auto_scaling_group_arn #=> String
|
|
1799
|
+
# resp.capacity_provider.auto_scaling_group_provider.managed_scaling.status #=> String, one of "ENABLED", "DISABLED"
|
|
1800
|
+
# resp.capacity_provider.auto_scaling_group_provider.managed_scaling.target_capacity #=> Integer
|
|
1801
|
+
# resp.capacity_provider.auto_scaling_group_provider.managed_scaling.minimum_scaling_step_size #=> Integer
|
|
1802
|
+
# resp.capacity_provider.auto_scaling_group_provider.managed_scaling.maximum_scaling_step_size #=> Integer
|
|
1803
|
+
# resp.capacity_provider.auto_scaling_group_provider.managed_termination_protection #=> String, one of "ENABLED", "DISABLED"
|
|
1804
|
+
# resp.capacity_provider.update_status #=> String, one of "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED"
|
|
1805
|
+
# resp.capacity_provider.update_status_reason #=> String
|
|
1806
|
+
# resp.capacity_provider.tags #=> Array
|
|
1807
|
+
# resp.capacity_provider.tags[0].key #=> String
|
|
1808
|
+
# resp.capacity_provider.tags[0].value #=> String
|
|
1809
|
+
#
|
|
1810
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteCapacityProvider AWS API Documentation
|
|
1811
|
+
#
|
|
1812
|
+
# @overload delete_capacity_provider(params = {})
|
|
1813
|
+
# @param [Hash] params ({})
|
|
1814
|
+
def delete_capacity_provider(params = {}, options = {})
|
|
1815
|
+
req = build_request(:delete_capacity_provider, params)
|
|
1816
|
+
req.send_request(options)
|
|
1817
|
+
end
|
|
1818
|
+
|
|
1739
1819
|
# Deletes the specified cluster. The cluster will transition to the
|
|
1740
1820
|
# `INACTIVE` state. Clusters with an `INACTIVE` status may remain
|
|
1741
1821
|
# discoverable in your account for a period of time. However, this
|
|
@@ -2489,13 +2569,15 @@ module Aws::ECS
|
|
|
2489
2569
|
# resp.capacity_providers #=> Array
|
|
2490
2570
|
# resp.capacity_providers[0].capacity_provider_arn #=> String
|
|
2491
2571
|
# resp.capacity_providers[0].name #=> String
|
|
2492
|
-
# resp.capacity_providers[0].status #=> String, one of "ACTIVE"
|
|
2572
|
+
# resp.capacity_providers[0].status #=> String, one of "ACTIVE", "INACTIVE"
|
|
2493
2573
|
# resp.capacity_providers[0].auto_scaling_group_provider.auto_scaling_group_arn #=> String
|
|
2494
2574
|
# resp.capacity_providers[0].auto_scaling_group_provider.managed_scaling.status #=> String, one of "ENABLED", "DISABLED"
|
|
2495
2575
|
# resp.capacity_providers[0].auto_scaling_group_provider.managed_scaling.target_capacity #=> Integer
|
|
2496
2576
|
# resp.capacity_providers[0].auto_scaling_group_provider.managed_scaling.minimum_scaling_step_size #=> Integer
|
|
2497
2577
|
# resp.capacity_providers[0].auto_scaling_group_provider.managed_scaling.maximum_scaling_step_size #=> Integer
|
|
2498
2578
|
# resp.capacity_providers[0].auto_scaling_group_provider.managed_termination_protection #=> String, one of "ENABLED", "DISABLED"
|
|
2579
|
+
# resp.capacity_providers[0].update_status #=> String, one of "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED"
|
|
2580
|
+
# resp.capacity_providers[0].update_status_reason #=> String
|
|
2499
2581
|
# resp.capacity_providers[0].tags #=> Array
|
|
2500
2582
|
# resp.capacity_providers[0].tags[0].key #=> String
|
|
2501
2583
|
# resp.capacity_providers[0].tags[0].value #=> String
|
|
@@ -3642,7 +3724,7 @@ module Aws::ECS
|
|
|
3642
3724
|
# Lists the account settings for a specified principal.
|
|
3643
3725
|
#
|
|
3644
3726
|
# @option params [String] :name
|
|
3645
|
-
# The
|
|
3727
|
+
# The name of the account setting you want to list the settings for.
|
|
3646
3728
|
#
|
|
3647
3729
|
# @option params [String] :value
|
|
3648
3730
|
# The value of the account settings with which to filter results. You
|
|
@@ -5149,8 +5231,16 @@ module Aws::ECS
|
|
|
5149
5231
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
|
|
5150
5232
|
#
|
|
5151
5233
|
# @option params [String] :execution_role_arn
|
|
5152
|
-
# The Amazon Resource Name (ARN) of the task execution role that
|
|
5153
|
-
# Amazon ECS container agent
|
|
5234
|
+
# The Amazon Resource Name (ARN) of the task execution role that grants
|
|
5235
|
+
# the Amazon ECS container agent permission to make AWS API calls on
|
|
5236
|
+
# your behalf. The task execution IAM role is required depending on the
|
|
5237
|
+
# requirements of your task. For more information, see [Amazon ECS task
|
|
5238
|
+
# execution IAM role][1] in the *Amazon Elastic Container Service
|
|
5239
|
+
# Developer Guide*.
|
|
5240
|
+
#
|
|
5241
|
+
#
|
|
5242
|
+
#
|
|
5243
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html
|
|
5154
5244
|
#
|
|
5155
5245
|
# @option params [String] :network_mode
|
|
5156
5246
|
# The Docker networking mode to use for the containers in the task. The
|
|
@@ -7998,7 +8088,7 @@ module Aws::ECS
|
|
|
7998
8088
|
params: params,
|
|
7999
8089
|
config: config)
|
|
8000
8090
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
8001
|
-
context[:gem_version] = '1.
|
|
8091
|
+
context[:gem_version] = '1.69.0'
|
|
8002
8092
|
Seahorse::Client::Request.new(handlers, context)
|
|
8003
8093
|
end
|
|
8004
8094
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -36,6 +38,7 @@ module Aws::ECS
|
|
|
36
38
|
CapacityProviderStrategyItem = Shapes::StructureShape.new(name: 'CapacityProviderStrategyItem')
|
|
37
39
|
CapacityProviderStrategyItemBase = Shapes::IntegerShape.new(name: 'CapacityProviderStrategyItemBase')
|
|
38
40
|
CapacityProviderStrategyItemWeight = Shapes::IntegerShape.new(name: 'CapacityProviderStrategyItemWeight')
|
|
41
|
+
CapacityProviderUpdateStatus = Shapes::StringShape.new(name: 'CapacityProviderUpdateStatus')
|
|
39
42
|
CapacityProviders = Shapes::ListShape.new(name: 'CapacityProviders')
|
|
40
43
|
ClientException = Shapes::StructureShape.new(name: 'ClientException')
|
|
41
44
|
Cluster = Shapes::StructureShape.new(name: 'Cluster')
|
|
@@ -80,6 +83,8 @@ module Aws::ECS
|
|
|
80
83
|
DeleteAccountSettingResponse = Shapes::StructureShape.new(name: 'DeleteAccountSettingResponse')
|
|
81
84
|
DeleteAttributesRequest = Shapes::StructureShape.new(name: 'DeleteAttributesRequest')
|
|
82
85
|
DeleteAttributesResponse = Shapes::StructureShape.new(name: 'DeleteAttributesResponse')
|
|
86
|
+
DeleteCapacityProviderRequest = Shapes::StructureShape.new(name: 'DeleteCapacityProviderRequest')
|
|
87
|
+
DeleteCapacityProviderResponse = Shapes::StructureShape.new(name: 'DeleteCapacityProviderResponse')
|
|
83
88
|
DeleteClusterRequest = Shapes::StructureShape.new(name: 'DeleteClusterRequest')
|
|
84
89
|
DeleteClusterResponse = Shapes::StructureShape.new(name: 'DeleteClusterResponse')
|
|
85
90
|
DeleteServiceRequest = Shapes::StructureShape.new(name: 'DeleteServiceRequest')
|
|
@@ -369,6 +374,8 @@ module Aws::ECS
|
|
|
369
374
|
CapacityProvider.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
370
375
|
CapacityProvider.add_member(:status, Shapes::ShapeRef.new(shape: CapacityProviderStatus, location_name: "status"))
|
|
371
376
|
CapacityProvider.add_member(:auto_scaling_group_provider, Shapes::ShapeRef.new(shape: AutoScalingGroupProvider, location_name: "autoScalingGroupProvider"))
|
|
377
|
+
CapacityProvider.add_member(:update_status, Shapes::ShapeRef.new(shape: CapacityProviderUpdateStatus, location_name: "updateStatus"))
|
|
378
|
+
CapacityProvider.add_member(:update_status_reason, Shapes::ShapeRef.new(shape: String, location_name: "updateStatusReason"))
|
|
372
379
|
CapacityProvider.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
373
380
|
CapacityProvider.struct_class = Types::CapacityProvider
|
|
374
381
|
|
|
@@ -613,6 +620,12 @@ module Aws::ECS
|
|
|
613
620
|
DeleteAttributesResponse.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "attributes"))
|
|
614
621
|
DeleteAttributesResponse.struct_class = Types::DeleteAttributesResponse
|
|
615
622
|
|
|
623
|
+
DeleteCapacityProviderRequest.add_member(:capacity_provider, Shapes::ShapeRef.new(shape: String, required: true, location_name: "capacityProvider"))
|
|
624
|
+
DeleteCapacityProviderRequest.struct_class = Types::DeleteCapacityProviderRequest
|
|
625
|
+
|
|
626
|
+
DeleteCapacityProviderResponse.add_member(:capacity_provider, Shapes::ShapeRef.new(shape: CapacityProvider, location_name: "capacityProvider"))
|
|
627
|
+
DeleteCapacityProviderResponse.struct_class = Types::DeleteCapacityProviderResponse
|
|
628
|
+
|
|
616
629
|
DeleteClusterRequest.add_member(:cluster, Shapes::ShapeRef.new(shape: String, required: true, location_name: "cluster"))
|
|
617
630
|
DeleteClusterRequest.struct_class = Types::DeleteClusterRequest
|
|
618
631
|
|
|
@@ -1541,6 +1554,7 @@ module Aws::ECS
|
|
|
1541
1554
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
1542
1555
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1543
1556
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
1557
|
+
o.errors << Shapes::ShapeRef.new(shape: UpdateInProgressException)
|
|
1544
1558
|
end)
|
|
1545
1559
|
|
|
1546
1560
|
api.add_operation(:create_cluster, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1610,6 +1624,17 @@ module Aws::ECS
|
|
|
1610
1624
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1611
1625
|
end)
|
|
1612
1626
|
|
|
1627
|
+
api.add_operation(:delete_capacity_provider, Seahorse::Model::Operation.new.tap do |o|
|
|
1628
|
+
o.name = "DeleteCapacityProvider"
|
|
1629
|
+
o.http_method = "POST"
|
|
1630
|
+
o.http_request_uri = "/"
|
|
1631
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteCapacityProviderRequest)
|
|
1632
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteCapacityProviderResponse)
|
|
1633
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1634
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
1635
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1636
|
+
end)
|
|
1637
|
+
|
|
1613
1638
|
api.add_operation(:delete_cluster, Seahorse::Model::Operation.new.tap do |o|
|
|
1614
1639
|
o.name = "DeleteCluster"
|
|
1615
1640
|
o.http_method = "POST"
|
data/lib/aws-sdk-ecs/errors.rb
CHANGED
data/lib/aws-sdk-ecs/resource.rb
CHANGED
data/lib/aws-sdk-ecs/types.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -43,6 +45,7 @@ module Aws::ECS
|
|
|
43
45
|
:type,
|
|
44
46
|
:status,
|
|
45
47
|
:details)
|
|
48
|
+
SENSITIVE = []
|
|
46
49
|
include Aws::Structure
|
|
47
50
|
end
|
|
48
51
|
|
|
@@ -69,6 +72,7 @@ module Aws::ECS
|
|
|
69
72
|
class AttachmentStateChange < Struct.new(
|
|
70
73
|
:attachment_arn,
|
|
71
74
|
:status)
|
|
75
|
+
SENSITIVE = []
|
|
72
76
|
include Aws::Structure
|
|
73
77
|
end
|
|
74
78
|
|
|
@@ -121,6 +125,7 @@ module Aws::ECS
|
|
|
121
125
|
:value,
|
|
122
126
|
:target_type,
|
|
123
127
|
:target_id)
|
|
128
|
+
SENSITIVE = []
|
|
124
129
|
include Aws::Structure
|
|
125
130
|
end
|
|
126
131
|
|
|
@@ -189,6 +194,7 @@ module Aws::ECS
|
|
|
189
194
|
:auto_scaling_group_arn,
|
|
190
195
|
:managed_scaling,
|
|
191
196
|
:managed_termination_protection)
|
|
197
|
+
SENSITIVE = []
|
|
192
198
|
include Aws::Structure
|
|
193
199
|
end
|
|
194
200
|
|
|
@@ -234,6 +240,7 @@ module Aws::ECS
|
|
|
234
240
|
:subnets,
|
|
235
241
|
:security_groups,
|
|
236
242
|
:assign_public_ip)
|
|
243
|
+
SENSITIVE = []
|
|
237
244
|
include Aws::Structure
|
|
238
245
|
end
|
|
239
246
|
|
|
@@ -261,13 +268,38 @@ module Aws::ECS
|
|
|
261
268
|
#
|
|
262
269
|
# @!attribute [rw] status
|
|
263
270
|
# The current status of the capacity provider. Only capacity providers
|
|
264
|
-
# in an `ACTIVE` state can be used in a cluster.
|
|
271
|
+
# in an `ACTIVE` state can be used in a cluster. When a capacity
|
|
272
|
+
# provider is successfully deleted, it will have an `INACTIVE` status.
|
|
265
273
|
# @return [String]
|
|
266
274
|
#
|
|
267
275
|
# @!attribute [rw] auto_scaling_group_provider
|
|
268
276
|
# The Auto Scaling group settings for the capacity provider.
|
|
269
277
|
# @return [Types::AutoScalingGroupProvider]
|
|
270
278
|
#
|
|
279
|
+
# @!attribute [rw] update_status
|
|
280
|
+
# The update status of the capacity provider. The following are the
|
|
281
|
+
# possible states that will be returned.
|
|
282
|
+
#
|
|
283
|
+
# DELETE\_IN\_PROGRESS
|
|
284
|
+
#
|
|
285
|
+
# : The capacity provider is in the process of being deleted.
|
|
286
|
+
#
|
|
287
|
+
# DELETE\_COMPLETE
|
|
288
|
+
#
|
|
289
|
+
# : The capacity provider has been successfully deleted and will have
|
|
290
|
+
# an `INACTIVE` status.
|
|
291
|
+
#
|
|
292
|
+
# DELETE\_FAILED
|
|
293
|
+
#
|
|
294
|
+
# : The capacity provider was unable to be deleted. The update status
|
|
295
|
+
# reason will provide further details about why the delete failed.
|
|
296
|
+
# @return [String]
|
|
297
|
+
#
|
|
298
|
+
# @!attribute [rw] update_status_reason
|
|
299
|
+
# The update status reason. This provides further details about the
|
|
300
|
+
# update status for the capacity provider.
|
|
301
|
+
# @return [String]
|
|
302
|
+
#
|
|
271
303
|
# @!attribute [rw] tags
|
|
272
304
|
# The metadata that you apply to the capacity provider to help you
|
|
273
305
|
# categorize and organize it. Each tag consists of a key and an
|
|
@@ -306,7 +338,10 @@ module Aws::ECS
|
|
|
306
338
|
:name,
|
|
307
339
|
:status,
|
|
308
340
|
:auto_scaling_group_provider,
|
|
341
|
+
:update_status,
|
|
342
|
+
:update_status_reason,
|
|
309
343
|
:tags)
|
|
344
|
+
SENSITIVE = []
|
|
310
345
|
include Aws::Structure
|
|
311
346
|
end
|
|
312
347
|
|
|
@@ -351,6 +386,7 @@ module Aws::ECS
|
|
|
351
386
|
:capacity_provider,
|
|
352
387
|
:weight,
|
|
353
388
|
:base)
|
|
389
|
+
SENSITIVE = []
|
|
354
390
|
include Aws::Structure
|
|
355
391
|
end
|
|
356
392
|
|
|
@@ -366,6 +402,7 @@ module Aws::ECS
|
|
|
366
402
|
#
|
|
367
403
|
class ClientException < Struct.new(
|
|
368
404
|
:message)
|
|
405
|
+
SENSITIVE = []
|
|
369
406
|
include Aws::Structure
|
|
370
407
|
end
|
|
371
408
|
|
|
@@ -547,6 +584,7 @@ module Aws::ECS
|
|
|
547
584
|
:default_capacity_provider_strategy,
|
|
548
585
|
:attachments,
|
|
549
586
|
:attachments_status)
|
|
587
|
+
SENSITIVE = []
|
|
550
588
|
include Aws::Structure
|
|
551
589
|
end
|
|
552
590
|
|
|
@@ -610,6 +648,7 @@ module Aws::ECS
|
|
|
610
648
|
class ClusterSetting < Struct.new(
|
|
611
649
|
:name,
|
|
612
650
|
:value)
|
|
651
|
+
SENSITIVE = []
|
|
613
652
|
include Aws::Structure
|
|
614
653
|
end
|
|
615
654
|
|
|
@@ -708,6 +747,7 @@ module Aws::ECS
|
|
|
708
747
|
:memory,
|
|
709
748
|
:memory_reservation,
|
|
710
749
|
:gpu_ids)
|
|
750
|
+
SENSITIVE = []
|
|
711
751
|
include Aws::Structure
|
|
712
752
|
end
|
|
713
753
|
|
|
@@ -1620,15 +1660,16 @@ module Aws::ECS
|
|
|
1620
1660
|
# @return [Hash<String,String>]
|
|
1621
1661
|
#
|
|
1622
1662
|
# @!attribute [rw] ulimits
|
|
1623
|
-
# A list of `ulimits` to set in the container.
|
|
1624
|
-
#
|
|
1625
|
-
#
|
|
1626
|
-
#
|
|
1627
|
-
#
|
|
1628
|
-
#
|
|
1629
|
-
#
|
|
1630
|
-
#
|
|
1631
|
-
#
|
|
1663
|
+
# A list of `ulimits` to set in the container. If a ulimit value is
|
|
1664
|
+
# specified in a task definition, it will override the default values
|
|
1665
|
+
# set by Docker. This parameter maps to `Ulimits` in the [Create a
|
|
1666
|
+
# container][1] section of the [Docker Remote API][2] and the
|
|
1667
|
+
# `--ulimit` option to [docker run][3]. Valid naming values are
|
|
1668
|
+
# displayed in the Ulimit data type. This parameter requires version
|
|
1669
|
+
# 1.18 of the Docker Remote API or greater on your container instance.
|
|
1670
|
+
# To check the Docker Remote API version on your container instance,
|
|
1671
|
+
# log in to your container instance and run the following command:
|
|
1672
|
+
# `sudo docker version --format '\{\{.Server.APIVersion\}\}'`
|
|
1632
1673
|
#
|
|
1633
1674
|
# <note markdown="1"> This parameter is not supported for Windows containers.
|
|
1634
1675
|
#
|
|
@@ -1783,6 +1824,7 @@ module Aws::ECS
|
|
|
1783
1824
|
:system_controls,
|
|
1784
1825
|
:resource_requirements,
|
|
1785
1826
|
:firelens_configuration)
|
|
1827
|
+
SENSITIVE = []
|
|
1786
1828
|
include Aws::Structure
|
|
1787
1829
|
end
|
|
1788
1830
|
|
|
@@ -1853,6 +1895,7 @@ module Aws::ECS
|
|
|
1853
1895
|
class ContainerDependency < Struct.new(
|
|
1854
1896
|
:container_name,
|
|
1855
1897
|
:condition)
|
|
1898
|
+
SENSITIVE = []
|
|
1856
1899
|
include Aws::Structure
|
|
1857
1900
|
end
|
|
1858
1901
|
|
|
@@ -2035,6 +2078,7 @@ module Aws::ECS
|
|
|
2035
2078
|
:registered_at,
|
|
2036
2079
|
:attachments,
|
|
2037
2080
|
:tags)
|
|
2081
|
+
SENSITIVE = []
|
|
2038
2082
|
include Aws::Structure
|
|
2039
2083
|
end
|
|
2040
2084
|
|
|
@@ -2132,6 +2176,7 @@ module Aws::ECS
|
|
|
2132
2176
|
:memory,
|
|
2133
2177
|
:memory_reservation,
|
|
2134
2178
|
:resource_requirements)
|
|
2179
|
+
SENSITIVE = []
|
|
2135
2180
|
include Aws::Structure
|
|
2136
2181
|
end
|
|
2137
2182
|
|
|
@@ -2196,6 +2241,7 @@ module Aws::ECS
|
|
|
2196
2241
|
:network_bindings,
|
|
2197
2242
|
:reason,
|
|
2198
2243
|
:status)
|
|
2244
|
+
SENSITIVE = []
|
|
2199
2245
|
include Aws::Structure
|
|
2200
2246
|
end
|
|
2201
2247
|
|
|
@@ -2270,6 +2316,7 @@ module Aws::ECS
|
|
|
2270
2316
|
:name,
|
|
2271
2317
|
:auto_scaling_group_provider,
|
|
2272
2318
|
:tags)
|
|
2319
|
+
SENSITIVE = []
|
|
2273
2320
|
include Aws::Structure
|
|
2274
2321
|
end
|
|
2275
2322
|
|
|
@@ -2281,6 +2328,7 @@ module Aws::ECS
|
|
|
2281
2328
|
#
|
|
2282
2329
|
class CreateCapacityProviderResponse < Struct.new(
|
|
2283
2330
|
:capacity_provider)
|
|
2331
|
+
SENSITIVE = []
|
|
2284
2332
|
include Aws::Structure
|
|
2285
2333
|
end
|
|
2286
2334
|
|
|
@@ -2411,6 +2459,7 @@ module Aws::ECS
|
|
|
2411
2459
|
:settings,
|
|
2412
2460
|
:capacity_providers,
|
|
2413
2461
|
:default_capacity_provider_strategy)
|
|
2462
|
+
SENSITIVE = []
|
|
2414
2463
|
include Aws::Structure
|
|
2415
2464
|
end
|
|
2416
2465
|
|
|
@@ -2422,6 +2471,7 @@ module Aws::ECS
|
|
|
2422
2471
|
#
|
|
2423
2472
|
class CreateClusterResponse < Struct.new(
|
|
2424
2473
|
:cluster)
|
|
2474
|
+
SENSITIVE = []
|
|
2425
2475
|
include Aws::Structure
|
|
2426
2476
|
end
|
|
2427
2477
|
|
|
@@ -2858,6 +2908,7 @@ module Aws::ECS
|
|
|
2858
2908
|
:tags,
|
|
2859
2909
|
:enable_ecs_managed_tags,
|
|
2860
2910
|
:propagate_tags)
|
|
2911
|
+
SENSITIVE = []
|
|
2861
2912
|
include Aws::Structure
|
|
2862
2913
|
end
|
|
2863
2914
|
|
|
@@ -2878,6 +2929,7 @@ module Aws::ECS
|
|
|
2878
2929
|
#
|
|
2879
2930
|
class CreateServiceResponse < Struct.new(
|
|
2880
2931
|
:service)
|
|
2932
|
+
SENSITIVE = []
|
|
2881
2933
|
include Aws::Structure
|
|
2882
2934
|
end
|
|
2883
2935
|
|
|
@@ -3084,6 +3136,7 @@ module Aws::ECS
|
|
|
3084
3136
|
:scale,
|
|
3085
3137
|
:client_token,
|
|
3086
3138
|
:tags)
|
|
3139
|
+
SENSITIVE = []
|
|
3087
3140
|
include Aws::Structure
|
|
3088
3141
|
end
|
|
3089
3142
|
|
|
@@ -3098,6 +3151,7 @@ module Aws::ECS
|
|
|
3098
3151
|
#
|
|
3099
3152
|
class CreateTaskSetResponse < Struct.new(
|
|
3100
3153
|
:task_set)
|
|
3154
|
+
SENSITIVE = []
|
|
3101
3155
|
include Aws::Structure
|
|
3102
3156
|
end
|
|
3103
3157
|
|
|
@@ -3134,6 +3188,7 @@ module Aws::ECS
|
|
|
3134
3188
|
class DeleteAccountSettingRequest < Struct.new(
|
|
3135
3189
|
:name,
|
|
3136
3190
|
:principal_arn)
|
|
3191
|
+
SENSITIVE = []
|
|
3137
3192
|
include Aws::Structure
|
|
3138
3193
|
end
|
|
3139
3194
|
|
|
@@ -3145,6 +3200,7 @@ module Aws::ECS
|
|
|
3145
3200
|
#
|
|
3146
3201
|
class DeleteAccountSettingResponse < Struct.new(
|
|
3147
3202
|
:setting)
|
|
3203
|
+
SENSITIVE = []
|
|
3148
3204
|
include Aws::Structure
|
|
3149
3205
|
end
|
|
3150
3206
|
|
|
@@ -3182,6 +3238,7 @@ module Aws::ECS
|
|
|
3182
3238
|
class DeleteAttributesRequest < Struct.new(
|
|
3183
3239
|
:cluster,
|
|
3184
3240
|
:attributes)
|
|
3241
|
+
SENSITIVE = []
|
|
3185
3242
|
include Aws::Structure
|
|
3186
3243
|
end
|
|
3187
3244
|
|
|
@@ -3194,6 +3251,39 @@ module Aws::ECS
|
|
|
3194
3251
|
#
|
|
3195
3252
|
class DeleteAttributesResponse < Struct.new(
|
|
3196
3253
|
:attributes)
|
|
3254
|
+
SENSITIVE = []
|
|
3255
|
+
include Aws::Structure
|
|
3256
|
+
end
|
|
3257
|
+
|
|
3258
|
+
# @note When making an API call, you may pass DeleteCapacityProviderRequest
|
|
3259
|
+
# data as a hash:
|
|
3260
|
+
#
|
|
3261
|
+
# {
|
|
3262
|
+
# capacity_provider: "String", # required
|
|
3263
|
+
# }
|
|
3264
|
+
#
|
|
3265
|
+
# @!attribute [rw] capacity_provider
|
|
3266
|
+
# The short name or full Amazon Resource Name (ARN) of the capacity
|
|
3267
|
+
# provider to delete.
|
|
3268
|
+
# @return [String]
|
|
3269
|
+
#
|
|
3270
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteCapacityProviderRequest AWS API Documentation
|
|
3271
|
+
#
|
|
3272
|
+
class DeleteCapacityProviderRequest < Struct.new(
|
|
3273
|
+
:capacity_provider)
|
|
3274
|
+
SENSITIVE = []
|
|
3275
|
+
include Aws::Structure
|
|
3276
|
+
end
|
|
3277
|
+
|
|
3278
|
+
# @!attribute [rw] capacity_provider
|
|
3279
|
+
# The details of a capacity provider.
|
|
3280
|
+
# @return [Types::CapacityProvider]
|
|
3281
|
+
#
|
|
3282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteCapacityProviderResponse AWS API Documentation
|
|
3283
|
+
#
|
|
3284
|
+
class DeleteCapacityProviderResponse < Struct.new(
|
|
3285
|
+
:capacity_provider)
|
|
3286
|
+
SENSITIVE = []
|
|
3197
3287
|
include Aws::Structure
|
|
3198
3288
|
end
|
|
3199
3289
|
|
|
@@ -3213,6 +3303,7 @@ module Aws::ECS
|
|
|
3213
3303
|
#
|
|
3214
3304
|
class DeleteClusterRequest < Struct.new(
|
|
3215
3305
|
:cluster)
|
|
3306
|
+
SENSITIVE = []
|
|
3216
3307
|
include Aws::Structure
|
|
3217
3308
|
end
|
|
3218
3309
|
|
|
@@ -3224,6 +3315,7 @@ module Aws::ECS
|
|
|
3224
3315
|
#
|
|
3225
3316
|
class DeleteClusterResponse < Struct.new(
|
|
3226
3317
|
:cluster)
|
|
3318
|
+
SENSITIVE = []
|
|
3227
3319
|
include Aws::Structure
|
|
3228
3320
|
end
|
|
3229
3321
|
|
|
@@ -3258,6 +3350,7 @@ module Aws::ECS
|
|
|
3258
3350
|
:cluster,
|
|
3259
3351
|
:service,
|
|
3260
3352
|
:force)
|
|
3353
|
+
SENSITIVE = []
|
|
3261
3354
|
include Aws::Structure
|
|
3262
3355
|
end
|
|
3263
3356
|
|
|
@@ -3269,6 +3362,7 @@ module Aws::ECS
|
|
|
3269
3362
|
#
|
|
3270
3363
|
class DeleteServiceResponse < Struct.new(
|
|
3271
3364
|
:service)
|
|
3365
|
+
SENSITIVE = []
|
|
3272
3366
|
include Aws::Structure
|
|
3273
3367
|
end
|
|
3274
3368
|
|
|
@@ -3309,6 +3403,7 @@ module Aws::ECS
|
|
|
3309
3403
|
:service,
|
|
3310
3404
|
:task_set,
|
|
3311
3405
|
:force)
|
|
3406
|
+
SENSITIVE = []
|
|
3312
3407
|
include Aws::Structure
|
|
3313
3408
|
end
|
|
3314
3409
|
|
|
@@ -3323,6 +3418,7 @@ module Aws::ECS
|
|
|
3323
3418
|
#
|
|
3324
3419
|
class DeleteTaskSetResponse < Struct.new(
|
|
3325
3420
|
:task_set)
|
|
3421
|
+
SENSITIVE = []
|
|
3326
3422
|
include Aws::Structure
|
|
3327
3423
|
end
|
|
3328
3424
|
|
|
@@ -3426,6 +3522,7 @@ module Aws::ECS
|
|
|
3426
3522
|
:launch_type,
|
|
3427
3523
|
:platform_version,
|
|
3428
3524
|
:network_configuration)
|
|
3525
|
+
SENSITIVE = []
|
|
3429
3526
|
include Aws::Structure
|
|
3430
3527
|
end
|
|
3431
3528
|
|
|
@@ -3497,6 +3594,7 @@ module Aws::ECS
|
|
|
3497
3594
|
class DeploymentConfiguration < Struct.new(
|
|
3498
3595
|
:maximum_percent,
|
|
3499
3596
|
:minimum_healthy_percent)
|
|
3597
|
+
SENSITIVE = []
|
|
3500
3598
|
include Aws::Structure
|
|
3501
3599
|
end
|
|
3502
3600
|
|
|
@@ -3547,6 +3645,7 @@ module Aws::ECS
|
|
|
3547
3645
|
#
|
|
3548
3646
|
class DeploymentController < Struct.new(
|
|
3549
3647
|
:type)
|
|
3648
|
+
SENSITIVE = []
|
|
3550
3649
|
include Aws::Structure
|
|
3551
3650
|
end
|
|
3552
3651
|
|
|
@@ -3596,6 +3695,7 @@ module Aws::ECS
|
|
|
3596
3695
|
:cluster,
|
|
3597
3696
|
:container_instance,
|
|
3598
3697
|
:force)
|
|
3698
|
+
SENSITIVE = []
|
|
3599
3699
|
include Aws::Structure
|
|
3600
3700
|
end
|
|
3601
3701
|
|
|
@@ -3607,6 +3707,7 @@ module Aws::ECS
|
|
|
3607
3707
|
#
|
|
3608
3708
|
class DeregisterContainerInstanceResponse < Struct.new(
|
|
3609
3709
|
:container_instance)
|
|
3710
|
+
SENSITIVE = []
|
|
3610
3711
|
include Aws::Structure
|
|
3611
3712
|
end
|
|
3612
3713
|
|
|
@@ -3627,6 +3728,7 @@ module Aws::ECS
|
|
|
3627
3728
|
#
|
|
3628
3729
|
class DeregisterTaskDefinitionRequest < Struct.new(
|
|
3629
3730
|
:task_definition)
|
|
3731
|
+
SENSITIVE = []
|
|
3630
3732
|
include Aws::Structure
|
|
3631
3733
|
end
|
|
3632
3734
|
|
|
@@ -3638,6 +3740,7 @@ module Aws::ECS
|
|
|
3638
3740
|
#
|
|
3639
3741
|
class DeregisterTaskDefinitionResponse < Struct.new(
|
|
3640
3742
|
:task_definition)
|
|
3743
|
+
SENSITIVE = []
|
|
3641
3744
|
include Aws::Structure
|
|
3642
3745
|
end
|
|
3643
3746
|
|
|
@@ -3697,6 +3800,7 @@ module Aws::ECS
|
|
|
3697
3800
|
:include,
|
|
3698
3801
|
:max_results,
|
|
3699
3802
|
:next_token)
|
|
3803
|
+
SENSITIVE = []
|
|
3700
3804
|
include Aws::Structure
|
|
3701
3805
|
end
|
|
3702
3806
|
|
|
@@ -3722,6 +3826,7 @@ module Aws::ECS
|
|
|
3722
3826
|
:capacity_providers,
|
|
3723
3827
|
:failures,
|
|
3724
3828
|
:next_token)
|
|
3829
|
+
SENSITIVE = []
|
|
3725
3830
|
include Aws::Structure
|
|
3726
3831
|
end
|
|
3727
3832
|
|
|
@@ -3778,6 +3883,7 @@ module Aws::ECS
|
|
|
3778
3883
|
class DescribeClustersRequest < Struct.new(
|
|
3779
3884
|
:clusters,
|
|
3780
3885
|
:include)
|
|
3886
|
+
SENSITIVE = []
|
|
3781
3887
|
include Aws::Structure
|
|
3782
3888
|
end
|
|
3783
3889
|
|
|
@@ -3794,6 +3900,7 @@ module Aws::ECS
|
|
|
3794
3900
|
class DescribeClustersResponse < Struct.new(
|
|
3795
3901
|
:clusters,
|
|
3796
3902
|
:failures)
|
|
3903
|
+
SENSITIVE = []
|
|
3797
3904
|
include Aws::Structure
|
|
3798
3905
|
end
|
|
3799
3906
|
|
|
@@ -3833,6 +3940,7 @@ module Aws::ECS
|
|
|
3833
3940
|
:cluster,
|
|
3834
3941
|
:container_instances,
|
|
3835
3942
|
:include)
|
|
3943
|
+
SENSITIVE = []
|
|
3836
3944
|
include Aws::Structure
|
|
3837
3945
|
end
|
|
3838
3946
|
|
|
@@ -3849,6 +3957,7 @@ module Aws::ECS
|
|
|
3849
3957
|
class DescribeContainerInstancesResponse < Struct.new(
|
|
3850
3958
|
:container_instances,
|
|
3851
3959
|
:failures)
|
|
3960
|
+
SENSITIVE = []
|
|
3852
3961
|
include Aws::Structure
|
|
3853
3962
|
end
|
|
3854
3963
|
|
|
@@ -3886,6 +3995,7 @@ module Aws::ECS
|
|
|
3886
3995
|
:cluster,
|
|
3887
3996
|
:services,
|
|
3888
3997
|
:include)
|
|
3998
|
+
SENSITIVE = []
|
|
3889
3999
|
include Aws::Structure
|
|
3890
4000
|
end
|
|
3891
4001
|
|
|
@@ -3902,6 +4012,7 @@ module Aws::ECS
|
|
|
3902
4012
|
class DescribeServicesResponse < Struct.new(
|
|
3903
4013
|
:services,
|
|
3904
4014
|
:failures)
|
|
4015
|
+
SENSITIVE = []
|
|
3905
4016
|
include Aws::Structure
|
|
3906
4017
|
end
|
|
3907
4018
|
|
|
@@ -3931,6 +4042,7 @@ module Aws::ECS
|
|
|
3931
4042
|
class DescribeTaskDefinitionRequest < Struct.new(
|
|
3932
4043
|
:task_definition,
|
|
3933
4044
|
:include)
|
|
4045
|
+
SENSITIVE = []
|
|
3934
4046
|
include Aws::Structure
|
|
3935
4047
|
end
|
|
3936
4048
|
|
|
@@ -3974,6 +4086,7 @@ module Aws::ECS
|
|
|
3974
4086
|
class DescribeTaskDefinitionResponse < Struct.new(
|
|
3975
4087
|
:task_definition,
|
|
3976
4088
|
:tags)
|
|
4089
|
+
SENSITIVE = []
|
|
3977
4090
|
include Aws::Structure
|
|
3978
4091
|
end
|
|
3979
4092
|
|
|
@@ -4014,6 +4127,7 @@ module Aws::ECS
|
|
|
4014
4127
|
:service,
|
|
4015
4128
|
:task_sets,
|
|
4016
4129
|
:include)
|
|
4130
|
+
SENSITIVE = []
|
|
4017
4131
|
include Aws::Structure
|
|
4018
4132
|
end
|
|
4019
4133
|
|
|
@@ -4030,6 +4144,7 @@ module Aws::ECS
|
|
|
4030
4144
|
class DescribeTaskSetsResponse < Struct.new(
|
|
4031
4145
|
:task_sets,
|
|
4032
4146
|
:failures)
|
|
4147
|
+
SENSITIVE = []
|
|
4033
4148
|
include Aws::Structure
|
|
4034
4149
|
end
|
|
4035
4150
|
|
|
@@ -4066,6 +4181,7 @@ module Aws::ECS
|
|
|
4066
4181
|
:cluster,
|
|
4067
4182
|
:tasks,
|
|
4068
4183
|
:include)
|
|
4184
|
+
SENSITIVE = []
|
|
4069
4185
|
include Aws::Structure
|
|
4070
4186
|
end
|
|
4071
4187
|
|
|
@@ -4082,6 +4198,7 @@ module Aws::ECS
|
|
|
4082
4198
|
class DescribeTasksResponse < Struct.new(
|
|
4083
4199
|
:tasks,
|
|
4084
4200
|
:failures)
|
|
4201
|
+
SENSITIVE = []
|
|
4085
4202
|
include Aws::Structure
|
|
4086
4203
|
end
|
|
4087
4204
|
|
|
@@ -4116,6 +4233,7 @@ module Aws::ECS
|
|
|
4116
4233
|
:host_path,
|
|
4117
4234
|
:container_path,
|
|
4118
4235
|
:permissions)
|
|
4236
|
+
SENSITIVE = []
|
|
4119
4237
|
include Aws::Structure
|
|
4120
4238
|
end
|
|
4121
4239
|
|
|
@@ -4146,6 +4264,7 @@ module Aws::ECS
|
|
|
4146
4264
|
class DiscoverPollEndpointRequest < Struct.new(
|
|
4147
4265
|
:container_instance,
|
|
4148
4266
|
:cluster)
|
|
4267
|
+
SENSITIVE = []
|
|
4149
4268
|
include Aws::Structure
|
|
4150
4269
|
end
|
|
4151
4270
|
|
|
@@ -4162,6 +4281,7 @@ module Aws::ECS
|
|
|
4162
4281
|
class DiscoverPollEndpointResponse < Struct.new(
|
|
4163
4282
|
:endpoint,
|
|
4164
4283
|
:telemetry_endpoint)
|
|
4284
|
+
SENSITIVE = []
|
|
4165
4285
|
include Aws::Structure
|
|
4166
4286
|
end
|
|
4167
4287
|
|
|
@@ -4255,6 +4375,7 @@ module Aws::ECS
|
|
|
4255
4375
|
:driver,
|
|
4256
4376
|
:driver_opts,
|
|
4257
4377
|
:labels)
|
|
4378
|
+
SENSITIVE = []
|
|
4258
4379
|
include Aws::Structure
|
|
4259
4380
|
end
|
|
4260
4381
|
|
|
@@ -4301,6 +4422,7 @@ module Aws::ECS
|
|
|
4301
4422
|
class EFSAuthorizationConfig < Struct.new(
|
|
4302
4423
|
:access_point_id,
|
|
4303
4424
|
:iam)
|
|
4425
|
+
SENSITIVE = []
|
|
4304
4426
|
include Aws::Structure
|
|
4305
4427
|
end
|
|
4306
4428
|
|
|
@@ -4376,6 +4498,7 @@ module Aws::ECS
|
|
|
4376
4498
|
:transit_encryption,
|
|
4377
4499
|
:transit_encryption_port,
|
|
4378
4500
|
:authorization_config)
|
|
4501
|
+
SENSITIVE = []
|
|
4379
4502
|
include Aws::Structure
|
|
4380
4503
|
end
|
|
4381
4504
|
|
|
@@ -4426,6 +4549,7 @@ module Aws::ECS
|
|
|
4426
4549
|
class EnvironmentFile < Struct.new(
|
|
4427
4550
|
:value,
|
|
4428
4551
|
:type)
|
|
4552
|
+
SENSITIVE = []
|
|
4429
4553
|
include Aws::Structure
|
|
4430
4554
|
end
|
|
4431
4555
|
|
|
@@ -4449,6 +4573,7 @@ module Aws::ECS
|
|
|
4449
4573
|
:arn,
|
|
4450
4574
|
:reason,
|
|
4451
4575
|
:detail)
|
|
4576
|
+
SENSITIVE = []
|
|
4452
4577
|
include Aws::Structure
|
|
4453
4578
|
end
|
|
4454
4579
|
|
|
@@ -4497,6 +4622,7 @@ module Aws::ECS
|
|
|
4497
4622
|
class FirelensConfiguration < Struct.new(
|
|
4498
4623
|
:type,
|
|
4499
4624
|
:options)
|
|
4625
|
+
SENSITIVE = []
|
|
4500
4626
|
include Aws::Structure
|
|
4501
4627
|
end
|
|
4502
4628
|
|
|
@@ -4624,6 +4750,7 @@ module Aws::ECS
|
|
|
4624
4750
|
:timeout,
|
|
4625
4751
|
:retries,
|
|
4626
4752
|
:start_period)
|
|
4753
|
+
SENSITIVE = []
|
|
4627
4754
|
include Aws::Structure
|
|
4628
4755
|
end
|
|
4629
4756
|
|
|
@@ -4652,6 +4779,7 @@ module Aws::ECS
|
|
|
4652
4779
|
class HostEntry < Struct.new(
|
|
4653
4780
|
:hostname,
|
|
4654
4781
|
:ip_address)
|
|
4782
|
+
SENSITIVE = []
|
|
4655
4783
|
include Aws::Structure
|
|
4656
4784
|
end
|
|
4657
4785
|
|
|
@@ -4683,6 +4811,7 @@ module Aws::ECS
|
|
|
4683
4811
|
#
|
|
4684
4812
|
class HostVolumeProperties < Struct.new(
|
|
4685
4813
|
:source_path)
|
|
4814
|
+
SENSITIVE = []
|
|
4686
4815
|
include Aws::Structure
|
|
4687
4816
|
end
|
|
4688
4817
|
|
|
@@ -4717,6 +4846,7 @@ module Aws::ECS
|
|
|
4717
4846
|
class InferenceAccelerator < Struct.new(
|
|
4718
4847
|
:device_name,
|
|
4719
4848
|
:device_type)
|
|
4849
|
+
SENSITIVE = []
|
|
4720
4850
|
include Aws::Structure
|
|
4721
4851
|
end
|
|
4722
4852
|
|
|
@@ -4753,6 +4883,7 @@ module Aws::ECS
|
|
|
4753
4883
|
class InferenceAcceleratorOverride < Struct.new(
|
|
4754
4884
|
:device_name,
|
|
4755
4885
|
:device_type)
|
|
4886
|
+
SENSITIVE = []
|
|
4756
4887
|
include Aws::Structure
|
|
4757
4888
|
end
|
|
4758
4889
|
|
|
@@ -4840,6 +4971,7 @@ module Aws::ECS
|
|
|
4840
4971
|
class KernelCapabilities < Struct.new(
|
|
4841
4972
|
:add,
|
|
4842
4973
|
:drop)
|
|
4974
|
+
SENSITIVE = []
|
|
4843
4975
|
include Aws::Structure
|
|
4844
4976
|
end
|
|
4845
4977
|
|
|
@@ -4868,6 +5000,7 @@ module Aws::ECS
|
|
|
4868
5000
|
class KeyValuePair < Struct.new(
|
|
4869
5001
|
:name,
|
|
4870
5002
|
:value)
|
|
5003
|
+
SENSITIVE = []
|
|
4871
5004
|
include Aws::Structure
|
|
4872
5005
|
end
|
|
4873
5006
|
|
|
@@ -5033,6 +5166,7 @@ module Aws::ECS
|
|
|
5033
5166
|
:tmpfs,
|
|
5034
5167
|
:max_swap,
|
|
5035
5168
|
:swappiness)
|
|
5169
|
+
SENSITIVE = []
|
|
5036
5170
|
include Aws::Structure
|
|
5037
5171
|
end
|
|
5038
5172
|
|
|
@@ -5049,7 +5183,7 @@ module Aws::ECS
|
|
|
5049
5183
|
# }
|
|
5050
5184
|
#
|
|
5051
5185
|
# @!attribute [rw] name
|
|
5052
|
-
# The
|
|
5186
|
+
# The name of the account setting you want to list the settings for.
|
|
5053
5187
|
# @return [String]
|
|
5054
5188
|
#
|
|
5055
5189
|
# @!attribute [rw] value
|
|
@@ -5105,6 +5239,7 @@ module Aws::ECS
|
|
|
5105
5239
|
:effective_settings,
|
|
5106
5240
|
:next_token,
|
|
5107
5241
|
:max_results)
|
|
5242
|
+
SENSITIVE = []
|
|
5108
5243
|
include Aws::Structure
|
|
5109
5244
|
end
|
|
5110
5245
|
|
|
@@ -5125,6 +5260,7 @@ module Aws::ECS
|
|
|
5125
5260
|
class ListAccountSettingsResponse < Struct.new(
|
|
5126
5261
|
:settings,
|
|
5127
5262
|
:next_token)
|
|
5263
|
+
SENSITIVE = []
|
|
5128
5264
|
include Aws::Structure
|
|
5129
5265
|
end
|
|
5130
5266
|
|
|
@@ -5192,6 +5328,7 @@ module Aws::ECS
|
|
|
5192
5328
|
:attribute_value,
|
|
5193
5329
|
:next_token,
|
|
5194
5330
|
:max_results)
|
|
5331
|
+
SENSITIVE = []
|
|
5195
5332
|
include Aws::Structure
|
|
5196
5333
|
end
|
|
5197
5334
|
|
|
@@ -5212,6 +5349,7 @@ module Aws::ECS
|
|
|
5212
5349
|
class ListAttributesResponse < Struct.new(
|
|
5213
5350
|
:attributes,
|
|
5214
5351
|
:next_token)
|
|
5352
|
+
SENSITIVE = []
|
|
5215
5353
|
include Aws::Structure
|
|
5216
5354
|
end
|
|
5217
5355
|
|
|
@@ -5252,6 +5390,7 @@ module Aws::ECS
|
|
|
5252
5390
|
class ListClustersRequest < Struct.new(
|
|
5253
5391
|
:next_token,
|
|
5254
5392
|
:max_results)
|
|
5393
|
+
SENSITIVE = []
|
|
5255
5394
|
include Aws::Structure
|
|
5256
5395
|
end
|
|
5257
5396
|
|
|
@@ -5272,6 +5411,7 @@ module Aws::ECS
|
|
|
5272
5411
|
class ListClustersResponse < Struct.new(
|
|
5273
5412
|
:cluster_arns,
|
|
5274
5413
|
:next_token)
|
|
5414
|
+
SENSITIVE = []
|
|
5275
5415
|
include Aws::Structure
|
|
5276
5416
|
end
|
|
5277
5417
|
|
|
@@ -5346,6 +5486,7 @@ module Aws::ECS
|
|
|
5346
5486
|
:next_token,
|
|
5347
5487
|
:max_results,
|
|
5348
5488
|
:status)
|
|
5489
|
+
SENSITIVE = []
|
|
5349
5490
|
include Aws::Structure
|
|
5350
5491
|
end
|
|
5351
5492
|
|
|
@@ -5367,6 +5508,7 @@ module Aws::ECS
|
|
|
5367
5508
|
class ListContainerInstancesResponse < Struct.new(
|
|
5368
5509
|
:container_instance_arns,
|
|
5369
5510
|
:next_token)
|
|
5511
|
+
SENSITIVE = []
|
|
5370
5512
|
include Aws::Structure
|
|
5371
5513
|
end
|
|
5372
5514
|
|
|
@@ -5427,6 +5569,7 @@ module Aws::ECS
|
|
|
5427
5569
|
:max_results,
|
|
5428
5570
|
:launch_type,
|
|
5429
5571
|
:scheduling_strategy)
|
|
5572
|
+
SENSITIVE = []
|
|
5430
5573
|
include Aws::Structure
|
|
5431
5574
|
end
|
|
5432
5575
|
|
|
@@ -5447,6 +5590,7 @@ module Aws::ECS
|
|
|
5447
5590
|
class ListServicesResponse < Struct.new(
|
|
5448
5591
|
:service_arns,
|
|
5449
5592
|
:next_token)
|
|
5593
|
+
SENSITIVE = []
|
|
5450
5594
|
include Aws::Structure
|
|
5451
5595
|
end
|
|
5452
5596
|
|
|
@@ -5468,6 +5612,7 @@ module Aws::ECS
|
|
|
5468
5612
|
#
|
|
5469
5613
|
class ListTagsForResourceRequest < Struct.new(
|
|
5470
5614
|
:resource_arn)
|
|
5615
|
+
SENSITIVE = []
|
|
5471
5616
|
include Aws::Structure
|
|
5472
5617
|
end
|
|
5473
5618
|
|
|
@@ -5479,6 +5624,7 @@ module Aws::ECS
|
|
|
5479
5624
|
#
|
|
5480
5625
|
class ListTagsForResourceResponse < Struct.new(
|
|
5481
5626
|
:tags)
|
|
5627
|
+
SENSITIVE = []
|
|
5482
5628
|
include Aws::Structure
|
|
5483
5629
|
end
|
|
5484
5630
|
|
|
@@ -5544,6 +5690,7 @@ module Aws::ECS
|
|
|
5544
5690
|
:status,
|
|
5545
5691
|
:next_token,
|
|
5546
5692
|
:max_results)
|
|
5693
|
+
SENSITIVE = []
|
|
5547
5694
|
include Aws::Structure
|
|
5548
5695
|
end
|
|
5549
5696
|
|
|
@@ -5565,6 +5712,7 @@ module Aws::ECS
|
|
|
5565
5712
|
class ListTaskDefinitionFamiliesResponse < Struct.new(
|
|
5566
5713
|
:families,
|
|
5567
5714
|
:next_token)
|
|
5715
|
+
SENSITIVE = []
|
|
5568
5716
|
include Aws::Structure
|
|
5569
5717
|
end
|
|
5570
5718
|
|
|
@@ -5638,6 +5786,7 @@ module Aws::ECS
|
|
|
5638
5786
|
:sort,
|
|
5639
5787
|
:next_token,
|
|
5640
5788
|
:max_results)
|
|
5789
|
+
SENSITIVE = []
|
|
5641
5790
|
include Aws::Structure
|
|
5642
5791
|
end
|
|
5643
5792
|
|
|
@@ -5659,6 +5808,7 @@ module Aws::ECS
|
|
|
5659
5808
|
class ListTaskDefinitionsResponse < Struct.new(
|
|
5660
5809
|
:task_definition_arns,
|
|
5661
5810
|
:next_token)
|
|
5811
|
+
SENSITIVE = []
|
|
5662
5812
|
include Aws::Structure
|
|
5663
5813
|
end
|
|
5664
5814
|
|
|
@@ -5765,6 +5915,7 @@ module Aws::ECS
|
|
|
5765
5915
|
:service_name,
|
|
5766
5916
|
:desired_status,
|
|
5767
5917
|
:launch_type)
|
|
5918
|
+
SENSITIVE = []
|
|
5768
5919
|
include Aws::Structure
|
|
5769
5920
|
end
|
|
5770
5921
|
|
|
@@ -5784,6 +5935,7 @@ module Aws::ECS
|
|
|
5784
5935
|
class ListTasksResponse < Struct.new(
|
|
5785
5936
|
:task_arns,
|
|
5786
5937
|
:next_token)
|
|
5938
|
+
SENSITIVE = []
|
|
5787
5939
|
include Aws::Structure
|
|
5788
5940
|
end
|
|
5789
5941
|
|
|
@@ -5863,6 +6015,7 @@ module Aws::ECS
|
|
|
5863
6015
|
:load_balancer_name,
|
|
5864
6016
|
:container_name,
|
|
5865
6017
|
:container_port)
|
|
6018
|
+
SENSITIVE = []
|
|
5866
6019
|
include Aws::Structure
|
|
5867
6020
|
end
|
|
5868
6021
|
|
|
@@ -5990,6 +6143,7 @@ module Aws::ECS
|
|
|
5990
6143
|
:log_driver,
|
|
5991
6144
|
:options,
|
|
5992
6145
|
:secret_options)
|
|
6146
|
+
SENSITIVE = []
|
|
5993
6147
|
include Aws::Structure
|
|
5994
6148
|
end
|
|
5995
6149
|
|
|
@@ -6050,6 +6204,7 @@ module Aws::ECS
|
|
|
6050
6204
|
:target_capacity,
|
|
6051
6205
|
:minimum_scaling_step_size,
|
|
6052
6206
|
:maximum_scaling_step_size)
|
|
6207
|
+
SENSITIVE = []
|
|
6053
6208
|
include Aws::Structure
|
|
6054
6209
|
end
|
|
6055
6210
|
|
|
@@ -6096,6 +6251,7 @@ module Aws::ECS
|
|
|
6096
6251
|
:source_volume,
|
|
6097
6252
|
:container_path,
|
|
6098
6253
|
:read_only)
|
|
6254
|
+
SENSITIVE = []
|
|
6099
6255
|
include Aws::Structure
|
|
6100
6256
|
end
|
|
6101
6257
|
|
|
@@ -6139,6 +6295,7 @@ module Aws::ECS
|
|
|
6139
6295
|
:container_port,
|
|
6140
6296
|
:host_port,
|
|
6141
6297
|
:protocol)
|
|
6298
|
+
SENSITIVE = []
|
|
6142
6299
|
include Aws::Structure
|
|
6143
6300
|
end
|
|
6144
6301
|
|
|
@@ -6168,6 +6325,7 @@ module Aws::ECS
|
|
|
6168
6325
|
#
|
|
6169
6326
|
class NetworkConfiguration < Struct.new(
|
|
6170
6327
|
:awsvpc_configuration)
|
|
6328
|
+
SENSITIVE = []
|
|
6171
6329
|
include Aws::Structure
|
|
6172
6330
|
end
|
|
6173
6331
|
|
|
@@ -6192,6 +6350,7 @@ module Aws::ECS
|
|
|
6192
6350
|
:attachment_id,
|
|
6193
6351
|
:private_ipv_4_address,
|
|
6194
6352
|
:ipv6_address)
|
|
6353
|
+
SENSITIVE = []
|
|
6195
6354
|
include Aws::Structure
|
|
6196
6355
|
end
|
|
6197
6356
|
|
|
@@ -6248,6 +6407,7 @@ module Aws::ECS
|
|
|
6248
6407
|
class PlacementConstraint < Struct.new(
|
|
6249
6408
|
:type,
|
|
6250
6409
|
:expression)
|
|
6410
|
+
SENSITIVE = []
|
|
6251
6411
|
include Aws::Structure
|
|
6252
6412
|
end
|
|
6253
6413
|
|
|
@@ -6294,6 +6454,7 @@ module Aws::ECS
|
|
|
6294
6454
|
class PlacementStrategy < Struct.new(
|
|
6295
6455
|
:type,
|
|
6296
6456
|
:field)
|
|
6457
|
+
SENSITIVE = []
|
|
6297
6458
|
include Aws::Structure
|
|
6298
6459
|
end
|
|
6299
6460
|
|
|
@@ -6324,6 +6485,7 @@ module Aws::ECS
|
|
|
6324
6485
|
class PlatformDevice < Struct.new(
|
|
6325
6486
|
:id,
|
|
6326
6487
|
:type)
|
|
6488
|
+
SENSITIVE = []
|
|
6327
6489
|
include Aws::Structure
|
|
6328
6490
|
end
|
|
6329
6491
|
|
|
@@ -6432,6 +6594,7 @@ module Aws::ECS
|
|
|
6432
6594
|
:container_port,
|
|
6433
6595
|
:host_port,
|
|
6434
6596
|
:protocol)
|
|
6597
|
+
SENSITIVE = []
|
|
6435
6598
|
include Aws::Structure
|
|
6436
6599
|
end
|
|
6437
6600
|
|
|
@@ -6514,6 +6677,7 @@ module Aws::ECS
|
|
|
6514
6677
|
:type,
|
|
6515
6678
|
:container_name,
|
|
6516
6679
|
:properties)
|
|
6680
|
+
SENSITIVE = []
|
|
6517
6681
|
include Aws::Structure
|
|
6518
6682
|
end
|
|
6519
6683
|
|
|
@@ -6548,6 +6712,7 @@ module Aws::ECS
|
|
|
6548
6712
|
class PutAccountSettingDefaultRequest < Struct.new(
|
|
6549
6713
|
:name,
|
|
6550
6714
|
:value)
|
|
6715
|
+
SENSITIVE = []
|
|
6551
6716
|
include Aws::Structure
|
|
6552
6717
|
end
|
|
6553
6718
|
|
|
@@ -6559,6 +6724,7 @@ module Aws::ECS
|
|
|
6559
6724
|
#
|
|
6560
6725
|
class PutAccountSettingDefaultResponse < Struct.new(
|
|
6561
6726
|
:setting)
|
|
6727
|
+
SENSITIVE = []
|
|
6562
6728
|
include Aws::Structure
|
|
6563
6729
|
end
|
|
6564
6730
|
|
|
@@ -6604,6 +6770,7 @@ module Aws::ECS
|
|
|
6604
6770
|
:name,
|
|
6605
6771
|
:value,
|
|
6606
6772
|
:principal_arn)
|
|
6773
|
+
SENSITIVE = []
|
|
6607
6774
|
include Aws::Structure
|
|
6608
6775
|
end
|
|
6609
6776
|
|
|
@@ -6615,6 +6782,7 @@ module Aws::ECS
|
|
|
6615
6782
|
#
|
|
6616
6783
|
class PutAccountSettingResponse < Struct.new(
|
|
6617
6784
|
:setting)
|
|
6785
|
+
SENSITIVE = []
|
|
6618
6786
|
include Aws::Structure
|
|
6619
6787
|
end
|
|
6620
6788
|
|
|
@@ -6650,6 +6818,7 @@ module Aws::ECS
|
|
|
6650
6818
|
class PutAttributesRequest < Struct.new(
|
|
6651
6819
|
:cluster,
|
|
6652
6820
|
:attributes)
|
|
6821
|
+
SENSITIVE = []
|
|
6653
6822
|
include Aws::Structure
|
|
6654
6823
|
end
|
|
6655
6824
|
|
|
@@ -6661,6 +6830,7 @@ module Aws::ECS
|
|
|
6661
6830
|
#
|
|
6662
6831
|
class PutAttributesResponse < Struct.new(
|
|
6663
6832
|
:attributes)
|
|
6833
|
+
SENSITIVE = []
|
|
6664
6834
|
include Aws::Structure
|
|
6665
6835
|
end
|
|
6666
6836
|
|
|
@@ -6731,6 +6901,7 @@ module Aws::ECS
|
|
|
6731
6901
|
:cluster,
|
|
6732
6902
|
:capacity_providers,
|
|
6733
6903
|
:default_capacity_provider_strategy)
|
|
6904
|
+
SENSITIVE = []
|
|
6734
6905
|
include Aws::Structure
|
|
6735
6906
|
end
|
|
6736
6907
|
|
|
@@ -6746,6 +6917,7 @@ module Aws::ECS
|
|
|
6746
6917
|
#
|
|
6747
6918
|
class PutClusterCapacityProvidersResponse < Struct.new(
|
|
6748
6919
|
:cluster)
|
|
6920
|
+
SENSITIVE = []
|
|
6749
6921
|
include Aws::Structure
|
|
6750
6922
|
end
|
|
6751
6923
|
|
|
@@ -6880,6 +7052,7 @@ module Aws::ECS
|
|
|
6880
7052
|
:attributes,
|
|
6881
7053
|
:platform_devices,
|
|
6882
7054
|
:tags)
|
|
7055
|
+
SENSITIVE = []
|
|
6883
7056
|
include Aws::Structure
|
|
6884
7057
|
end
|
|
6885
7058
|
|
|
@@ -6891,6 +7064,7 @@ module Aws::ECS
|
|
|
6891
7064
|
#
|
|
6892
7065
|
class RegisterContainerInstanceResponse < Struct.new(
|
|
6893
7066
|
:container_instance)
|
|
7067
|
+
SENSITIVE = []
|
|
6894
7068
|
include Aws::Structure
|
|
6895
7069
|
end
|
|
6896
7070
|
|
|
@@ -7136,8 +7310,16 @@ module Aws::ECS
|
|
|
7136
7310
|
# @return [String]
|
|
7137
7311
|
#
|
|
7138
7312
|
# @!attribute [rw] execution_role_arn
|
|
7139
|
-
# The Amazon Resource Name (ARN) of the task execution role that
|
|
7140
|
-
# Amazon ECS container agent
|
|
7313
|
+
# The Amazon Resource Name (ARN) of the task execution role that
|
|
7314
|
+
# grants the Amazon ECS container agent permission to make AWS API
|
|
7315
|
+
# calls on your behalf. The task execution IAM role is required
|
|
7316
|
+
# depending on the requirements of your task. For more information,
|
|
7317
|
+
# see [Amazon ECS task execution IAM role][1] in the *Amazon Elastic
|
|
7318
|
+
# Container Service Developer Guide*.
|
|
7319
|
+
#
|
|
7320
|
+
#
|
|
7321
|
+
#
|
|
7322
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html
|
|
7141
7323
|
# @return [String]
|
|
7142
7324
|
#
|
|
7143
7325
|
# @!attribute [rw] network_mode
|
|
@@ -7426,6 +7608,7 @@ module Aws::ECS
|
|
|
7426
7608
|
:ipc_mode,
|
|
7427
7609
|
:proxy_configuration,
|
|
7428
7610
|
:inference_accelerators)
|
|
7611
|
+
SENSITIVE = []
|
|
7429
7612
|
include Aws::Structure
|
|
7430
7613
|
end
|
|
7431
7614
|
|
|
@@ -7442,6 +7625,7 @@ module Aws::ECS
|
|
|
7442
7625
|
class RegisterTaskDefinitionResponse < Struct.new(
|
|
7443
7626
|
:task_definition,
|
|
7444
7627
|
:tags)
|
|
7628
|
+
SENSITIVE = []
|
|
7445
7629
|
include Aws::Structure
|
|
7446
7630
|
end
|
|
7447
7631
|
|
|
@@ -7471,6 +7655,7 @@ module Aws::ECS
|
|
|
7471
7655
|
#
|
|
7472
7656
|
class RepositoryCredentials < Struct.new(
|
|
7473
7657
|
:credentials_parameter)
|
|
7658
|
+
SENSITIVE = []
|
|
7474
7659
|
include Aws::Structure
|
|
7475
7660
|
end
|
|
7476
7661
|
|
|
@@ -7527,6 +7712,7 @@ module Aws::ECS
|
|
|
7527
7712
|
:long_value,
|
|
7528
7713
|
:integer_value,
|
|
7529
7714
|
:string_set_value)
|
|
7715
|
+
SENSITIVE = []
|
|
7530
7716
|
include Aws::Structure
|
|
7531
7717
|
end
|
|
7532
7718
|
|
|
@@ -7585,6 +7771,7 @@ module Aws::ECS
|
|
|
7585
7771
|
class ResourceRequirement < Struct.new(
|
|
7586
7772
|
:value,
|
|
7587
7773
|
:type)
|
|
7774
|
+
SENSITIVE = []
|
|
7588
7775
|
include Aws::Structure
|
|
7589
7776
|
end
|
|
7590
7777
|
|
|
@@ -7881,6 +8068,7 @@ module Aws::ECS
|
|
|
7881
8068
|
:started_by,
|
|
7882
8069
|
:tags,
|
|
7883
8070
|
:task_definition)
|
|
8071
|
+
SENSITIVE = []
|
|
7884
8072
|
include Aws::Structure
|
|
7885
8073
|
end
|
|
7886
8074
|
|
|
@@ -7898,6 +8086,7 @@ module Aws::ECS
|
|
|
7898
8086
|
class RunTaskResponse < Struct.new(
|
|
7899
8087
|
:tasks,
|
|
7900
8088
|
:failures)
|
|
8089
|
+
SENSITIVE = []
|
|
7901
8090
|
include Aws::Structure
|
|
7902
8091
|
end
|
|
7903
8092
|
|
|
@@ -7927,6 +8116,7 @@ module Aws::ECS
|
|
|
7927
8116
|
class Scale < Struct.new(
|
|
7928
8117
|
:value,
|
|
7929
8118
|
:unit)
|
|
8119
|
+
SENSITIVE = []
|
|
7930
8120
|
include Aws::Structure
|
|
7931
8121
|
end
|
|
7932
8122
|
|
|
@@ -7976,6 +8166,7 @@ module Aws::ECS
|
|
|
7976
8166
|
class Secret < Struct.new(
|
|
7977
8167
|
:name,
|
|
7978
8168
|
:value_from)
|
|
8169
|
+
SENSITIVE = []
|
|
7979
8170
|
include Aws::Structure
|
|
7980
8171
|
end
|
|
7981
8172
|
|
|
@@ -7988,6 +8179,7 @@ module Aws::ECS
|
|
|
7988
8179
|
#
|
|
7989
8180
|
class ServerException < Struct.new(
|
|
7990
8181
|
:message)
|
|
8182
|
+
SENSITIVE = []
|
|
7991
8183
|
include Aws::Structure
|
|
7992
8184
|
end
|
|
7993
8185
|
|
|
@@ -8254,6 +8446,7 @@ module Aws::ECS
|
|
|
8254
8446
|
:created_by,
|
|
8255
8447
|
:enable_ecs_managed_tags,
|
|
8256
8448
|
:propagate_tags)
|
|
8449
|
+
SENSITIVE = []
|
|
8257
8450
|
include Aws::Structure
|
|
8258
8451
|
end
|
|
8259
8452
|
|
|
@@ -8277,6 +8470,7 @@ module Aws::ECS
|
|
|
8277
8470
|
:id,
|
|
8278
8471
|
:created_at,
|
|
8279
8472
|
:message)
|
|
8473
|
+
SENSITIVE = []
|
|
8280
8474
|
include Aws::Structure
|
|
8281
8475
|
end
|
|
8282
8476
|
|
|
@@ -8354,6 +8548,7 @@ module Aws::ECS
|
|
|
8354
8548
|
:port,
|
|
8355
8549
|
:container_name,
|
|
8356
8550
|
:container_port)
|
|
8551
|
+
SENSITIVE = []
|
|
8357
8552
|
include Aws::Structure
|
|
8358
8553
|
end
|
|
8359
8554
|
|
|
@@ -8380,6 +8575,7 @@ module Aws::ECS
|
|
|
8380
8575
|
:name,
|
|
8381
8576
|
:value,
|
|
8382
8577
|
:principal_arn)
|
|
8578
|
+
SENSITIVE = []
|
|
8383
8579
|
include Aws::Structure
|
|
8384
8580
|
end
|
|
8385
8581
|
|
|
@@ -8573,6 +8769,7 @@ module Aws::ECS
|
|
|
8573
8769
|
:started_by,
|
|
8574
8770
|
:tags,
|
|
8575
8771
|
:task_definition)
|
|
8772
|
+
SENSITIVE = []
|
|
8576
8773
|
include Aws::Structure
|
|
8577
8774
|
end
|
|
8578
8775
|
|
|
@@ -8590,6 +8787,7 @@ module Aws::ECS
|
|
|
8590
8787
|
class StartTaskResponse < Struct.new(
|
|
8591
8788
|
:tasks,
|
|
8592
8789
|
:failures)
|
|
8790
|
+
SENSITIVE = []
|
|
8593
8791
|
include Aws::Structure
|
|
8594
8792
|
end
|
|
8595
8793
|
|
|
@@ -8626,6 +8824,7 @@ module Aws::ECS
|
|
|
8626
8824
|
:cluster,
|
|
8627
8825
|
:task,
|
|
8628
8826
|
:reason)
|
|
8827
|
+
SENSITIVE = []
|
|
8629
8828
|
include Aws::Structure
|
|
8630
8829
|
end
|
|
8631
8830
|
|
|
@@ -8637,6 +8836,7 @@ module Aws::ECS
|
|
|
8637
8836
|
#
|
|
8638
8837
|
class StopTaskResponse < Struct.new(
|
|
8639
8838
|
:task)
|
|
8839
|
+
SENSITIVE = []
|
|
8640
8840
|
include Aws::Structure
|
|
8641
8841
|
end
|
|
8642
8842
|
|
|
@@ -8667,6 +8867,7 @@ module Aws::ECS
|
|
|
8667
8867
|
class SubmitAttachmentStateChangesRequest < Struct.new(
|
|
8668
8868
|
:cluster,
|
|
8669
8869
|
:attachments)
|
|
8870
|
+
SENSITIVE = []
|
|
8670
8871
|
include Aws::Structure
|
|
8671
8872
|
end
|
|
8672
8873
|
|
|
@@ -8678,6 +8879,7 @@ module Aws::ECS
|
|
|
8678
8879
|
#
|
|
8679
8880
|
class SubmitAttachmentStateChangesResponse < Struct.new(
|
|
8680
8881
|
:acknowledgment)
|
|
8882
|
+
SENSITIVE = []
|
|
8681
8883
|
include Aws::Structure
|
|
8682
8884
|
end
|
|
8683
8885
|
|
|
@@ -8746,6 +8948,7 @@ module Aws::ECS
|
|
|
8746
8948
|
:exit_code,
|
|
8747
8949
|
:reason,
|
|
8748
8950
|
:network_bindings)
|
|
8951
|
+
SENSITIVE = []
|
|
8749
8952
|
include Aws::Structure
|
|
8750
8953
|
end
|
|
8751
8954
|
|
|
@@ -8757,6 +8960,7 @@ module Aws::ECS
|
|
|
8757
8960
|
#
|
|
8758
8961
|
class SubmitContainerStateChangeResponse < Struct.new(
|
|
8759
8962
|
:acknowledgment)
|
|
8963
|
+
SENSITIVE = []
|
|
8760
8964
|
include Aws::Structure
|
|
8761
8965
|
end
|
|
8762
8966
|
|
|
@@ -8846,6 +9050,7 @@ module Aws::ECS
|
|
|
8846
9050
|
:pull_started_at,
|
|
8847
9051
|
:pull_stopped_at,
|
|
8848
9052
|
:execution_stopped_at)
|
|
9053
|
+
SENSITIVE = []
|
|
8849
9054
|
include Aws::Structure
|
|
8850
9055
|
end
|
|
8851
9056
|
|
|
@@ -8857,6 +9062,7 @@ module Aws::ECS
|
|
|
8857
9062
|
#
|
|
8858
9063
|
class SubmitTaskStateChangeResponse < Struct.new(
|
|
8859
9064
|
:acknowledgment)
|
|
9065
|
+
SENSITIVE = []
|
|
8860
9066
|
include Aws::Structure
|
|
8861
9067
|
end
|
|
8862
9068
|
|
|
@@ -8909,6 +9115,7 @@ module Aws::ECS
|
|
|
8909
9115
|
class SystemControl < Struct.new(
|
|
8910
9116
|
:namespace,
|
|
8911
9117
|
:value)
|
|
9118
|
+
SENSITIVE = []
|
|
8912
9119
|
include Aws::Structure
|
|
8913
9120
|
end
|
|
8914
9121
|
|
|
@@ -8965,6 +9172,7 @@ module Aws::ECS
|
|
|
8965
9172
|
class Tag < Struct.new(
|
|
8966
9173
|
:key,
|
|
8967
9174
|
:value)
|
|
9175
|
+
SENSITIVE = []
|
|
8968
9176
|
include Aws::Structure
|
|
8969
9177
|
end
|
|
8970
9178
|
|
|
@@ -9023,6 +9231,7 @@ module Aws::ECS
|
|
|
9023
9231
|
class TagResourceRequest < Struct.new(
|
|
9024
9232
|
:resource_arn,
|
|
9025
9233
|
:tags)
|
|
9234
|
+
SENSITIVE = []
|
|
9026
9235
|
include Aws::Structure
|
|
9027
9236
|
end
|
|
9028
9237
|
|
|
@@ -9343,6 +9552,7 @@ module Aws::ECS
|
|
|
9343
9552
|
:task_arn,
|
|
9344
9553
|
:task_definition_arn,
|
|
9345
9554
|
:version)
|
|
9555
|
+
SENSITIVE = []
|
|
9346
9556
|
include Aws::Structure
|
|
9347
9557
|
end
|
|
9348
9558
|
|
|
@@ -9401,8 +9611,15 @@ module Aws::ECS
|
|
|
9401
9611
|
#
|
|
9402
9612
|
# @!attribute [rw] execution_role_arn
|
|
9403
9613
|
# The Amazon Resource Name (ARN) of the task execution role that
|
|
9404
|
-
#
|
|
9405
|
-
#
|
|
9614
|
+
# grants the Amazon ECS container agent permission to make AWS API
|
|
9615
|
+
# calls on your behalf. The task execution IAM role is required
|
|
9616
|
+
# depending on the requirements of your task. For more information,
|
|
9617
|
+
# see [Amazon ECS task execution IAM role][1] in the *Amazon Elastic
|
|
9618
|
+
# Container Service Developer Guide*.
|
|
9619
|
+
#
|
|
9620
|
+
#
|
|
9621
|
+
#
|
|
9622
|
+
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html
|
|
9406
9623
|
# @return [String]
|
|
9407
9624
|
#
|
|
9408
9625
|
# @!attribute [rw] network_mode
|
|
@@ -9670,6 +9887,7 @@ module Aws::ECS
|
|
|
9670
9887
|
:pid_mode,
|
|
9671
9888
|
:ipc_mode,
|
|
9672
9889
|
:proxy_configuration)
|
|
9890
|
+
SENSITIVE = []
|
|
9673
9891
|
include Aws::Structure
|
|
9674
9892
|
end
|
|
9675
9893
|
|
|
@@ -9714,6 +9932,7 @@ module Aws::ECS
|
|
|
9714
9932
|
class TaskDefinitionPlacementConstraint < Struct.new(
|
|
9715
9933
|
:type,
|
|
9716
9934
|
:expression)
|
|
9935
|
+
SENSITIVE = []
|
|
9717
9936
|
include Aws::Structure
|
|
9718
9937
|
end
|
|
9719
9938
|
|
|
@@ -9775,8 +9994,8 @@ module Aws::ECS
|
|
|
9775
9994
|
# @return [Array<Types::InferenceAcceleratorOverride>]
|
|
9776
9995
|
#
|
|
9777
9996
|
# @!attribute [rw] execution_role_arn
|
|
9778
|
-
# The Amazon Resource Name (ARN) of the task execution role
|
|
9779
|
-
#
|
|
9997
|
+
# The Amazon Resource Name (ARN) of the task execution IAM role
|
|
9998
|
+
# override for the task.
|
|
9780
9999
|
# @return [String]
|
|
9781
10000
|
#
|
|
9782
10001
|
# @!attribute [rw] memory
|
|
@@ -9798,6 +10017,7 @@ module Aws::ECS
|
|
|
9798
10017
|
:execution_role_arn,
|
|
9799
10018
|
:memory,
|
|
9800
10019
|
:task_role_arn)
|
|
10020
|
+
SENSITIVE = []
|
|
9801
10021
|
include Aws::Structure
|
|
9802
10022
|
end
|
|
9803
10023
|
|
|
@@ -10024,6 +10244,7 @@ module Aws::ECS
|
|
|
10024
10244
|
:stability_status,
|
|
10025
10245
|
:stability_status_at,
|
|
10026
10246
|
:tags)
|
|
10247
|
+
SENSITIVE = []
|
|
10027
10248
|
include Aws::Structure
|
|
10028
10249
|
end
|
|
10029
10250
|
|
|
@@ -10072,6 +10293,7 @@ module Aws::ECS
|
|
|
10072
10293
|
:container_path,
|
|
10073
10294
|
:size,
|
|
10074
10295
|
:mount_options)
|
|
10296
|
+
SENSITIVE = []
|
|
10075
10297
|
include Aws::Structure
|
|
10076
10298
|
end
|
|
10077
10299
|
|
|
@@ -10104,6 +10326,7 @@ module Aws::ECS
|
|
|
10104
10326
|
:name,
|
|
10105
10327
|
:soft_limit,
|
|
10106
10328
|
:hard_limit)
|
|
10329
|
+
SENSITIVE = []
|
|
10107
10330
|
include Aws::Structure
|
|
10108
10331
|
end
|
|
10109
10332
|
|
|
@@ -10137,6 +10360,7 @@ module Aws::ECS
|
|
|
10137
10360
|
class UntagResourceRequest < Struct.new(
|
|
10138
10361
|
:resource_arn,
|
|
10139
10362
|
:tag_keys)
|
|
10363
|
+
SENSITIVE = []
|
|
10140
10364
|
include Aws::Structure
|
|
10141
10365
|
end
|
|
10142
10366
|
|
|
@@ -10173,6 +10397,7 @@ module Aws::ECS
|
|
|
10173
10397
|
class UpdateClusterSettingsRequest < Struct.new(
|
|
10174
10398
|
:cluster,
|
|
10175
10399
|
:settings)
|
|
10400
|
+
SENSITIVE = []
|
|
10176
10401
|
include Aws::Structure
|
|
10177
10402
|
end
|
|
10178
10403
|
|
|
@@ -10188,6 +10413,7 @@ module Aws::ECS
|
|
|
10188
10413
|
#
|
|
10189
10414
|
class UpdateClusterSettingsResponse < Struct.new(
|
|
10190
10415
|
:cluster)
|
|
10416
|
+
SENSITIVE = []
|
|
10191
10417
|
include Aws::Structure
|
|
10192
10418
|
end
|
|
10193
10419
|
|
|
@@ -10216,6 +10442,7 @@ module Aws::ECS
|
|
|
10216
10442
|
class UpdateContainerAgentRequest < Struct.new(
|
|
10217
10443
|
:cluster,
|
|
10218
10444
|
:container_instance)
|
|
10445
|
+
SENSITIVE = []
|
|
10219
10446
|
include Aws::Structure
|
|
10220
10447
|
end
|
|
10221
10448
|
|
|
@@ -10227,6 +10454,7 @@ module Aws::ECS
|
|
|
10227
10454
|
#
|
|
10228
10455
|
class UpdateContainerAgentResponse < Struct.new(
|
|
10229
10456
|
:container_instance)
|
|
10457
|
+
SENSITIVE = []
|
|
10230
10458
|
include Aws::Structure
|
|
10231
10459
|
end
|
|
10232
10460
|
|
|
@@ -10265,6 +10493,7 @@ module Aws::ECS
|
|
|
10265
10493
|
:cluster,
|
|
10266
10494
|
:container_instances,
|
|
10267
10495
|
:status)
|
|
10496
|
+
SENSITIVE = []
|
|
10268
10497
|
include Aws::Structure
|
|
10269
10498
|
end
|
|
10270
10499
|
|
|
@@ -10281,6 +10510,7 @@ module Aws::ECS
|
|
|
10281
10510
|
class UpdateContainerInstancesStateResponse < Struct.new(
|
|
10282
10511
|
:container_instances,
|
|
10283
10512
|
:failures)
|
|
10513
|
+
SENSITIVE = []
|
|
10284
10514
|
include Aws::Structure
|
|
10285
10515
|
end
|
|
10286
10516
|
|
|
@@ -10325,6 +10555,7 @@ module Aws::ECS
|
|
|
10325
10555
|
:cluster,
|
|
10326
10556
|
:service,
|
|
10327
10557
|
:primary_task_set)
|
|
10558
|
+
SENSITIVE = []
|
|
10328
10559
|
include Aws::Structure
|
|
10329
10560
|
end
|
|
10330
10561
|
|
|
@@ -10339,6 +10570,7 @@ module Aws::ECS
|
|
|
10339
10570
|
#
|
|
10340
10571
|
class UpdateServicePrimaryTaskSetResponse < Struct.new(
|
|
10341
10572
|
:task_set)
|
|
10573
|
+
SENSITIVE = []
|
|
10342
10574
|
include Aws::Structure
|
|
10343
10575
|
end
|
|
10344
10576
|
|
|
@@ -10526,6 +10758,7 @@ module Aws::ECS
|
|
|
10526
10758
|
:platform_version,
|
|
10527
10759
|
:force_new_deployment,
|
|
10528
10760
|
:health_check_grace_period_seconds)
|
|
10761
|
+
SENSITIVE = []
|
|
10529
10762
|
include Aws::Structure
|
|
10530
10763
|
end
|
|
10531
10764
|
|
|
@@ -10537,6 +10770,7 @@ module Aws::ECS
|
|
|
10537
10770
|
#
|
|
10538
10771
|
class UpdateServiceResponse < Struct.new(
|
|
10539
10772
|
:service)
|
|
10773
|
+
SENSITIVE = []
|
|
10540
10774
|
include Aws::Structure
|
|
10541
10775
|
end
|
|
10542
10776
|
|
|
@@ -10580,6 +10814,7 @@ module Aws::ECS
|
|
|
10580
10814
|
:service,
|
|
10581
10815
|
:task_set,
|
|
10582
10816
|
:scale)
|
|
10817
|
+
SENSITIVE = []
|
|
10583
10818
|
include Aws::Structure
|
|
10584
10819
|
end
|
|
10585
10820
|
|
|
@@ -10594,6 +10829,7 @@ module Aws::ECS
|
|
|
10594
10829
|
#
|
|
10595
10830
|
class UpdateTaskSetResponse < Struct.new(
|
|
10596
10831
|
:task_set)
|
|
10832
|
+
SENSITIVE = []
|
|
10597
10833
|
include Aws::Structure
|
|
10598
10834
|
end
|
|
10599
10835
|
|
|
@@ -10632,13 +10868,16 @@ module Aws::ECS
|
|
|
10632
10868
|
:agent_version,
|
|
10633
10869
|
:agent_hash,
|
|
10634
10870
|
:docker_version)
|
|
10871
|
+
SENSITIVE = []
|
|
10635
10872
|
include Aws::Structure
|
|
10636
10873
|
end
|
|
10637
10874
|
|
|
10638
|
-
# A data volume used in a task definition. For tasks that use
|
|
10639
|
-
#
|
|
10640
|
-
#
|
|
10641
|
-
# For
|
|
10875
|
+
# A data volume used in a task definition. For tasks that use Amazon
|
|
10876
|
+
# Elastic File System (Amazon EFS) file storage, specify an
|
|
10877
|
+
# `efsVolumeConfiguration`. For tasks that use a Docker volume, specify
|
|
10878
|
+
# a `DockerVolumeConfiguration`. For tasks that use a bind mount host
|
|
10879
|
+
# volume, specify a `host` and optional `sourcePath`. For more
|
|
10880
|
+
# information, see [Using Data Volumes in Tasks][1].
|
|
10642
10881
|
#
|
|
10643
10882
|
#
|
|
10644
10883
|
#
|
|
@@ -10683,13 +10922,12 @@ module Aws::ECS
|
|
|
10683
10922
|
#
|
|
10684
10923
|
# @!attribute [rw] host
|
|
10685
10924
|
# This parameter is specified when you are using bind mount host
|
|
10686
|
-
# volumes.
|
|
10687
|
-
#
|
|
10688
|
-
#
|
|
10689
|
-
#
|
|
10690
|
-
#
|
|
10691
|
-
#
|
|
10692
|
-
# after the containers associated with it stop running.
|
|
10925
|
+
# volumes. The contents of the `host` parameter determine whether your
|
|
10926
|
+
# bind mount host volume persists on the host container instance and
|
|
10927
|
+
# where it is stored. If the `host` parameter is empty, then the
|
|
10928
|
+
# Docker daemon assigns a host path for your data volume. However, the
|
|
10929
|
+
# data is not guaranteed to persist after the containers associated
|
|
10930
|
+
# with it stop running.
|
|
10693
10931
|
#
|
|
10694
10932
|
# Windows containers can mount whole directories on the same drive as
|
|
10695
10933
|
# `$env:ProgramData`. Windows containers cannot mount directories on a
|
|
@@ -10707,18 +10945,7 @@ module Aws::ECS
|
|
|
10707
10945
|
#
|
|
10708
10946
|
# @!attribute [rw] efs_volume_configuration
|
|
10709
10947
|
# This parameter is specified when you are using an Amazon Elastic
|
|
10710
|
-
# File System
|
|
10711
|
-
# only supported when you are using the EC2 launch type.
|
|
10712
|
-
#
|
|
10713
|
-
# `EFSVolumeConfiguration` remains in preview and is a Beta Service as
|
|
10714
|
-
# defined by and subject to the Beta Service Participation Service
|
|
10715
|
-
# Terms located at [https://aws.amazon.com/service-terms][1] ("Beta
|
|
10716
|
-
# Terms"). These Beta Terms apply to your participation in this
|
|
10717
|
-
# preview of `EFSVolumeConfiguration`.
|
|
10718
|
-
#
|
|
10719
|
-
#
|
|
10720
|
-
#
|
|
10721
|
-
# [1]: https://aws.amazon.com/service-terms
|
|
10948
|
+
# File System file system for task storage.
|
|
10722
10949
|
# @return [Types::EFSVolumeConfiguration]
|
|
10723
10950
|
#
|
|
10724
10951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Volume AWS API Documentation
|
|
@@ -10728,6 +10955,7 @@ module Aws::ECS
|
|
|
10728
10955
|
:host,
|
|
10729
10956
|
:docker_volume_configuration,
|
|
10730
10957
|
:efs_volume_configuration)
|
|
10958
|
+
SENSITIVE = []
|
|
10731
10959
|
include Aws::Structure
|
|
10732
10960
|
end
|
|
10733
10961
|
|
|
@@ -10758,6 +10986,7 @@ module Aws::ECS
|
|
|
10758
10986
|
class VolumeFrom < Struct.new(
|
|
10759
10987
|
:source_container,
|
|
10760
10988
|
:read_only)
|
|
10989
|
+
SENSITIVE = []
|
|
10761
10990
|
include Aws::Structure
|
|
10762
10991
|
end
|
|
10763
10992
|
|