aws-sdk-ecs 1.196.0 → 1.199.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.
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -171,7 +172,13 @@ module Aws
171
172
  target_group_arn: ::String?,
172
173
  load_balancer_name: ::String?,
173
174
  container_name: ::String?,
174
- container_port: ::Integer?
175
+ container_port: ::Integer?,
176
+ advanced_configuration: {
177
+ alternate_target_group_arn: ::String?,
178
+ production_listener_rule: ::String?,
179
+ test_listener_rule: ::String?,
180
+ role_arn: ::String?
181
+ }?
175
182
  },
176
183
  ],
177
184
  ?service_registries: Array[
@@ -205,7 +212,16 @@ module Aws
205
212
  alarm_names: Array[::String],
206
213
  rollback: bool,
207
214
  enable: bool
208
- }?
215
+ }?,
216
+ strategy: ("ROLLING" | "BLUE_GREEN")?,
217
+ bake_time_in_minutes: ::Integer?,
218
+ lifecycle_hooks: Array[
219
+ {
220
+ hook_target_arn: ::String?,
221
+ role_arn: ::String?,
222
+ lifecycle_stages: Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]?
223
+ },
224
+ ]?
209
225
  },
210
226
  ?placement_constraints: Array[
211
227
  {
@@ -250,7 +266,15 @@ module Aws
250
266
  client_aliases: Array[
251
267
  {
252
268
  port: ::Integer,
253
- dns_name: ::String?
269
+ dns_name: ::String?,
270
+ test_traffic_rules: {
271
+ header: {
272
+ name: ::String,
273
+ value: {
274
+ exact: ::String
275
+ }?
276
+ }
277
+ }?
254
278
  },
255
279
  ]?,
256
280
  ingress_port_override: ::Integer?,
@@ -339,7 +363,13 @@ module Aws
339
363
  target_group_arn: ::String?,
340
364
  load_balancer_name: ::String?,
341
365
  container_name: ::String?,
342
- container_port: ::Integer?
366
+ container_port: ::Integer?,
367
+ advanced_configuration: {
368
+ alternate_target_group_arn: ::String?,
369
+ production_listener_rule: ::String?,
370
+ test_listener_rule: ::String?,
371
+ role_arn: ::String?
372
+ }?
343
373
  },
344
374
  ],
345
375
  ?service_registries: Array[
@@ -1651,7 +1681,16 @@ module Aws
1651
1681
  alarm_names: Array[::String],
1652
1682
  rollback: bool,
1653
1683
  enable: bool
1654
- }?
1684
+ }?,
1685
+ strategy: ("ROLLING" | "BLUE_GREEN")?,
1686
+ bake_time_in_minutes: ::Integer?,
1687
+ lifecycle_hooks: Array[
1688
+ {
1689
+ hook_target_arn: ::String?,
1690
+ role_arn: ::String?,
1691
+ lifecycle_stages: Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]?
1692
+ },
1693
+ ]?
1655
1694
  },
1656
1695
  ?availability_zone_rebalancing: ("ENABLED" | "DISABLED"),
1657
1696
  ?network_configuration: {
@@ -1676,6 +1715,9 @@ module Aws
1676
1715
  ?platform_version: ::String,
1677
1716
  ?force_new_deployment: bool,
1678
1717
  ?health_check_grace_period_seconds: ::Integer,
1718
+ ?deployment_controller: {
1719
+ type: ("ECS" | "CODE_DEPLOY" | "EXTERNAL")
1720
+ },
1679
1721
  ?enable_execute_command: bool,
1680
1722
  ?enable_ecs_managed_tags: bool,
1681
1723
  ?load_balancers: Array[
@@ -1683,7 +1725,13 @@ module Aws
1683
1725
  target_group_arn: ::String?,
1684
1726
  load_balancer_name: ::String?,
1685
1727
  container_name: ::String?,
1686
- container_port: ::Integer?
1728
+ container_port: ::Integer?,
1729
+ advanced_configuration: {
1730
+ alternate_target_group_arn: ::String?,
1731
+ production_listener_rule: ::String?,
1732
+ test_listener_rule: ::String?,
1733
+ role_arn: ::String?
1734
+ }?
1687
1735
  },
1688
1736
  ],
1689
1737
  ?propagate_tags: ("TASK_DEFINITION" | "SERVICE" | "NONE"),
@@ -1705,7 +1753,15 @@ module Aws
1705
1753
  client_aliases: Array[
1706
1754
  {
1707
1755
  port: ::Integer,
1708
- dns_name: ::String?
1756
+ dns_name: ::String?,
1757
+ test_traffic_rules: {
1758
+ header: {
1759
+ name: ::String,
1760
+ value: {
1761
+ exact: ::String
1762
+ }?
1763
+ }
1764
+ }?
1709
1765
  },
1710
1766
  ]?,
1711
1767
  ingress_port_override: ::Integer?,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -11,6 +11,14 @@ module Aws::ECS
11
11
  class AccessDeniedException < Aws::EmptyStructure
12
12
  end
13
13
 
14
+ class AdvancedConfiguration
15
+ attr_accessor alternate_target_group_arn: ::String
16
+ attr_accessor production_listener_rule: ::String
17
+ attr_accessor test_listener_rule: ::String
18
+ attr_accessor role_arn: ::String
19
+ SENSITIVE: []
20
+ end
21
+
14
22
  class Attachment
15
23
  attr_accessor id: ::String
16
24
  attr_accessor type: ::String
@@ -493,6 +501,9 @@ module Aws::ECS
493
501
  attr_accessor maximum_percent: ::Integer
