aws-sdk-ecs 1.196.0 → 1.200.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +286 -69
- data/lib/aws-sdk-ecs/client_api.rb +55 -0
- data/lib/aws-sdk-ecs/types.rb +482 -40
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +63 -7
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +50 -0
- metadata +3 -3
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -95,7 +95,7 @@ module Aws::ECS
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::ECS
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::ECS
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::ECS
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::ECS
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -933,69 +943,111 @@ module Aws::ECS
|
|
933
943
|
# tasks. It also stops tasks that don't meet the placement
|
934
944
|
# constraints. When using this strategy, you don't need to specify a
|
935
945
|
# desired number of tasks, a task placement strategy, or use Service
|
936
|
-
# Auto Scaling policies. For more information, see [
|
937
|
-
#
|
946
|
+
# Auto Scaling policies. For more information, see [Amazon ECS
|
947
|
+
# services][4] in the *Amazon Elastic Container Service Developer
|
938
948
|
# Guide*.
|
939
949
|
#
|
940
|
-
#
|
941
|
-
#
|
942
|
-
#
|
943
|
-
#
|
944
|
-
#
|
945
|
-
#
|
946
|
-
#
|
947
|
-
#
|
948
|
-
#
|
949
|
-
#
|
950
|
-
#
|
951
|
-
#
|
952
|
-
#
|
953
|
-
#
|
954
|
-
#
|
955
|
-
#
|
956
|
-
#
|
957
|
-
#
|
958
|
-
#
|
959
|
-
#
|
960
|
-
#
|
961
|
-
#
|
962
|
-
#
|
963
|
-
#
|
964
|
-
#
|
965
|
-
#
|
966
|
-
#
|
967
|
-
#
|
968
|
-
#
|
969
|
-
#
|
970
|
-
#
|
971
|
-
#
|
972
|
-
#
|
973
|
-
#
|
974
|
-
#
|
975
|
-
#
|
976
|
-
#
|
977
|
-
#
|
978
|
-
#
|
979
|
-
#
|
980
|
-
#
|
981
|
-
#
|
982
|
-
#
|
983
|
-
#
|
984
|
-
#
|
985
|
-
#
|
986
|
-
#
|
987
|
-
#
|
950
|
+
# The deployment controller is the mechanism that determines how tasks
|
951
|
+
# are deployed for your service. The valid options are:
|
952
|
+
#
|
953
|
+
# * ECS
|
954
|
+
#
|
955
|
+
# When you create a service which uses the `ECS` deployment
|
956
|
+
# controller, you can choose between the following deployment
|
957
|
+
# strategies (which you can set in the “`strategy`” field in
|
958
|
+
# “`deploymentConfiguration`”): :
|
959
|
+
#
|
960
|
+
# * `ROLLING`: When you create a service which uses the *rolling
|
961
|
+
# update* (`ROLLING`) deployment strategy, the Amazon ECS service
|
962
|
+
# scheduler replaces the currently running tasks with new tasks. The
|
963
|
+
# number of tasks that Amazon ECS adds or removes from the service
|
964
|
+
# during a rolling update is controlled by the service deployment
|
965
|
+
# configuration. For more information, see [Deploy Amazon ECS
|
966
|
+
# services by replacing tasks][5] in the *Amazon Elastic Container
|
967
|
+
# Service Developer Guide*.
|
968
|
+
#
|
969
|
+
# Rolling update deployments are best suited for the following
|
970
|
+
# scenarios:
|
971
|
+
#
|
972
|
+
# * Gradual service updates: You need to update your service
|
973
|
+
# incrementally without taking the entire service offline at once.
|
974
|
+
#
|
975
|
+
# * Limited resource requirements: You want to avoid the additional
|
976
|
+
# resource costs of running two complete environments
|
977
|
+
# simultaneously (as required by blue/green deployments).
|
978
|
+
#
|
979
|
+
# * Acceptable deployment time: Your application can tolerate a
|
980
|
+
# longer deployment process, as rolling updates replace tasks one
|
981
|
+
# by one.
|
982
|
+
#
|
983
|
+
# * No need for instant roll back: Your service can tolerate a
|
984
|
+
# rollback process that takes minutes rather than seconds.
|
985
|
+
#
|
986
|
+
# * Simple deployment process: You prefer a straightforward
|
987
|
+
# deployment approach without the complexity of managing multiple
|
988
|
+
# environments, target groups, and listeners.
|
989
|
+
#
|
990
|
+
# * No load balancer requirement: Your service doesn't use or
|
991
|
+
# require a load balancer, Application Load Balancer, Network Load
|
992
|
+
# Balancer, or Service Connect (which are required for blue/green
|
993
|
+
# deployments).
|
994
|
+
#
|
995
|
+
# * Stateful applications: Your application maintains state that
|
996
|
+
# makes it difficult to run two parallel environments.
|
997
|
+
#
|
998
|
+
# * Cost sensitivity: You want to minimize deployment costs by not
|
999
|
+
# running duplicate environments during deployment.
|
1000
|
+
# Rolling updates are the default deployment strategy for services
|
1001
|
+
# and provide a balance between deployment safety and resource
|
1002
|
+
# efficiency for many common application scenarios.
|
1003
|
+
#
|
1004
|
+
# * `BLUE_GREEN`: A *blue/green* deployment strategy (`BLUE_GREEN`) is
|
1005
|
+
# a release methodology that reduces downtime and risk by running
|
1006
|
+
# two identical production environments called blue and green. With
|
1007
|
+
# Amazon ECS blue/green deployments, you can validate new service
|
1008
|
+
# revisions before directing production traffic to them. This
|
1009
|
+
# approach provides a safer way to deploy changes with the ability
|
1010
|
+
# to quickly roll back if needed. For more information, see [Amazon
|
1011
|
+
# ECS blue/green deployments][6] in the *Amazon Elastic Container
|
1012
|
+
# Service Developer Guide*.
|
1013
|
+
#
|
1014
|
+
# Amazon ECS blue/green deployments are best suited for the
|
1015
|
+
# following scenarios:
|
1016
|
+
#
|
1017
|
+
# * Service validation: When you need to validate new service
|
1018
|
+
# revisions before directing production traffic to them
|
1019
|
+
#
|
1020
|
+
# * Zero downtime: When your service requires zero-downtime
|
1021
|
+
# deployments
|
1022
|
+
#
|
1023
|
+
# * Instant roll back: When you need the ability to quickly roll
|
1024
|
+
# back if issues are detected
|
1025
|
+
#
|
1026
|
+
# * Load balancer requirement: When your service uses Application
|
1027
|
+
# Load Balancer, Network Load Balancer, or Service Connect
|
1028
|
+
# * External
|
1029
|
+
#
|
1030
|
+
# Use a third-party deployment controller.
|
1031
|
+
#
|
1032
|
+
# * Blue/green deployment (powered by CodeDeploy)
|
1033
|
+
#
|
1034
|
+
# CodeDeploy installs an updated version of the application as a new
|
1035
|
+
# replacement task set and reroutes production traffic from the
|
1036
|
+
# original application task set to the replacement task set. The
|
1037
|
+
# original task set is terminated after a successful deployment. Use
|
1038
|
+
# this deployment controller to verify a new deployment of a service
|
1039
|
+
# before sending production traffic to it.
|
988
1040
|
#
|
989
1041
|
# When creating a service that uses the `EXTERNAL` deployment
|
990
1042
|
# controller, you can specify only parameters that aren't controlled at
|
991
1043
|
# the task set level. The only required parameter is the service name.
|
992
|
-
# You control your services using the [CreateTaskSet][
|
993
|
-
# information, see [Amazon ECS deployment types][
|
1044
|
+
# You control your services using the [CreateTaskSet][7]. For more
|
1045
|
+
# information, see [Amazon ECS deployment types][8] in the *Amazon
|
994
1046
|
# Elastic Container Service Developer Guide*.
|
995
1047
|
#
|
996
1048
|
# When the service scheduler launches new tasks, it determines task
|
997
1049
|
# placement. For information about task placement and task placement
|
998
|
-
# strategies, see [Amazon ECS task placement][
|
1050
|
+
# strategies, see [Amazon ECS task placement][9] in the *Amazon Elastic
|
999
1051
|
# Container Service Developer Guide*
|
1000
1052
|
#
|
1001
1053
|
#
|
@@ -1004,9 +1056,11 @@ module Aws::ECS
|
|
1004
1056
|
# [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html
|
1005
1057
|
# [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-volumes.html#ebs-volume-types
|
1006
1058
|
# [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html
|
1007
|
-
# [5]: https://docs.aws.amazon.com/AmazonECS/latest/
|
1008
|
-
# [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-
|
1009
|
-
# [7]: https://docs.aws.amazon.com/AmazonECS/latest/
|
1059
|
+
# [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html
|
1060
|
+
# [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-blue-green.html
|
1061
|
+
# [7]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateTaskSet.html
|
1062
|
+
# [8]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html
|
1063
|
+
# [9]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement.html
|
1010
1064
|
#
|
1011
1065
|
# @option params [String] :cluster
|
1012
1066
|
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
@@ -1324,8 +1378,8 @@ module Aws::ECS
|
|
1324
1378
|
# resources][1] in the *Amazon Elastic Container Service Developer
|
1325
1379
|
# Guide*.
|
1326
1380
|
#
|
1327
|
-
# When you use Amazon ECS managed tags, you
|
1328
|
-
#
|
1381
|
+
# When you use Amazon ECS managed tags, you must set the `propagateTags`
|
1382
|
+
# request parameter.
|
1329
1383
|
#
|
1330
1384
|
#
|
1331
1385
|
#
|
@@ -1513,6 +1567,12 @@ module Aws::ECS
|
|
1513
1567
|
# load_balancer_name: "String",
|
1514
1568
|
# container_name: "String",
|
1515
1569
|
# container_port: 1,
|
1570
|
+
# advanced_configuration: {
|
1571
|
+
# alternate_target_group_arn: "String",
|
1572
|
+
# production_listener_rule: "String",
|
1573
|
+
# test_listener_rule: "String",
|
1574
|
+
# role_arn: "String",
|
1575
|
+
# },
|
1516
1576
|
# },
|
1517
1577
|
# ],
|
1518
1578
|
# service_registries: [
|
@@ -1547,6 +1607,15 @@ module Aws::ECS
|
|
1547
1607
|
# rollback: false, # required
|
1548
1608
|
# enable: false, # required
|
1549
1609
|
# },
|
1610
|
+
# strategy: "ROLLING", # accepts ROLLING, BLUE_GREEN
|
1611
|
+
# bake_time_in_minutes: 1,
|
1612
|
+
# lifecycle_hooks: [
|
1613
|
+
# {
|
1614
|
+
# hook_target_arn: "String",
|
1615
|
+
# role_arn: "IAMRoleArn",
|
1616
|
+
# lifecycle_stages: ["RECONCILE_SERVICE"], # accepts RECONCILE_SERVICE, PRE_SCALE_UP, POST_SCALE_UP, TEST_TRAFFIC_SHIFT, POST_TEST_TRAFFIC_SHIFT, PRODUCTION_TRAFFIC_SHIFT, POST_PRODUCTION_TRAFFIC_SHIFT
|
1617
|
+
# },
|
1618
|
+
# ],
|
1550
1619
|
# },
|
1551
1620
|
# placement_constraints: [
|
1552
1621
|
# {
|
@@ -1592,6 +1661,14 @@ module Aws::ECS
|
|
1592
1661
|
# {
|
1593
1662
|
# port: 1, # required
|
1594
1663
|
# dns_name: "String",
|
1664
|
+
# test_traffic_rules: {
|
1665
|
+
# header: { # required
|
1666
|
+
# name: "String", # required
|
1667
|
+
# value: {
|
1668
|
+
# exact: "String", # required
|
1669
|
+
# },
|
1670
|
+
# },
|
1671
|
+
# },
|
1595
1672
|
# },
|
1596
1673
|
# ],
|
1597
1674
|
# ingress_port_override: 1,
|
@@ -1669,6 +1746,10 @@ module Aws::ECS
|
|
1669
1746
|
# resp.service.load_balancers[0].load_balancer_name #=> String
|
1670
1747
|
# resp.service.load_balancers[0].container_name #=> String
|
1671
1748
|
# resp.service.load_balancers[0].container_port #=> Integer
|
1749
|
+
# resp.service.load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
1750
|
+
# resp.service.load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
1751
|
+
# resp.service.load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
1752
|
+
# resp.service.load_balancers[0].advanced_configuration.role_arn #=> String
|
1672
1753
|
# resp.service.service_registries #=> Array
|
1673
1754
|
# resp.service.service_registries[0].registry_arn #=> String
|
1674
1755
|
# resp.service.service_registries[0].port #=> Integer
|
@@ -1694,6 +1775,13 @@ module Aws::ECS
|
|
1694
1775
|
# resp.service.deployment_configuration.alarms.alarm_names[0] #=> String
|
1695
1776
|
# resp.service.deployment_configuration.alarms.rollback #=> Boolean
|
1696
1777
|
# resp.service.deployment_configuration.alarms.enable #=> Boolean
|
1778
|
+
# resp.service.deployment_configuration.strategy #=> String, one of "ROLLING", "BLUE_GREEN"
|
1779
|
+
# resp.service.deployment_configuration.bake_time_in_minutes #=> Integer
|
1780
|
+
# resp.service.deployment_configuration.lifecycle_hooks #=> Array
|
1781
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].hook_target_arn #=> String
|
1782
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].role_arn #=> String
|
1783
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].lifecycle_stages #=> Array
|
1784
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].lifecycle_stages[0] #=> String, one of "RECONCILE_SERVICE", "PRE_SCALE_UP", "POST_SCALE_UP", "TEST_TRAFFIC_SHIFT", "POST_TEST_TRAFFIC_SHIFT", "PRODUCTION_TRAFFIC_SHIFT", "POST_PRODUCTION_TRAFFIC_SHIFT"
|
1697
1785
|
# resp.service.task_sets #=> Array
|
1698
1786
|
# resp.service.task_sets[0].id #=> String
|
1699
1787
|
# resp.service.task_sets[0].task_set_arn #=> String
|
@@ -1725,6 +1813,10 @@ module Aws::ECS
|
|
1725
1813
|
# resp.service.task_sets[0].load_balancers[0].load_balancer_name #=> String
|
1726
1814
|
# resp.service.task_sets[0].load_balancers[0].container_name #=> String
|
1727
1815
|
# resp.service.task_sets[0].load_balancers[0].container_port #=> Integer
|
1816
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
1817
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
1818
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
1819
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.role_arn #=> String
|
1728
1820
|
# resp.service.task_sets[0].service_registries #=> Array
|
1729
1821
|
# resp.service.task_sets[0].service_registries[0].registry_arn #=> String
|
1730
1822
|
# resp.service.task_sets[0].service_registries[0].port #=> Integer
|
@@ -1770,6 +1862,8 @@ module Aws::ECS
|
|
1770
1862
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases #=> Array
|
1771
1863
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].port #=> Integer
|
1772
1864
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].dns_name #=> String
|
1865
|
+
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.name #=> String
|
1866
|
+
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.value.exact #=> String
|
1773
1867
|
# resp.service.deployments[0].service_connect_configuration.services[0].ingress_port_override #=> Integer
|
1774
1868
|
# resp.service.deployments[0].service_connect_configuration.services[0].timeout.idle_timeout_seconds #=> Integer
|
1775
1869
|
# resp.service.deployments[0].service_connect_configuration.services[0].timeout.per_request_timeout_seconds #=> Integer
|
@@ -2073,6 +2167,12 @@ module Aws::ECS
|
|
2073
2167
|
# load_balancer_name: "String",
|
2074
2168
|
# container_name: "String",
|
2075
2169
|
# container_port: 1,
|
2170
|
+
# advanced_configuration: {
|
2171
|
+
# alternate_target_group_arn: "String",
|
2172
|
+
# production_listener_rule: "String",
|
2173
|
+
# test_listener_rule: "String",
|
2174
|
+
# role_arn: "String",
|
2175
|
+
# },
|
2076
2176
|
# },
|
2077
2177
|
# ],
|
2078
2178
|
# service_registries: [
|
@@ -2137,6 +2237,10 @@ module Aws::ECS
|
|
2137
2237
|
# resp.task_set.load_balancers[0].load_balancer_name #=> String
|
2138
2238
|
# resp.task_set.load_balancers[0].container_name #=> String
|
2139
2239
|
# resp.task_set.load_balancers[0].container_port #=> Integer
|
2240
|
+
# resp.task_set.load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
2241
|
+
# resp.task_set.load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
2242
|
+
# resp.task_set.load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
2243
|
+
# resp.task_set.load_balancers[0].advanced_configuration.role_arn #=> String
|
2140
2244
|
# resp.task_set.service_registries #=> Array
|
2141
2245
|
# resp.task_set.service_registries[0].registry_arn #=> String
|
2142
2246
|
# resp.task_set.service_registries[0].port #=> Integer
|
@@ -2603,6 +2707,10 @@ module Aws::ECS
|
|
2603
2707
|
# resp.service.load_balancers[0].load_balancer_name #=> String
|
2604
2708
|
# resp.service.load_balancers[0].container_name #=> String
|
2605
2709
|
# resp.service.load_balancers[0].container_port #=> Integer
|
2710
|
+
# resp.service.load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
2711
|
+
# resp.service.load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
2712
|
+
# resp.service.load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
2713
|
+
# resp.service.load_balancers[0].advanced_configuration.role_arn #=> String
|
2606
2714
|
# resp.service.service_registries #=> Array
|
2607
2715
|
# resp.service.service_registries[0].registry_arn #=> String
|
2608
2716
|
# resp.service.service_registries[0].port #=> Integer
|
@@ -2628,6 +2736,13 @@ module Aws::ECS
|
|
2628
2736
|
# resp.service.deployment_configuration.alarms.alarm_names[0] #=> String
|
2629
2737
|
# resp.service.deployment_configuration.alarms.rollback #=> Boolean
|
2630
2738
|
# resp.service.deployment_configuration.alarms.enable #=> Boolean
|
2739
|
+
# resp.service.deployment_configuration.strategy #=> String, one of "ROLLING", "BLUE_GREEN"
|
2740
|
+
# resp.service.deployment_configuration.bake_time_in_minutes #=> Integer
|
2741
|
+
# resp.service.deployment_configuration.lifecycle_hooks #=> Array
|
2742
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].hook_target_arn #=> String
|
2743
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].role_arn #=> String
|
2744
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].lifecycle_stages #=> Array
|
2745
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].lifecycle_stages[0] #=> String, one of "RECONCILE_SERVICE", "PRE_SCALE_UP", "POST_SCALE_UP", "TEST_TRAFFIC_SHIFT", "POST_TEST_TRAFFIC_SHIFT", "PRODUCTION_TRAFFIC_SHIFT", "POST_PRODUCTION_TRAFFIC_SHIFT"
|
2631
2746
|
# resp.service.task_sets #=> Array
|
2632
2747
|
# resp.service.task_sets[0].id #=> String
|
2633
2748
|
# resp.service.task_sets[0].task_set_arn #=> String
|
@@ -2659,6 +2774,10 @@ module Aws::ECS
|
|
2659
2774
|
# resp.service.task_sets[0].load_balancers[0].load_balancer_name #=> String
|
2660
2775
|
# resp.service.task_sets[0].load_balancers[0].container_name #=> String
|
2661
2776
|
# resp.service.task_sets[0].load_balancers[0].container_port #=> Integer
|
2777
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
2778
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
2779
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
2780
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.role_arn #=> String
|
2662
2781
|
# resp.service.task_sets[0].service_registries #=> Array
|
2663
2782
|
# resp.service.task_sets[0].service_registries[0].registry_arn #=> String
|
2664
2783
|
# resp.service.task_sets[0].service_registries[0].port #=> Integer
|
@@ -2704,6 +2823,8 @@ module Aws::ECS
|
|
2704
2823
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases #=> Array
|
2705
2824
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].port #=> Integer
|
2706
2825
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].dns_name #=> String
|
2826
|
+
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.name #=> String
|
2827
|
+
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.value.exact #=> String
|
2707
2828
|
# resp.service.deployments[0].service_connect_configuration.services[0].ingress_port_override #=> Integer
|
2708
2829
|
# resp.service.deployments[0].service_connect_configuration.services[0].timeout.idle_timeout_seconds #=> Integer
|
2709
2830
|
# resp.service.deployments[0].service_connect_configuration.services[0].timeout.per_request_timeout_seconds #=> Integer
|
@@ -3187,6 +3308,10 @@ module Aws::ECS
|
|
3187
3308
|
# resp.task_set.load_balancers[0].load_balancer_name #=> String
|
3188
3309
|
# resp.task_set.load_balancers[0].container_name #=> String
|
3189
3310
|
# resp.task_set.load_balancers[0].container_port #=> Integer
|
3311
|
+
# resp.task_set.load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
3312
|
+
# resp.task_set.load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
3313
|
+
# resp.task_set.load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
3314
|
+
# resp.task_set.load_balancers[0].advanced_configuration.role_arn #=> String
|
3190
3315
|
# resp.task_set.service_registries #=> Array
|
3191
3316
|
# resp.task_set.service_registries[0].registry_arn #=> String
|
3192
3317
|
# resp.task_set.service_registries[0].port #=> Integer
|
@@ -4188,6 +4313,7 @@ module Aws::ECS
|
|
4188
4313
|
# resp.service_deployments[0].target_service_revision.pending_task_count #=> Integer
|
4189
4314
|
# resp.service_deployments[0].status #=> String, one of "PENDING", "SUCCESSFUL", "STOPPED", "STOP_REQUESTED", "IN_PROGRESS", "ROLLBACK_REQUESTED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_SUCCESSFUL", "ROLLBACK_FAILED"
|
4190
4315
|
# resp.service_deployments[0].status_reason #=> String
|
4316
|
+
# resp.service_deployments[0].lifecycle_stage #=> String, one of "RECONCILE_SERVICE", "PRE_SCALE_UP", "SCALE_UP", "POST_SCALE_UP", "TEST_TRAFFIC_SHIFT", "POST_TEST_TRAFFIC_SHIFT", "PRODUCTION_TRAFFIC_SHIFT", "POST_PRODUCTION_TRAFFIC_SHIFT", "BAKE_TIME", "CLEAN_UP"
|
4191
4317
|
# resp.service_deployments[0].deployment_configuration.deployment_circuit_breaker.enable #=> Boolean
|
4192
4318
|
# resp.service_deployments[0].deployment_configuration.deployment_circuit_breaker.rollback #=> Boolean
|
4193
4319
|
# resp.service_deployments[0].deployment_configuration.maximum_percent #=> Integer
|
@@ -4196,6 +4322,13 @@ module Aws::ECS
|
|
4196
4322
|
# resp.service_deployments[0].deployment_configuration.alarms.alarm_names[0] #=> String
|
4197
4323
|
# resp.service_deployments[0].deployment_configuration.alarms.rollback #=> Boolean
|
4198
4324
|
# resp.service_deployments[0].deployment_configuration.alarms.enable #=> Boolean
|
4325
|
+
# resp.service_deployments[0].deployment_configuration.strategy #=> String, one of "ROLLING", "BLUE_GREEN"
|
4326
|
+
# resp.service_deployments[0].deployment_configuration.bake_time_in_minutes #=> Integer
|
4327
|
+
# resp.service_deployments[0].deployment_configuration.lifecycle_hooks #=> Array
|
4328
|
+
# resp.service_deployments[0].deployment_configuration.lifecycle_hooks[0].hook_target_arn #=> String
|
4329
|
+
# resp.service_deployments[0].deployment_configuration.lifecycle_hooks[0].role_arn #=> String
|
4330
|
+
# resp.service_deployments[0].deployment_configuration.lifecycle_hooks[0].lifecycle_stages #=> Array
|
4331
|
+
# resp.service_deployments[0].deployment_configuration.lifecycle_hooks[0].lifecycle_stages[0] #=> String, one of "RECONCILE_SERVICE", "PRE_SCALE_UP", "POST_SCALE_UP", "TEST_TRAFFIC_SHIFT", "POST_TEST_TRAFFIC_SHIFT", "PRODUCTION_TRAFFIC_SHIFT", "POST_PRODUCTION_TRAFFIC_SHIFT"
|
4199
4332
|
# resp.service_deployments[0].rollback.reason #=> String
|
4200
4333
|
# resp.service_deployments[0].rollback.started_at #=> Time
|
4201
4334
|
# resp.service_deployments[0].rollback.service_revision_arn #=> String
|
@@ -4317,6 +4450,10 @@ module Aws::ECS
|
|
4317
4450
|
# resp.service_revisions[0].load_balancers[0].load_balancer_name #=> String
|
4318
4451
|
# resp.service_revisions[0].load_balancers[0].container_name #=> String
|
4319
4452
|
# resp.service_revisions[0].load_balancers[0].container_port #=> Integer
|
4453
|
+
# resp.service_revisions[0].load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
4454
|
+
# resp.service_revisions[0].load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
4455
|
+
# resp.service_revisions[0].load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
4456
|
+
# resp.service_revisions[0].load_balancers[0].advanced_configuration.role_arn #=> String
|
4320
4457
|
# resp.service_revisions[0].service_registries #=> Array
|
4321
4458
|
# resp.service_revisions[0].service_registries[0].registry_arn #=> String
|
4322
4459
|
# resp.service_revisions[0].service_registries[0].port #=> Integer
|
@@ -4340,6 +4477,8 @@ module Aws::ECS
|
|
4340
4477
|
# resp.service_revisions[0].service_connect_configuration.services[0].client_aliases #=> Array
|
4341
4478
|
# resp.service_revisions[0].service_connect_configuration.services[0].client_aliases[0].port #=> Integer
|
4342
4479
|
# resp.service_revisions[0].service_connect_configuration.services[0].client_aliases[0].dns_name #=> String
|
4480
|
+
# resp.service_revisions[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.name #=> String
|
4481
|
+
# resp.service_revisions[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.value.exact #=> String
|
4343
4482
|
# resp.service_revisions[0].service_connect_configuration.services[0].ingress_port_override #=> Integer
|
4344
4483
|
# resp.service_revisions[0].service_connect_configuration.services[0].timeout.idle_timeout_seconds #=> Integer
|
4345
4484
|
# resp.service_revisions[0].service_connect_configuration.services[0].timeout.per_request_timeout_seconds #=> Integer
|
@@ -4376,6 +4515,9 @@ module Aws::ECS
|
|
4376
4515
|
# resp.service_revisions[0].vpc_lattice_configurations[0].role_arn #=> String
|
4377
4516
|
# resp.service_revisions[0].vpc_lattice_configurations[0].target_group_arn #=> String
|
4378
4517
|
# resp.service_revisions[0].vpc_lattice_configurations[0].port_name #=> String
|
4518
|
+
# resp.service_revisions[0].resolved_configuration.load_balancers #=> Array
|
4519
|
+
# resp.service_revisions[0].resolved_configuration.load_balancers[0].target_group_arn #=> String
|
4520
|
+
# resp.service_revisions[0].resolved_configuration.load_balancers[0].production_listener_rule #=> String
|
4379
4521
|
# resp.failures #=> Array
|
4380
4522
|
# resp.failures[0].arn #=> String
|
4381
4523
|
# resp.failures[0].reason #=> String
|
@@ -4487,6 +4629,10 @@ module Aws::ECS
|
|
4487
4629
|
# resp.services[0].load_balancers[0].load_balancer_name #=> String
|
4488
4630
|
# resp.services[0].load_balancers[0].container_name #=> String
|
4489
4631
|
# resp.services[0].load_balancers[0].container_port #=> Integer
|
4632
|
+
# resp.services[0].load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
4633
|
+
# resp.services[0].load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
4634
|
+
# resp.services[0].load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
4635
|
+
# resp.services[0].load_balancers[0].advanced_configuration.role_arn #=> String
|
4490
4636
|
# resp.services[0].service_registries #=> Array
|
4491
4637
|
# resp.services[0].service_registries[0].registry_arn #=> String
|
4492
4638
|
# resp.services[0].service_registries[0].port #=> Integer
|
@@ -4512,6 +4658,13 @@ module Aws::ECS
|
|
4512
4658
|
# resp.services[0].deployment_configuration.alarms.alarm_names[0] #=> String
|
4513
4659
|
# resp.services[0].deployment_configuration.alarms.rollback #=> Boolean
|
4514
4660
|
# resp.services[0].deployment_configuration.alarms.enable #=> Boolean
|
4661
|
+
# resp.services[0].deployment_configuration.strategy #=> String, one of "ROLLING", "BLUE_GREEN"
|
4662
|
+
# resp.services[0].deployment_configuration.bake_time_in_minutes #=> Integer
|
4663
|
+
# resp.services[0].deployment_configuration.lifecycle_hooks #=> Array
|
4664
|
+
# resp.services[0].deployment_configuration.lifecycle_hooks[0].hook_target_arn #=> String
|
4665
|
+
# resp.services[0].deployment_configuration.lifecycle_hooks[0].role_arn #=> String
|
4666
|
+
# resp.services[0].deployment_configuration.lifecycle_hooks[0].lifecycle_stages #=> Array
|
4667
|
+
# resp.services[0].deployment_configuration.lifecycle_hooks[0].lifecycle_stages[0] #=> String, one of "RECONCILE_SERVICE", "PRE_SCALE_UP", "POST_SCALE_UP", "TEST_TRAFFIC_SHIFT", "POST_TEST_TRAFFIC_SHIFT", "PRODUCTION_TRAFFIC_SHIFT", "POST_PRODUCTION_TRAFFIC_SHIFT"
|
4515
4668
|
# resp.services[0].task_sets #=> Array
|
4516
4669
|
# resp.services[0].task_sets[0].id #=> String
|
4517
4670
|
# resp.services[0].task_sets[0].task_set_arn #=> String
|
@@ -4543,6 +4696,10 @@ module Aws::ECS
|
|
4543
4696
|
# resp.services[0].task_sets[0].load_balancers[0].load_balancer_name #=> String
|
4544
4697
|
# resp.services[0].task_sets[0].load_balancers[0].container_name #=> String
|
4545
4698
|
# resp.services[0].task_sets[0].load_balancers[0].container_port #=> Integer
|
4699
|
+
# resp.services[0].task_sets[0].load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
4700
|
+
# resp.services[0].task_sets[0].load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
4701
|
+
# resp.services[0].task_sets[0].load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
4702
|
+
# resp.services[0].task_sets[0].load_balancers[0].advanced_configuration.role_arn #=> String
|
4546
4703
|
# resp.services[0].task_sets[0].service_registries #=> Array
|
4547
4704
|
# resp.services[0].task_sets[0].service_registries[0].registry_arn #=> String
|
4548
4705
|
# resp.services[0].task_sets[0].service_registries[0].port #=> Integer
|
@@ -4588,6 +4745,8 @@ module Aws::ECS
|
|
4588
4745
|
# resp.services[0].deployments[0].service_connect_configuration.services[0].client_aliases #=> Array
|
4589
4746
|
# resp.services[0].deployments[0].service_connect_configuration.services[0].client_aliases[0].port #=> Integer
|
4590
4747
|
# resp.services[0].deployments[0].service_connect_configuration.services[0].client_aliases[0].dns_name #=> String
|
4748
|
+
# resp.services[0].deployments[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.name #=> String
|
4749
|
+
# resp.services[0].deployments[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.value.exact #=> String
|
4591
4750
|
# resp.services[0].deployments[0].service_connect_configuration.services[0].ingress_port_override #=> Integer
|
4592
4751
|
# resp.services[0].deployments[0].service_connect_configuration.services[0].timeout.idle_timeout_seconds #=> Integer
|
4593
4752
|
# resp.services[0].deployments[0].service_connect_configuration.services[0].timeout.per_request_timeout_seconds #=> Integer
|
@@ -5080,6 +5239,10 @@ module Aws::ECS
|
|
5080
5239
|
# resp.task_sets[0].load_balancers[0].load_balancer_name #=> String
|
5081
5240
|
# resp.task_sets[0].load_balancers[0].container_name #=> String
|
5082
5241
|
# resp.task_sets[0].load_balancers[0].container_port #=> Integer
|
5242
|
+
# resp.task_sets[0].load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
5243
|
+
# resp.task_sets[0].load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
5244
|
+
# resp.task_sets[0].load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
5245
|
+
# resp.task_sets[0].load_balancers[0].advanced_configuration.role_arn #=> String
|
5083
5246
|
# resp.task_sets[0].service_registries #=> Array
|
5084
5247
|
# resp.task_sets[0].service_registries[0].registry_arn #=> String
|
5085
5248
|
# resp.task_sets[0].service_registries[0].port #=> Integer
|
@@ -5120,8 +5283,8 @@ module Aws::ECS
|
|
5120
5283
|
# @option params [String] :cluster
|
5121
5284
|
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
5122
5285
|
# hosts the task or tasks to describe. If you do not specify a cluster,
|
5123
|
-
# the default cluster is assumed.
|
5124
|
-
#
|
5286
|
+
# the default cluster is assumed. If you do not specify a value, the
|
5287
|
+
# `default` cluster is used.
|
5125
5288
|
#
|
5126
5289
|
# @option params [required, Array<String>] :tasks
|
5127
5290
|
# A list of up to 100 task IDs or full ARN entries.
|
@@ -11597,6 +11760,9 @@ module Aws::ECS
|
|
11597
11760
|
# can prevent the service scheduler from marking tasks as unhealthy and
|
11598
11761
|
# stopping them before they have time to come up.
|
11599
11762
|
#
|
11763
|
+
# @option params [Types::DeploymentController] :deployment_controller
|
11764
|
+
# The deployment controller to use for the service.
|
11765
|
+
#
|
11600
11766
|
# @option params [Boolean] :enable_execute_command
|
11601
11767
|
# If `true`, this enables execute command functionality on all task
|
11602
11768
|
# containers.
|
@@ -11781,6 +11947,15 @@ module Aws::ECS
|
|
11781
11947
|
# rollback: false, # required
|
11782
11948
|
# enable: false, # required
|
11783
11949
|
# },
|
11950
|
+
# strategy: "ROLLING", # accepts ROLLING, BLUE_GREEN
|
11951
|
+
# bake_time_in_minutes: 1,
|
11952
|
+
# lifecycle_hooks: [
|
11953
|
+
# {
|
11954
|
+
# hook_target_arn: "String",
|
11955
|
+
# role_arn: "IAMRoleArn",
|
11956
|
+
# lifecycle_stages: ["RECONCILE_SERVICE"], # accepts RECONCILE_SERVICE, PRE_SCALE_UP, POST_SCALE_UP, TEST_TRAFFIC_SHIFT, POST_TEST_TRAFFIC_SHIFT, PRODUCTION_TRAFFIC_SHIFT, POST_PRODUCTION_TRAFFIC_SHIFT
|
11957
|
+
# },
|
11958
|
+
# ],
|
11784
11959
|
# },
|
11785
11960
|
# availability_zone_rebalancing: "ENABLED", # accepts ENABLED, DISABLED
|
11786
11961
|
# network_configuration: {
|
@@ -11805,6 +11980,9 @@ module Aws::ECS
|
|
11805
11980
|
# platform_version: "String",
|
11806
11981
|
# force_new_deployment: false,
|
11807
11982
|
# health_check_grace_period_seconds: 1,
|
11983
|
+
# deployment_controller: {
|
11984
|
+
# type: "ECS", # required, accepts ECS, CODE_DEPLOY, EXTERNAL
|
11985
|
+
# },
|
11808
11986
|
# enable_execute_command: false,
|
11809
11987
|
# enable_ecs_managed_tags: false,
|
11810
11988
|
# load_balancers: [
|
@@ -11813,6 +11991,12 @@ module Aws::ECS
|
|
11813
11991
|
# load_balancer_name: "String",
|
11814
11992
|
# container_name: "String",
|
11815
11993
|
# container_port: 1,
|
11994
|
+
# advanced_configuration: {
|
11995
|
+
# alternate_target_group_arn: "String",
|
11996
|
+
# production_listener_rule: "String",
|
11997
|
+
# test_listener_rule: "String",
|
11998
|
+
# role_arn: "String",
|
11999
|
+
# },
|
11816
12000
|
# },
|
11817
12001
|
# ],
|
11818
12002
|
# propagate_tags: "TASK_DEFINITION", # accepts TASK_DEFINITION, SERVICE, NONE
|
@@ -11835,6 +12019,14 @@ module Aws::ECS
|
|
11835
12019
|
# {
|
11836
12020
|
# port: 1, # required
|
11837
12021
|
# dns_name: "String",
|
12022
|
+
# test_traffic_rules: {
|
12023
|
+
# header: { # required
|
12024
|
+
# name: "String", # required
|
12025
|
+
# value: {
|
12026
|
+
# exact: "String", # required
|
12027
|
+
# },
|
12028
|
+
# },
|
12029
|
+
# },
|
11838
12030
|
# },
|
11839
12031
|
# ],
|
11840
12032
|
# ingress_port_override: 1,
|
@@ -11912,6 +12104,10 @@ module Aws::ECS
|
|
11912
12104
|
# resp.service.load_balancers[0].load_balancer_name #=> String
|
11913
12105
|
# resp.service.load_balancers[0].container_name #=> String
|
11914
12106
|
# resp.service.load_balancers[0].container_port #=> Integer
|
12107
|
+
# resp.service.load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
12108
|
+
# resp.service.load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
12109
|
+
# resp.service.load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
12110
|
+
# resp.service.load_balancers[0].advanced_configuration.role_arn #=> String
|
11915
12111
|
# resp.service.service_registries #=> Array
|
11916
12112
|
# resp.service.service_registries[0].registry_arn #=> String
|
11917
12113
|
# resp.service.service_registries[0].port #=> Integer
|
@@ -11937,6 +12133,13 @@ module Aws::ECS
|
|
11937
12133
|
# resp.service.deployment_configuration.alarms.alarm_names[0] #=> String
|
11938
12134
|
# resp.service.deployment_configuration.alarms.rollback #=> Boolean
|
11939
12135
|
# resp.service.deployment_configuration.alarms.enable #=> Boolean
|
12136
|
+
# resp.service.deployment_configuration.strategy #=> String, one of "ROLLING", "BLUE_GREEN"
|
12137
|
+
# resp.service.deployment_configuration.bake_time_in_minutes #=> Integer
|
12138
|
+
# resp.service.deployment_configuration.lifecycle_hooks #=> Array
|
12139
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].hook_target_arn #=> String
|
12140
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].role_arn #=> String
|
12141
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].lifecycle_stages #=> Array
|
12142
|
+
# resp.service.deployment_configuration.lifecycle_hooks[0].lifecycle_stages[0] #=> String, one of "RECONCILE_SERVICE", "PRE_SCALE_UP", "POST_SCALE_UP", "TEST_TRAFFIC_SHIFT", "POST_TEST_TRAFFIC_SHIFT", "PRODUCTION_TRAFFIC_SHIFT", "POST_PRODUCTION_TRAFFIC_SHIFT"
|
11940
12143
|
# resp.service.task_sets #=> Array
|
11941
12144
|
# resp.service.task_sets[0].id #=> String
|
11942
12145
|
# resp.service.task_sets[0].task_set_arn #=> String
|
@@ -11968,6 +12171,10 @@ module Aws::ECS
|
|
11968
12171
|
# resp.service.task_sets[0].load_balancers[0].load_balancer_name #=> String
|
11969
12172
|
# resp.service.task_sets[0].load_balancers[0].container_name #=> String
|
11970
12173
|
# resp.service.task_sets[0].load_balancers[0].container_port #=> Integer
|
12174
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
12175
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
12176
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
12177
|
+
# resp.service.task_sets[0].load_balancers[0].advanced_configuration.role_arn #=> String
|
11971
12178
|
# resp.service.task_sets[0].service_registries #=> Array
|
11972
12179
|
# resp.service.task_sets[0].service_registries[0].registry_arn #=> String
|
11973
12180
|
# resp.service.task_sets[0].service_registries[0].port #=> Integer
|
@@ -12013,6 +12220,8 @@ module Aws::ECS
|
|
12013
12220
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases #=> Array
|
12014
12221
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].port #=> Integer
|
12015
12222
|
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].dns_name #=> String
|
12223
|
+
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.name #=> String
|
12224
|
+
# resp.service.deployments[0].service_connect_configuration.services[0].client_aliases[0].test_traffic_rules.header.value.exact #=> String
|
12016
12225
|
# resp.service.deployments[0].service_connect_configuration.services[0].ingress_port_override #=> Integer
|
12017
12226
|
# resp.service.deployments[0].service_connect_configuration.services[0].timeout.idle_timeout_seconds #=> Integer
|
12018
12227
|
# resp.service.deployments[0].service_connect_configuration.services[0].timeout.per_request_timeout_seconds #=> Integer
|
@@ -12204,6 +12413,10 @@ module Aws::ECS
|
|
12204
12413
|
# resp.task_set.load_balancers[0].load_balancer_name #=> String
|
12205
12414
|
# resp.task_set.load_balancers[0].container_name #=> String
|
12206
12415
|
# resp.task_set.load_balancers[0].container_port #=> Integer
|
12416
|
+
# resp.task_set.load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
12417
|
+
# resp.task_set.load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
12418
|
+
# resp.task_set.load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
12419
|
+
# resp.task_set.load_balancers[0].advanced_configuration.role_arn #=> String
|
12207
12420
|
# resp.task_set.service_registries #=> Array
|
12208
12421
|
# resp.task_set.service_registries[0].registry_arn #=> String
|
12209
12422
|
# resp.task_set.service_registries[0].port #=> Integer
|
@@ -12524,6 +12737,10 @@ module Aws::ECS
|
|
12524
12737
|
# resp.task_set.load_balancers[0].load_balancer_name #=> String
|
12525
12738
|
# resp.task_set.load_balancers[0].container_name #=> String
|
12526
12739
|
# resp.task_set.load_balancers[0].container_port #=> Integer
|
12740
|
+
# resp.task_set.load_balancers[0].advanced_configuration.alternate_target_group_arn #=> String
|
12741
|
+
# resp.task_set.load_balancers[0].advanced_configuration.production_listener_rule #=> String
|
12742
|
+
# resp.task_set.load_balancers[0].advanced_configuration.test_listener_rule #=> String
|
12743
|
+
# resp.task_set.load_balancers[0].advanced_configuration.role_arn #=> String
|
12527
12744
|
# resp.task_set.service_registries #=> Array
|
12528
12745
|
# resp.task_set.service_registries[0].registry_arn #=> String
|
12529
12746
|
# resp.task_set.service_registries[0].port #=> Integer
|
@@ -12565,7 +12782,7 @@ module Aws::ECS
|
|
12565
12782
|
tracer: tracer
|
12566
12783
|
)
|
12567
12784
|
context[:gem_name] = 'aws-sdk-ecs'
|
12568
|
-
context[:gem_version] = '1.
|
12785
|
+
context[:gem_version] = '1.200.0'
|
12569
12786
|
Seahorse::Client::Request.new(handlers, context)
|
12570
12787
|
end
|
12571
12788
|
|