aws-sdk-ecs 1.162.0 → 1.173.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +55 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +499 -81
- data/lib/aws-sdk-ecs/client_api.rb +205 -1
- data/lib/aws-sdk-ecs/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-ecs/endpoints.rb +2 -614
- data/lib/aws-sdk-ecs/plugins/endpoints.rb +1 -118
- data/lib/aws-sdk-ecs/types.rb +1026 -132
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +68 -9
- data/sig/types.rbs +154 -3
- metadata +4 -4
data/lib/aws-sdk-ecs.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -163,6 +163,7 @@ module Aws
|
|
163
163
|
?cluster: ::String,
|
164
164
|
service_name: ::String,
|
165
165
|
?task_definition: ::String,
|
166
|
+
?availability_zone_rebalancing: ("ENABLED" | "DISABLED"),
|
166
167
|
?load_balancers: Array[
|
167
168
|
{
|
168
169
|
target_group_arn: ::String?,
|
@@ -200,8 +201,8 @@ module Aws
|
|
200
201
|
minimum_healthy_percent: ::Integer?,
|
201
202
|
alarms: {
|
202
203
|
alarm_names: Array[::String],
|
203
|
-
|
204
|
-
|
204
|
+
rollback: bool,
|
205
|
+
enable: bool
|
205
206
|
}?
|
206
207
|
},
|
207
208
|
?placement_constraints: Array[
|
@@ -299,9 +300,16 @@ module Aws
|
|
299
300
|
},
|
300
301
|
]?,
|
301
302
|
role_arn: ::String,
|
302
|
-
filesystem_type: ("ext3" | "ext4" | "xfs")?
|
303
|
+
filesystem_type: ("ext3" | "ext4" | "xfs" | "ntfs")?
|
303
304
|
}?
|
304
305
|
},
|
306
|
+
],
|
307
|
+
?vpc_lattice_configurations: Array[
|
308
|
+
{
|
309
|
+
role_arn: ::String,
|
310
|
+
target_group_arn: ::String,
|
311
|
+
port_name: ::String
|
312
|
+
},
|
305
313
|
]
|
306
314
|
) -> _CreateServiceResponseSuccess
|
307
315
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceResponseSuccess
|
@@ -509,6 +517,28 @@ module Aws
|
|
509
517
|
) -> _DescribeContainerInstancesResponseSuccess
|
510
518
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContainerInstancesResponseSuccess
|
511
519
|
|
520
|
+
interface _DescribeServiceDeploymentsResponseSuccess
|
521
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServiceDeploymentsResponse]
|
522
|
+
def service_deployments: () -> ::Array[Types::ServiceDeployment]
|
523
|
+
def failures: () -> ::Array[Types::Failure]
|
524
|
+
end
|
525
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECS/Client.html#describe_service_deployments-instance_method
|
526
|
+
def describe_service_deployments: (
|
527
|
+
service_deployment_arns: Array[::String]
|
528
|
+
) -> _DescribeServiceDeploymentsResponseSuccess
|
529
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServiceDeploymentsResponseSuccess
|
530
|
+
|
531
|
+
interface _DescribeServiceRevisionsResponseSuccess
|
532
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServiceRevisionsResponse]
|
533
|
+
def service_revisions: () -> ::Array[Types::ServiceRevision]
|
534
|
+
def failures: () -> ::Array[Types::Failure]
|
535
|
+
end
|
536
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECS/Client.html#describe_service_revisions-instance_method
|
537
|
+
def describe_service_revisions: (
|
538
|
+
service_revision_arns: Array[::String]
|
539
|
+
) -> _DescribeServiceRevisionsResponseSuccess
|
540
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServiceRevisionsResponseSuccess
|
541
|
+
|
512
542
|
interface _DescribeServicesResponseSuccess
|
513
543
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServicesResponse]
|
514
544
|
def services: () -> ::Array[Types::Service]
|
@@ -664,6 +694,25 @@ module Aws
|
|
664
694
|
) -> _ListContainerInstancesResponseSuccess
|
665
695
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContainerInstancesResponseSuccess
|
666
696
|
|
697
|
+
interface _ListServiceDeploymentsResponseSuccess
|
698
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceDeploymentsResponse]
|
699
|
+
def service_deployments: () -> ::Array[Types::ServiceDeploymentBrief]
|
700
|
+
def next_token: () -> ::String
|
701
|
+
end
|
702
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECS/Client.html#list_service_deployments-instance_method
|
703
|
+
def list_service_deployments: (
|
704
|
+
service: ::String,
|
705
|
+
?cluster: ::String,
|
706
|
+
?status: Array[("PENDING" | "SUCCESSFUL" | "STOPPED" | "STOP_REQUESTED" | "IN_PROGRESS" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_SUCCESSFUL" | "ROLLBACK_FAILED")],
|
707
|
+
?created_at: {
|
708
|
+
before: ::Time?,
|
709
|
+
after: ::Time?
|
710
|
+
},
|
711
|
+
?next_token: ::String,
|
712
|
+
?max_results: ::Integer
|
713
|
+
) -> _ListServiceDeploymentsResponseSuccess
|
714
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceDeploymentsResponseSuccess
|
715
|
+
|
667
716
|
interface _ListServicesResponseSuccess
|
668
717
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListServicesResponse]
|
669
718
|
def service_arns: () -> ::Array[::String]
|
@@ -960,6 +1009,7 @@ module Aws
|
|
960
1009
|
]?,
|
961
1010
|
start_timeout: ::Integer?,
|
962
1011
|
stop_timeout: ::Integer?,
|
1012
|
+
version_consistency: ("enabled" | "disabled")?,
|
963
1013
|
hostname: ::String?,
|
964
1014
|
user: ::String?,
|
965
1015
|
working_directory: ::String?,
|
@@ -1094,7 +1144,8 @@ module Aws
|
|
1094
1144
|
?runtime_platform: {
|
1095
1145
|
cpu_architecture: ("X86_64" | "ARM64")?,
|
1096
1146
|
operating_system_family: ("WINDOWS_SERVER_2019_FULL" | "WINDOWS_SERVER_2019_CORE" | "WINDOWS_SERVER_2016_FULL" | "WINDOWS_SERVER_2004_CORE" | "WINDOWS_SERVER_2022_CORE" | "WINDOWS_SERVER_2022_FULL" | "WINDOWS_SERVER_20H2_CORE" | "LINUX")?
|
1097
|
-
}
|
1147
|
+
},
|
1148
|
+
?enable_fault_injection: bool
|
1098
1149
|
) -> _RegisterTaskDefinitionResponseSuccess
|
1099
1150
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterTaskDefinitionResponseSuccess
|
1100
1151
|
|
@@ -1218,7 +1269,7 @@ module Aws
|
|
1218
1269
|
termination_policy: {
|
1219
1270
|
delete_on_termination: bool
|
1220
1271
|
}?,
|
1221
|
-
filesystem_type: ("ext3" | "ext4" | "xfs")?
|
1272
|
+
filesystem_type: ("ext3" | "ext4" | "xfs" | "ntfs")?
|
1222
1273
|
}?
|
1223
1274
|
},
|
1224
1275
|
]
|
@@ -1323,7 +1374,7 @@ module Aws
|
|
1323
1374
|
termination_policy: {
|
1324
1375
|
delete_on_termination: bool
|
1325
1376
|
}?,
|
1326
|
-
filesystem_type: ("ext3" | "ext4" | "xfs")?
|
1377
|
+
filesystem_type: ("ext3" | "ext4" | "xfs" | "ntfs")?
|
1327
1378
|
}?
|
1328
1379
|
},
|
1329
1380
|
]
|
@@ -1582,10 +1633,11 @@ module Aws
|
|
1582
1633
|
minimum_healthy_percent: ::Integer?,
|
1583
1634
|
alarms: {
|
1584
1635
|
alarm_names: Array[::String],
|
1585
|
-
|
1586
|
-
|
1636
|
+
rollback: bool,
|
1637
|
+
enable: bool
|
1587
1638
|
}?
|
1588
1639
|
},
|
1640
|
+
?availability_zone_rebalancing: ("ENABLED" | "DISABLED"),
|
1589
1641
|
?network_configuration: {
|
1590
1642
|
awsvpc_configuration: {
|
1591
1643
|
subnets: Array[::String],
|
@@ -1689,9 +1741,16 @@ module Aws
|
|
1689
1741
|
},
|
1690
1742
|
]?,
|
1691
1743
|
role_arn: ::String,
|
1692
|
-
filesystem_type: ("ext3" | "ext4" | "xfs")?
|
1744
|
+
filesystem_type: ("ext3" | "ext4" | "xfs" | "ntfs")?
|
1693
1745
|
}?
|
1694
1746
|
},
|
1747
|
+
],
|
1748
|
+
?vpc_lattice_configurations: Array[
|
1749
|
+
{
|
1750
|
+
role_arn: ::String,
|
1751
|
+
target_group_arn: ::String,
|
1752
|
+
port_name: ::String
|
1753
|
+
},
|
1695
1754
|
]
|
1696
1755
|
) -> _UpdateServiceResponseSuccess
|
1697
1756
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -186,6 +186,7 @@ module Aws::ECS
|
|
186
186
|
attr_accessor depends_on: ::Array[Types::ContainerDependency]
|
187
187
|
attr_accessor start_timeout: ::Integer
|
188
188
|
attr_accessor stop_timeout: ::Integer
|
189
|
+
attr_accessor version_consistency: ("enabled" | "disabled")
|
189
190
|
attr_accessor hostname: ::String
|
190
191
|
attr_accessor user: ::String
|
191
192
|
attr_accessor working_directory: ::String
|
@@ -215,6 +216,13 @@ module Aws::ECS
|
|
215
216
|
SENSITIVE: []
|
216
217
|
end
|
217
218
|
|
219
|
+
class ContainerImage
|
220
|
+
attr_accessor container_name: ::String
|
221
|
+
attr_accessor image_digest: ::String
|
222
|
+
attr_accessor image: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
218
226
|
class ContainerInstance
|
219
227
|
attr_accessor container_instance_arn: ::String
|
220
228
|
attr_accessor ec2_instance_id: ::String
|
@@ -305,6 +313,7 @@ module Aws::ECS
|
|
305
313
|
attr_accessor cluster: ::String
|
306
314
|
attr_accessor service_name: ::String
|
307
315
|
attr_accessor task_definition: ::String
|
316
|
+
attr_accessor availability_zone_rebalancing: ("ENABLED" | "DISABLED")
|
308
317
|
attr_accessor load_balancers: ::Array[Types::LoadBalancer]
|
309
318
|
attr_accessor service_registries: ::Array[Types::ServiceRegistry]
|
310
319
|
attr_accessor desired_count: ::Integer
|
@@ -326,6 +335,7 @@ module Aws::ECS
|
|
326
335
|
attr_accessor enable_execute_command: bool
|
327
336
|
attr_accessor service_connect_configuration: Types::ServiceConnectConfiguration
|
328
337
|
attr_accessor volume_configurations: ::Array[Types::ServiceVolumeConfiguration]
|
338
|
+
attr_accessor vpc_lattice_configurations: ::Array[Types::VpcLatticeConfiguration]
|
329
339
|
SENSITIVE: []
|
330
340
|
end
|
331
341
|
|
@@ -356,6 +366,12 @@ module Aws::ECS
|
|
356
366
|
SENSITIVE: []
|
357
367
|
end
|
358
368
|
|
369
|
+
class CreatedAt
|
370
|
+
attr_accessor before: ::Time
|
371
|
+
attr_accessor after: ::Time
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
|
359
375
|
class DeleteAccountSettingRequest
|
360
376
|
attr_accessor name: ("serviceLongArnFormat" | "taskLongArnFormat" | "containerInstanceLongArnFormat" | "awsvpcTrunking" | "containerInsights" | "fargateFIPSMode" | "tagResourceAuthorization" | "fargateTaskRetirementWaitPeriod" | "guardDutyActivate")
|
361
377
|
attr_accessor principal_arn: ::String
|
@@ -455,13 +471,14 @@ module Aws::ECS
|
|
455
471
|
attr_accessor service_connect_resources: ::Array[Types::ServiceConnectServiceResource]
|
456
472
|
attr_accessor volume_configurations: ::Array[Types::ServiceVolumeConfiguration]
|
457
473
|
attr_accessor fargate_ephemeral_storage: Types::DeploymentEphemeralStorage
|
474
|
+
attr_accessor vpc_lattice_configurations: ::Array[Types::VpcLatticeConfiguration]
|
458
475
|
SENSITIVE: []
|
459
476
|
end
|
460
477
|
|
461
478
|
class DeploymentAlarms
|
462
479
|
attr_accessor alarm_names: ::Array[::String]
|
463
|
-
attr_accessor enable: bool
|
464
480
|
attr_accessor rollback: bool
|
481
|
+
attr_accessor enable: bool
|
465
482
|
SENSITIVE: []
|
466
483
|
end
|
467
484
|
|
@@ -551,6 +568,28 @@ module Aws::ECS
|
|
551
568
|
SENSITIVE: []
|
552
569
|
end
|
553
570
|
|
571
|
+
class DescribeServiceDeploymentsRequest
|
572
|
+
attr_accessor service_deployment_arns: ::Array[::String]
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class DescribeServiceDeploymentsResponse
|
577
|
+
attr_accessor service_deployments: ::Array[Types::ServiceDeployment]
|
578
|
+
attr_accessor failures: ::Array[Types::Failure]
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class DescribeServiceRevisionsRequest
|
583
|
+
attr_accessor service_revision_arns: ::Array[::String]
|
584
|
+
SENSITIVE: []
|
585
|
+
end
|
586
|
+
|
587
|
+
class DescribeServiceRevisionsResponse
|
588
|
+
attr_accessor service_revisions: ::Array[Types::ServiceRevision]
|
589
|
+
attr_accessor failures: ::Array[Types::Failure]
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
554
593
|
class DescribeServicesRequest
|
555
594
|
attr_accessor cluster: ::String
|
556
595
|
attr_accessor services: ::Array[::String]
|
@@ -866,6 +905,22 @@ module Aws::ECS
|
|
866
905
|
SENSITIVE: []
|
867
906
|
end
|
868
907
|
|
908
|
+
class ListServiceDeploymentsRequest
|
909
|
+
attr_accessor service: ::String
|
910
|
+
attr_accessor cluster: ::String
|
911
|
+
attr_accessor status: ::Array[("PENDING" | "SUCCESSFUL" | "STOPPED" | "STOP_REQUESTED" | "IN_PROGRESS" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_SUCCESSFUL" | "ROLLBACK_FAILED")]
|
912
|
+
attr_accessor created_at: Types::CreatedAt
|
913
|
+
attr_accessor next_token: ::String
|
914
|
+
attr_accessor max_results: ::Integer
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class ListServiceDeploymentsResponse
|
919
|
+
attr_accessor service_deployments: ::Array[Types::ServiceDeploymentBrief]
|
920
|
+
attr_accessor next_token: ::String
|
921
|
+
SENSITIVE: []
|
922
|
+
end
|
923
|
+
|
869
924
|
class ListServicesByNamespaceRequest
|
870
925
|
attr_accessor namespace: ::String
|
871
926
|
attr_accessor next_token: ::String
|
@@ -1166,6 +1221,7 @@ module Aws::ECS
|
|
1166
1221
|
attr_accessor inference_accelerators: ::Array[Types::InferenceAccelerator]
|
1167
1222
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
1168
1223
|
attr_accessor runtime_platform: Types::RuntimePlatform
|
1224
|
+
attr_accessor enable_fault_injection: bool
|
1169
1225
|
SENSITIVE: []
|
1170
1226
|
end
|
1171
1227
|
|
@@ -1202,6 +1258,13 @@ module Aws::ECS
|
|
1202
1258
|
SENSITIVE: []
|
1203
1259
|
end
|
1204
1260
|
|
1261
|
+
class Rollback
|
1262
|
+
attr_accessor reason: ::String
|
1263
|
+
attr_accessor started_at: ::Time
|
1264
|
+
attr_accessor service_revision_arn: ::String
|
1265
|
+
SENSITIVE: []
|
1266
|
+
end
|
1267
|
+
|
1205
1268
|
class RunTaskRequest
|
1206
1269
|
attr_accessor capacity_provider_strategy: ::Array[Types::CapacityProviderStrategyItem]
|
1207
1270
|
attr_accessor cluster: ::String
|
@@ -1286,6 +1349,7 @@ module Aws::ECS
|
|
1286
1349
|
attr_accessor enable_ecs_managed_tags: bool
|
1287
1350
|
attr_accessor propagate_tags: ("TASK_DEFINITION" | "SERVICE" | "NONE")
|
1288
1351
|
attr_accessor enable_execute_command: bool
|
1352
|
+
attr_accessor availability_zone_rebalancing: ("ENABLED" | "DISABLED")
|
1289
1353
|
SENSITIVE: []
|
1290
1354
|
end
|
1291
1355
|
|
@@ -1331,6 +1395,53 @@ module Aws::ECS
|
|
1331
1395
|
SENSITIVE: []
|
1332
1396
|
end
|
1333
1397
|
|
1398
|
+
class ServiceDeployment
|
1399
|
+
attr_accessor service_deployment_arn: ::String
|
1400
|
+
attr_accessor service_arn: ::String
|
1401
|
+
attr_accessor cluster_arn: ::String
|
1402
|
+
attr_accessor created_at: ::Time
|
1403
|
+
attr_accessor started_at: ::Time
|
1404
|
+
attr_accessor finished_at: ::Time
|
1405
|
+
attr_accessor stopped_at: ::Time
|
1406
|
+
attr_accessor updated_at: ::Time
|
1407
|
+
attr_accessor source_service_revisions: ::Array[Types::ServiceRevisionSummary]
|
1408
|
+
attr_accessor target_service_revision: Types::ServiceRevisionSummary
|
1409
|
+
attr_accessor status: ("PENDING" | "SUCCESSFUL" | "STOPPED" | "STOP_REQUESTED" | "IN_PROGRESS" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_SUCCESSFUL" | "ROLLBACK_FAILED")
|
1410
|
+
attr_accessor status_reason: ::String
|
1411
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
1412
|
+
attr_accessor rollback: Types::Rollback
|
1413
|
+
attr_accessor deployment_circuit_breaker: Types::ServiceDeploymentCircuitBreaker
|
1414
|
+
attr_accessor alarms: Types::ServiceDeploymentAlarms
|
1415
|
+
SENSITIVE: []
|
1416
|
+
end
|
1417
|
+
|
1418
|
+
class ServiceDeploymentAlarms
|
1419
|
+
attr_accessor status: ("TRIGGERED" | "MONITORING" | "MONITORING_COMPLETE" | "DISABLED")
|
1420
|
+
attr_accessor alarm_names: ::Array[::String]
|
1421
|
+
attr_accessor triggered_alarm_names: ::Array[::String]
|
1422
|
+
SENSITIVE: []
|
1423
|
+
end
|
1424
|
+
|
1425
|
+
class ServiceDeploymentBrief
|
1426
|
+
attr_accessor service_deployment_arn: ::String
|
1427
|
+
attr_accessor service_arn: ::String
|
1428
|
+
attr_accessor cluster_arn: ::String
|
1429
|
+
attr_accessor started_at: ::Time
|
1430
|
+
attr_accessor created_at: ::Time
|
1431
|
+
attr_accessor finished_at: ::Time
|
1432
|
+
attr_accessor target_service_revision_arn: ::String
|
1433
|
+
attr_accessor status: ("PENDING" | "SUCCESSFUL" | "STOPPED" | "STOP_REQUESTED" | "IN_PROGRESS" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_SUCCESSFUL" | "ROLLBACK_FAILED")
|
1434
|
+
attr_accessor status_reason: ::String
|
1435
|
+
SENSITIVE: []
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
class ServiceDeploymentCircuitBreaker
|
1439
|
+
attr_accessor status: ("TRIGGERED" | "MONITORING" | "MONITORING_COMPLETE" | "DISABLED")
|
1440
|
+
attr_accessor failure_count: ::Integer
|
1441
|
+
attr_accessor threshold: ::Integer
|
1442
|
+
SENSITIVE: []
|
1443
|
+
end
|
1444
|
+
|
1334
1445
|
class ServiceEvent
|
1335
1446
|
attr_accessor id: ::String
|
1336
1447
|
attr_accessor created_at: ::Time
|
@@ -1348,7 +1459,7 @@ module Aws::ECS
|
|
1348
1459
|
attr_accessor throughput: ::Integer
|
1349
1460
|
attr_accessor tag_specifications: ::Array[Types::EBSTagSpecification]
|
1350
1461
|
attr_accessor role_arn: ::String
|
1351
|
-
attr_accessor filesystem_type: ("ext3" | "ext4" | "xfs")
|
1462
|
+
attr_accessor filesystem_type: ("ext3" | "ext4" | "xfs" | "ntfs")
|
1352
1463
|
SENSITIVE: []
|
1353
1464
|
end
|
1354
1465
|
|
@@ -1366,6 +1477,36 @@ module Aws::ECS
|
|
1366
1477
|
SENSITIVE: []
|
1367
1478
|
end
|
1368
1479
|
|
1480
|
+
class ServiceRevision
|
1481
|
+
attr_accessor service_revision_arn: ::String
|
1482
|
+
attr_accessor service_arn: ::String
|
1483
|
+
attr_accessor cluster_arn: ::String
|
1484
|
+
attr_accessor task_definition: ::String
|
1485
|
+
attr_accessor capacity_provider_strategy: ::Array[Types::CapacityProviderStrategyItem]
|
1486
|
+
attr_accessor launch_type: ("EC2" | "FARGATE" | "EXTERNAL")
|
1487
|
+
attr_accessor platform_version: ::String
|
1488
|
+
attr_accessor platform_family: ::String
|
1489
|
+
attr_accessor load_balancers: ::Array[Types::LoadBalancer]
|
1490
|
+
attr_accessor service_registries: ::Array[Types::ServiceRegistry]
|
1491
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
1492
|
+
attr_accessor container_images: ::Array[Types::ContainerImage]
|
1493
|
+
attr_accessor guard_duty_enabled: bool
|
1494
|
+
attr_accessor service_connect_configuration: Types::ServiceConnectConfiguration
|
1495
|
+
attr_accessor volume_configurations: ::Array[Types::ServiceVolumeConfiguration]
|
1496
|
+
attr_accessor fargate_ephemeral_storage: Types::DeploymentEphemeralStorage
|
1497
|
+
attr_accessor created_at: ::Time
|
1498
|
+
attr_accessor vpc_lattice_configurations: ::Array[Types::VpcLatticeConfiguration]
|
1499
|
+
SENSITIVE: []
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
class ServiceRevisionSummary
|
1503
|
+
attr_accessor arn: ::String
|
1504
|
+
attr_accessor requested_task_count: ::Integer
|
1505
|
+
attr_accessor running_task_count: ::Integer
|
1506
|
+
attr_accessor pending_task_count: ::Integer
|
1507
|
+
SENSITIVE: []
|
1508
|
+
end
|
1509
|
+
|
1369
1510
|
class ServiceVolumeConfiguration
|
1370
1511
|
attr_accessor name: ::String
|
1371
1512
|
attr_accessor managed_ebs_volume: Types::ServiceManagedEBSVolumeConfiguration
|
@@ -1562,6 +1703,7 @@ module Aws::ECS
|
|
1562
1703
|
attr_accessor deregistered_at: ::Time
|
1563
1704
|
attr_accessor registered_by: ::String
|
1564
1705
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
1706
|
+
attr_accessor enable_fault_injection: bool
|
1565
1707
|
SENSITIVE: []
|
1566
1708
|
end
|
1567
1709
|
|
@@ -1588,7 +1730,7 @@ module Aws::ECS
|
|
1588
1730
|
attr_accessor tag_specifications: ::Array[Types::EBSTagSpecification]
|
1589
1731
|
attr_accessor role_arn: ::String
|
1590
1732
|
attr_accessor termination_policy: Types::TaskManagedEBSVolumeTerminationPolicy
|
1591
|
-
attr_accessor filesystem_type: ("ext3" | "ext4" | "xfs")
|
1733
|
+
attr_accessor filesystem_type: ("ext3" | "ext4" | "xfs" | "ntfs")
|
1592
1734
|
SENSITIVE: []
|
1593
1735
|
end
|
1594
1736
|
|
@@ -1759,6 +1901,7 @@ module Aws::ECS
|
|
1759
1901
|
attr_accessor task_definition: ::String
|
1760
1902
|
attr_accessor capacity_provider_strategy: ::Array[Types::CapacityProviderStrategyItem]
|
1761
1903
|
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
1904
|
+
attr_accessor availability_zone_rebalancing: ("ENABLED" | "DISABLED")
|
1762
1905
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
1763
1906
|
attr_accessor placement_constraints: ::Array[Types::PlacementConstraint]
|
1764
1907
|
attr_accessor placement_strategy: ::Array[Types::PlacementStrategy]
|
@@ -1772,6 +1915,7 @@ module Aws::ECS
|
|
1772
1915
|
attr_accessor service_registries: ::Array[Types::ServiceRegistry]
|
1773
1916
|
attr_accessor service_connect_configuration: Types::ServiceConnectConfiguration
|
1774
1917
|
attr_accessor volume_configurations: ::Array[Types::ServiceVolumeConfiguration]
|
1918
|
+
attr_accessor vpc_lattice_configurations: ::Array[Types::VpcLatticeConfiguration]
|
1775
1919
|
SENSITIVE: []
|
1776
1920
|
end
|
1777
1921
|
|
@@ -1829,5 +1973,12 @@ module Aws::ECS
|
|
1829
1973
|
attr_accessor read_only: bool
|
1830
1974
|
SENSITIVE: []
|
1831
1975
|
end
|
1976
|
+
|
1977
|
+
class VpcLatticeConfiguration
|
1978
|
+
attr_accessor role_arn: ::String
|
1979
|
+
attr_accessor target_group_arn: ::String
|
1980
|
+
attr_accessor port_name: ::String
|
1981
|
+
SENSITIVE: []
|
1982
|
+
end
|
1832
1983
|
end
|
1833
1984
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ecs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.173.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|