494
502
  attr_accessor minimum_healthy_percent: ::Integer
495
503
  attr_accessor alarms: Types::DeploymentAlarms
504
+ attr_accessor strategy: ("ROLLING" | "BLUE_GREEN")
505
+ attr_accessor bake_time_in_minutes: ::Integer
506
+ attr_accessor lifecycle_hooks: ::Array[Types::DeploymentLifecycleHook]
496
507
  SENSITIVE: []
497
508
  end
498
509
 
@@ -506,6 +517,13 @@ module Aws::ECS
506
517
  SENSITIVE: []
507
518
  end
508
519
 
520
+ class DeploymentLifecycleHook
521
+ attr_accessor hook_target_arn: ::String
522
+ attr_accessor role_arn: ::String
523
+ attr_accessor lifecycle_stages: ::Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]
524
+ SENSITIVE: []
525
+ end
526
+
509
527
  class DeregisterContainerInstanceRequest
510
528
  attr_accessor cluster: ::String
511
529
  attr_accessor container_instance: ::String
@@ -1012,6 +1030,7 @@ module Aws::ECS
1012
1030
  attr_accessor load_balancer_name: ::String
1013
1031
  attr_accessor container_name: ::String
1014
1032
  attr_accessor container_port: ::Integer
1033
+ attr_accessor advanced_configuration: Types::AdvancedConfiguration
1015
1034
  SENSITIVE: []
1016
1035
  end
1017
1036
 
@@ -1236,6 +1255,11 @@ module Aws::ECS
1236
1255
  SENSITIVE: []
1237
1256
  end
1238
1257
 
1258
+ class ResolvedConfiguration
1259
+ attr_accessor load_balancers: ::Array[Types::ServiceRevisionLoadBalancer]
1260
+ SENSITIVE: []
1261
+ end
1262
+
1239
1263
  class Resource
1240
1264
  attr_accessor name: ::String
1241
1265
  attr_accessor type: ::String
@@ -1356,6 +1380,7 @@ module Aws::ECS
1356
1380
  class ServiceConnectClientAlias
1357
1381
  attr_accessor port: ::Integer
1358
1382
  attr_accessor dns_name: ::String
1383
+ attr_accessor test_traffic_rules: Types::ServiceConnectTestTrafficRules
1359
1384
  SENSITIVE: []
1360
1385
  end
1361
1386
 
@@ -1383,6 +1408,22 @@ module Aws::ECS
1383
1408
  SENSITIVE: []
1384
1409
  end
1385
1410
 
1411
+ class ServiceConnectTestTrafficHeaderMatchRules
1412
+ attr_accessor exact: ::String
1413
+ SENSITIVE: []
1414
+ end
1415
+
1416
+ class ServiceConnectTestTrafficHeaderRules
1417
+ attr_accessor name: ::String
1418
+ attr_accessor value: Types::ServiceConnectTestTrafficHeaderMatchRules
1419
+ SENSITIVE: []
1420
+ end
1421
+
1422
+ class ServiceConnectTestTrafficRules
1423
+ attr_accessor header: Types::ServiceConnectTestTrafficHeaderRules
1424
+ SENSITIVE: []
1425
+ end
1426
+
1386
1427
  class ServiceConnectTlsCertificateAuthority
1387
1428
  attr_accessor aws_pca_authority_arn: ::String
1388
1429
  SENSITIVE: []
@@ -1408,6 +1449,7 @@ module Aws::ECS
1408
1449
  attr_accessor target_service_revision: Types::ServiceRevisionSummary
1409
1450
  attr_accessor status: ("PENDING" | "SUCCESSFUL" | "STOPPED" | "STOP_REQUESTED" | "IN_PROGRESS" | "ROLLBACK_REQUESTED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_SUCCESSFUL" | "ROLLBACK_FAILED")
1410
1451
  attr_accessor status_reason: ::String
1452
+ attr_accessor lifecycle_stage: ("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")
1411
1453
  attr_accessor deployment_configuration: Types::DeploymentConfiguration
1412
1454
  attr_accessor rollback: Types::Rollback
1413
1455
  attr_accessor deployment_circuit_breaker: Types::ServiceDeploymentCircuitBreaker
@@ -1500,6 +1542,13 @@ module Aws::ECS
1500
1542
  attr_accessor fargate_ephemeral_storage: Types::DeploymentEphemeralStorage
1501
1543
  attr_accessor created_at: ::Time
1502
1544
  attr_accessor vpc_lattice_configurations: ::Array[Types::VpcLatticeConfiguration]
1545
+ attr_accessor resolved_configuration: Types::ResolvedConfiguration
1546
+ SENSITIVE: []
1547
+ end
1548
+
1549
+ class ServiceRevisionLoadBalancer
1550
+ attr_accessor target_group_arn: ::String
1551
+ attr_accessor production_listener_rule: ::String
1503
1552
  SENSITIVE: []
1504
1553
  end
1505
1554
 
@@ -1924,6 +1973,7 @@ module Aws::ECS
1924
1973
  attr_accessor platform_version: ::String
1925
1974
  attr_accessor force_new_deployment: bool
1926
1975
  attr_accessor health_check_grace_period_seconds: ::Integer
1976
+ attr_accessor deployment_controller: Types::DeploymentController
1927
1977
  attr_accessor enable_execute_command: bool
1928
1978
  attr_accessor enable_ecs_managed_tags: bool
1929
1979
  attr_accessor load_balancers: ::Array[Types::LoadBalancer]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.196.0
4
+ version: 1.199.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement