aws-sdk-ecs 1.220.0 → 1.221.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 +35 -27
- data/lib/aws-sdk-ecs/client_api.rb +147 -146
- data/lib/aws-sdk-ecs/types.rb +282 -31
- data/lib/aws-sdk-ecs/waiters.rb +20 -20
- data/lib/aws-sdk-ecs.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6f01f3f97ea4cd18a435956a913ffa4201ddb986ddc264b5856f6f7becdbee6
|
|
4
|
+
data.tar.gz: db64f82419811dfe4270e9fef9f5da72f08b907a9a855eb18363feb8e3705e45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce5fe8cfb8990e344bff86287ae140eb304eb96368cb3c21ac02f4ecdebd7bd6dc7bba32b247845d229e72afafc68c71faa216c1d09650587d4e13d72d80072b
|
|
7
|
+
data.tar.gz: 9fa3f271bcee0fd6aa589acaa1d3461c8aa781d2d16e01ee0cc9d37c9efc82c468c272ef4112583b3c9398454fad21ec7274809e9ea4ef4bde7c75c0caa57f91
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.221.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -5044,7 +5044,7 @@ module Aws::ECS
|
|
|
5044
5044
|
# requested_task_count: 0,
|
|
5045
5045
|
# running_task_count: 0,
|
|
5046
5046
|
# },
|
|
5047
|
-
# updated_at: Time.parse("2024-09-10T16:49:35.
|
|
5047
|
+
# updated_at: Time.parse("2024-09-10T16:49:35.57Z"),
|
|
5048
5048
|
# },
|
|
5049
5049
|
# ],
|
|
5050
5050
|
# }
|
|
@@ -5175,7 +5175,7 @@ module Aws::ECS
|
|
|
5175
5175
|
# service_revisions: [
|
|
5176
5176
|
# {
|
|
5177
5177
|
# cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/example",
|
|
5178
|
-
# created_at: Time.parse("2024-09-10T16:49:26.
|
|
5178
|
+
# created_at: Time.parse("2024-09-10T16:49:26.39Z"),
|
|
5179
5179
|
# launch_type: "FARGATE",
|
|
5180
5180
|
# network_configuration: {
|
|
5181
5181
|
# awsvpc_configuration: {
|
|
@@ -5437,7 +5437,7 @@ module Aws::ECS
|
|
|
5437
5437
|
# {
|
|
5438
5438
|
# created_at: Time.parse("2016-08-29T16:25:58.520Z"),
|
|
5439
5439
|
# id: "38c285e5-d335-4b68-8b15-e46dedc8e88d",
|
|
5440
|
-
# message: "(service ecs-simple-service) was unable to place a task because no container instance met all of its requirements. The closest matching (container-instance 3f4de1c5-ffdd-4954-af7e-75b4be0c8841) is already using a port required by your task. For more information, see the Troubleshooting section of the Amazon ECS Developer Guide.",
|
|
5440
|
+
# message: "(service ecs-simple-service) was unable to place a task because no container instance met all of its requirements. The closest matching (container-instance 3f4de1c5-ffdd-4954-af7e-75b4be0c8841) is already using a port required by your task. For more information, see the Troubleshooting section of the Amazon ECS Developer Guide.",
|
|
5441
5441
|
# },
|
|
5442
5442
|
# ],
|
|
5443
5443
|
# load_balancers: [
|
|
@@ -6340,12 +6340,13 @@ module Aws::ECS
|
|
|
6340
6340
|
req.send_request(options)
|
|
6341
6341
|
end
|
|
6342
6342
|
|
|
6343
|
-
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
6343
|
+
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
6344
|
+
# and it is not
|
|
6344
6345
|
# intended for use outside of the agent.
|
|
6345
6346
|
#
|
|
6346
6347
|
# </note>
|
|
6347
6348
|
#
|
|
6348
|
-
#
|
|
6349
|
+
# Returns an endpoint for the Amazon ECS agent to poll for updates.
|
|
6349
6350
|
#
|
|
6350
6351
|
# @option params [String] :container_instance
|
|
6351
6352
|
# The container instance ID or full ARN of the container instance. For
|
|
@@ -8642,12 +8643,13 @@ module Aws::ECS
|
|
|
8642
8643
|
req.send_request(options)
|
|
8643
8644
|
end
|
|
8644
8645
|
|
|
8645
|
-
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
8646
|
+
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
8647
|
+
# and it is not
|
|
8646
8648
|
# intended for use outside of the agent.
|
|
8647
8649
|
#
|
|
8648
8650
|
# </note>
|
|
8649
8651
|
#
|
|
8650
|
-
#
|
|
8652
|
+
# Registers an EC2 instance into the specified cluster. This instance
|
|
8651
8653
|
# becomes available to place containers on.
|
|
8652
8654
|
#
|
|
8653
8655
|
# @option params [String] :cluster
|
|
@@ -11005,12 +11007,13 @@ module Aws::ECS
|
|
|
11005
11007
|
req.send_request(options)
|
|
11006
11008
|
end
|
|
11007
11009
|
|
|
11008
|
-
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
11010
|
+
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
11011
|
+
# and it is not
|
|
11009
11012
|
# intended for use outside of the agent.
|
|
11010
11013
|
#
|
|
11011
11014
|
# </note>
|
|
11012
11015
|
#
|
|
11013
|
-
#
|
|
11016
|
+
# Sent to acknowledge that an attachment changed states.
|
|
11014
11017
|
#
|
|
11015
11018
|
# @option params [String] :cluster
|
|
11016
11019
|
# The short name or full ARN of the cluster that hosts the container
|
|
@@ -11048,12 +11051,13 @@ module Aws::ECS
|
|
|
11048
11051
|
req.send_request(options)
|
|
11049
11052
|
end
|
|
11050
11053
|
|
|
11051
|
-
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
11054
|
+
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
11055
|
+
# and it is not
|
|
11052
11056
|
# intended for use outside of the agent.
|
|
11053
11057
|
#
|
|
11054
11058
|
# </note>
|
|
11055
11059
|
#
|
|
11056
|
-
#
|
|
11060
|
+
# Sent to acknowledge that a container changed states.
|
|
11057
11061
|
#
|
|
11058
11062
|
# @option params [String] :cluster
|
|
11059
11063
|
# The short name or full ARN of the cluster that hosts the container.
|
|
@@ -11119,12 +11123,13 @@ module Aws::ECS
|
|
|
11119
11123
|
req.send_request(options)
|
|
11120
11124
|
end
|
|
11121
11125
|
|
|
11122
|
-
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
11126
|
+
# <note markdown="1"> This action is only used by the Amazon ECS agent,
|
|
11127
|
+
# and it is not
|
|
11123
11128
|
# intended for use outside of the agent.
|
|
11124
11129
|
#
|
|
11125
11130
|
# </note>
|
|
11126
11131
|
#
|
|
11127
|
-
#
|
|
11132
|
+
# Sent to acknowledge that a task changed states.
|
|
11128
11133
|
#
|
|
11129
11134
|
# @option params [String] :cluster
|
|
11130
11135
|
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
|
@@ -13002,42 +13007,44 @@ module Aws::ECS
|
|
|
13002
13007
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html
|
|
13003
13008
|
#
|
|
13004
13009
|
# @option params [Array<Types::LoadBalancer>] :load_balancers
|
|
13005
|
-
# <note markdown="1"> You must have a service-linked role when you
|
|
13010
|
+
# <note markdown="1"> You must have a service-linked role when you
|
|
13011
|
+
# update this property
|
|
13006
13012
|
#
|
|
13007
13013
|
# </note>
|
|
13008
13014
|
#
|
|
13009
|
-
#
|
|
13015
|
+
# A list of Elastic Load Balancing load balancer objects. It contains
|
|
13010
13016
|
# the load balancer name, the container name, and the container port to
|
|
13011
13017
|
# access from the load balancer. The container name is as it appears in
|
|
13012
13018
|
# a container definition.
|
|
13013
13019
|
#
|
|
13014
|
-
#
|
|
13020
|
+
# When you add, update, or remove a load balancer configuration, Amazon
|
|
13015
13021
|
# ECS starts new tasks with the updated Elastic Load Balancing
|
|
13016
13022
|
# configuration, and then stops the old tasks when the new tasks are
|
|
13017
13023
|
# running.
|
|
13018
13024
|
#
|
|
13019
|
-
#
|
|
13025
|
+
# For services that use rolling updates, you can add, update, or remove
|
|
13020
13026
|
# Elastic Load Balancing target groups. You can update from a single
|
|
13021
13027
|
# target group to multiple target groups and from multiple target groups
|
|
13022
13028
|
# to a single target group.
|
|
13023
13029
|
#
|
|
13024
|
-
#
|
|
13030
|
+
# For services that use blue/green deployments, you can update Elastic
|
|
13025
13031
|
# Load Balancing target groups by using ` CreateDeployment ` through
|
|
13026
13032
|
# CodeDeploy. Note that multiple target groups are not supported for
|
|
13027
13033
|
# blue/green deployments. For more information see [Register multiple
|
|
13028
13034
|
# target groups with a service][1] in the *Amazon Elastic Container
|
|
13029
13035
|
# Service Developer Guide*.
|
|
13030
13036
|
#
|
|
13031
|
-
#
|
|
13037
|
+
# For services that use the external deployment controller, you can
|
|
13038
|
+
# add,
|
|
13032
13039
|
# update, or remove load balancers by using [CreateTaskSet][2]. Note
|
|
13033
13040
|
# that multiple target groups are not supported for external
|
|
13034
13041
|
# deployments. For more information see [Register multiple target groups
|
|
13035
13042
|
# with a service][1] in the *Amazon Elastic Container Service Developer
|
|
13036
13043
|
# Guide*.
|
|
13037
13044
|
#
|
|
13038
|
-
#
|
|
13045
|
+
# You can remove existing `loadBalancers` by passing an empty list.
|
|
13039
13046
|
#
|
|
13040
|
-
#
|
|
13047
|
+
# This parameter triggers a new service deployment.
|
|
13041
13048
|
#
|
|
13042
13049
|
#
|
|
13043
13050
|
#
|
|
@@ -13056,24 +13063,25 @@ module Aws::ECS
|
|
|
13056
13063
|
# This parameter doesn't trigger a new service deployment.
|
|
13057
13064
|
#
|
|
13058
13065
|
# @option params [Array<Types::ServiceRegistry>] :service_registries
|
|
13059
|
-
# <note markdown="1"> You must have a service-linked role when you
|
|
13066
|
+
# <note markdown="1"> You must have a service-linked role when you
|
|
13067
|
+
# update this property.
|
|
13060
13068
|
#
|
|
13061
13069
|
# For more information about the role see the `CreateService` request
|
|
13062
13070
|
# parameter [ `role` ][1].
|
|
13063
13071
|
#
|
|
13064
13072
|
# </note>
|
|
13065
13073
|
#
|
|
13066
|
-
#
|
|
13074
|
+
# The details for the service discovery registries to assign to this
|
|
13067
13075
|
# service. For more information, see [Service Discovery][2].
|
|
13068
13076
|
#
|
|
13069
|
-
#
|
|
13077
|
+
# When you add, update, or remove the service registries configuration,
|
|
13070
13078
|
# Amazon ECS starts new tasks with the updated service registries
|
|
13071
13079
|
# configuration, and then stops the old tasks when the new tasks are
|
|
13072
13080
|
# running.
|
|
13073
13081
|
#
|
|
13074
|
-
#
|
|
13082
|
+
# You can remove existing `serviceRegistries` by passing an empty list.
|
|
13075
13083
|
#
|
|
13076
|
-
#
|
|
13084
|
+
# This parameter triggers a new service deployment.
|
|
13077
13085
|
#
|
|
13078
13086
|
#
|
|
13079
13087
|
#
|
|
@@ -14038,7 +14046,7 @@ module Aws::ECS
|
|
|
14038
14046
|
tracer: tracer
|
|
14039
14047
|
)
|
|
14040
14048
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
14041
|
-
context[:gem_version] = '1.
|
|
14049
|
+
context[:gem_version] = '1.221.0'
|
|
14042
14050
|
Seahorse::Client::Request.new(handlers, context)
|
|
14043
14051
|
end
|
|
14044
14052
|
|