aws-sdk-ecs 1.212.0 → 1.213.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 +651 -1
- data/lib/aws-sdk-ecs/client_api.rb +348 -0
- data/lib/aws-sdk-ecs/types.rb +1343 -128
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +129 -1
- data/sig/types.rbs +281 -0
- metadata +1 -1
data/lib/aws-sdk-ecs.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -229,6 +229,63 @@ module Aws
|
|
|
229
229
|
) -> _CreateClusterResponseSuccess
|
|
230
230
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
|
|
231
231
|
|
|
232
|
+
interface _CreateExpressGatewayServiceResponseSuccess
|
|
233
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateExpressGatewayServiceResponse]
|
|
234
|
+
def service: () -> Types::ECSExpressGatewayService
|
|
235
|
+
end
|
|
236
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECS/Client.html#create_express_gateway_service-instance_method
|
|
237
|
+
def create_express_gateway_service: (
|
|
238
|
+
execution_role_arn: ::String,
|
|
239
|
+
infrastructure_role_arn: ::String,
|
|
240
|
+
?service_name: ::String,
|
|
241
|
+
?cluster: ::String,
|
|
242
|
+
?health_check_path: ::String,
|
|
243
|
+
primary_container: {
|
|
244
|
+
image: ::String,
|
|
245
|
+
container_port: ::Integer?,
|
|
246
|
+
aws_logs_configuration: {
|
|
247
|
+
log_group: ::String,
|
|
248
|
+
log_stream_prefix: ::String
|
|
249
|
+
}?,
|
|
250
|
+
repository_credentials: {
|
|
251
|
+
credentials_parameter: ::String?
|
|
252
|
+
}?,
|
|
253
|
+
command: Array[::String]?,
|
|
254
|
+
environment: Array[
|
|
255
|
+
{
|
|
256
|
+
name: ::String?,
|
|
257
|
+
value: ::String?
|
|
258
|
+
},
|
|
259
|
+
]?,
|
|
260
|
+
secrets: Array[
|
|
261
|
+
{
|
|
262
|
+
name: ::String,
|
|
263
|
+
value_from: ::String
|
|
264
|
+
},
|
|
265
|
+
]?
|
|
266
|
+
},
|
|
267
|
+
?task_role_arn: ::String,
|
|
268
|
+
?network_configuration: {
|
|
269
|
+
security_groups: Array[::String]?,
|
|
270
|
+
subnets: Array[::String]?
|
|
271
|
+
},
|
|
272
|
+
?cpu: ::String,
|
|
273
|
+
?memory: ::String,
|
|
274
|
+
?scaling_target: {
|
|
275
|
+
min_task_count: ::Integer?,
|
|
276
|
+
max_task_count: ::Integer?,
|
|
277
|
+
auto_scaling_metric: ("AVERAGE_CPU" | "AVERAGE_MEMORY" | "REQUEST_COUNT_PER_TARGET")?,
|
|
278
|
+
auto_scaling_target_value: ::Integer?
|
|
279
|
+
},
|
|
280
|
+
?tags: Array[
|
|
281
|
+
{
|
|
282
|
+
key: ::String?,
|
|
283
|
+
value: ::String?
|
|
284
|
+
},
|
|
285
|
+
]
|
|
286
|
+
) -> _CreateExpressGatewayServiceResponseSuccess
|
|
287
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExpressGatewayServiceResponseSuccess
|
|
288
|
+
|
|
232
289
|
interface _CreateServiceResponseSuccess
|
|
233
290
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceResponse]
|
|
234
291
|
def service: () -> Types::Service
|
|
@@ -539,6 +596,16 @@ module Aws
|
|
|
539
596
|
) -> _DeleteClusterResponseSuccess
|
|
540
597
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterResponseSuccess
|
|
541
598
|
|
|
599
|
+
interface _DeleteExpressGatewayServiceResponseSuccess
|
|
600
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteExpressGatewayServiceResponse]
|
|
601
|
+
def service: () -> Types::ECSExpressGatewayService
|
|
602
|
+
end
|
|
603
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECS/Client.html#delete_express_gateway_service-instance_method
|
|
604
|
+
def delete_express_gateway_service: (
|
|
605
|
+
service_arn: ::String
|
|
606
|
+
) -> _DeleteExpressGatewayServiceResponseSuccess
|
|
607
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteExpressGatewayServiceResponseSuccess
|
|
608
|
+
|
|
542
609
|
interface _DeleteServiceResponseSuccess
|
|
543
610
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceResponse]
|
|
544
611
|
def service: () -> Types::Service
|
|
@@ -638,6 +705,17 @@ module Aws
|
|
|
638
705
|
) -> _DescribeContainerInstancesResponseSuccess
|
|
639
706
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContainerInstancesResponseSuccess
|
|
640
707
|
|
|
708
|
+
interface _DescribeExpressGatewayServiceResponseSuccess
|
|
709
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeExpressGatewayServiceResponse]
|
|
710
|
+
def service: () -> Types::ECSExpressGatewayService
|
|
711
|
+
end
|
|
712
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECS/Client.html#describe_express_gateway_service-instance_method
|
|
713
|
+
def describe_express_gateway_service: (
|
|
714
|
+
service_arn: ::String,
|
|
715
|
+
?include: Array[("TAGS")]
|
|
716
|
+
) -> _DescribeExpressGatewayServiceResponseSuccess
|
|
717
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeExpressGatewayServiceResponseSuccess
|
|
718
|
+
|
|
641
719
|
interface _DescribeServiceDeploymentsResponseSuccess
|
|
642
720
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServiceDeploymentsResponse]
|
|
643
721
|
def service_deployments: () -> ::Array[Types::ServiceDeployment]
|
|
@@ -845,7 +923,8 @@ module Aws
|
|
|
845
923
|
?next_token: ::String,
|
|
846
924
|
?max_results: ::Integer,
|
|
847
925
|
?launch_type: ("EC2" | "FARGATE" | "EXTERNAL" | "MANAGED_INSTANCES"),
|
|
848
|
-
?scheduling_strategy: ("REPLICA" | "DAEMON")
|
|
926
|
+
?scheduling_strategy: ("REPLICA" | "DAEMON"),
|
|
927
|
+
?resource_management_type: ("CUSTOMER" | "ECS")
|
|
849
928
|
) -> _ListServicesResponseSuccess
|
|
850
929
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServicesResponseSuccess
|
|
851
930
|
|
|
@@ -1813,6 +1892,55 @@ module Aws
|
|
|
1813
1892
|
) -> _UpdateContainerInstancesStateResponseSuccess
|
|
1814
1893
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContainerInstancesStateResponseSuccess
|
|
1815
1894
|
|
|
1895
|
+
interface _UpdateExpressGatewayServiceResponseSuccess
|
|
1896
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateExpressGatewayServiceResponse]
|
|
1897
|
+
def service: () -> Types::UpdatedExpressGatewayService
|
|
1898
|
+
end
|
|
1899
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECS/Client.html#update_express_gateway_service-instance_method
|
|
1900
|
+
def update_express_gateway_service: (
|
|
1901
|
+
service_arn: ::String,
|
|
1902
|
+
?execution_role_arn: ::String,
|
|
1903
|
+
?health_check_path: ::String,
|
|
1904
|
+
?primary_container: {
|
|
1905
|
+
image: ::String,
|
|
1906
|
+
container_port: ::Integer?,
|
|
1907
|
+
aws_logs_configuration: {
|
|
1908
|
+
log_group: ::String,
|
|
1909
|
+
log_stream_prefix: ::String
|
|
1910
|
+
}?,
|
|
1911
|
+
repository_credentials: {
|
|
1912
|
+
credentials_parameter: ::String?
|
|
1913
|
+
}?,
|
|
1914
|
+
command: Array[::String]?,
|
|
1915
|
+
environment: Array[
|
|
1916
|
+
{
|
|
1917
|
+
name: ::String?,
|
|
1918
|
+
value: ::String?
|
|
1919
|
+
},
|
|
1920
|
+
]?,
|
|
1921
|
+
secrets: Array[
|
|
1922
|
+
{
|
|
1923
|
+
name: ::String,
|
|
1924
|
+
value_from: ::String
|
|
1925
|
+
},
|
|
1926
|
+
]?
|
|
1927
|
+
},
|
|
1928
|
+
?task_role_arn: ::String,
|
|
1929
|
+
?network_configuration: {
|
|
1930
|
+
security_groups: Array[::String]?,
|
|
1931
|
+
subnets: Array[::String]?
|
|
1932
|
+
},
|
|
1933
|
+
?cpu: ::String,
|
|
1934
|
+
?memory: ::String,
|
|
1935
|
+
?scaling_target: {
|
|
1936
|
+
min_task_count: ::Integer?,
|
|
1937
|
+
max_task_count: ::Integer?,
|
|
1938
|
+
auto_scaling_metric: ("AVERAGE_CPU" | "AVERAGE_MEMORY" | "REQUEST_COUNT_PER_TARGET")?,
|
|
1939
|
+
auto_scaling_target_value: ::Integer?
|
|
1940
|
+
}
|
|
1941
|
+
) -> _UpdateExpressGatewayServiceResponseSuccess
|
|
1942
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExpressGatewayServiceResponseSuccess
|
|
1943
|
+
|
|
1816
1944
|
interface _UpdateServiceResponseSuccess
|
|
1817
1945
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServiceResponse]
|
|
1818
1946
|
def service: () -> Types::Service
|
data/sig/types.rbs
CHANGED
|
@@ -349,6 +349,27 @@ module Aws::ECS
|
|
|
349
349
|
SENSITIVE: []
|
|
350
350
|
end
|
|
351
351
|
|
|
352
|
+
class CreateExpressGatewayServiceRequest
|
|
353
|
+
attr_accessor execution_role_arn: ::String
|
|
354
|
+
attr_accessor infrastructure_role_arn: ::String
|
|
355
|
+
attr_accessor service_name: ::String
|
|
356
|
+
attr_accessor cluster: ::String
|
|
357
|
+
attr_accessor health_check_path: ::String
|
|
358
|
+
attr_accessor primary_container: Types::ExpressGatewayContainer
|
|
359
|
+
attr_accessor task_role_arn: ::String
|
|
360
|
+
attr_accessor network_configuration: Types::ExpressGatewayServiceNetworkConfiguration
|
|
361
|
+
attr_accessor cpu: ::String
|
|
362
|
+
attr_accessor memory: ::String
|
|
363
|
+
attr_accessor scaling_target: Types::ExpressGatewayScalingTarget
|
|
364
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
365
|
+
SENSITIVE: []
|
|
366
|
+
end
|
|
367
|
+
|
|
368
|
+
class CreateExpressGatewayServiceResponse
|
|
369
|
+
attr_accessor service: Types::ECSExpressGatewayService
|
|
370
|
+
SENSITIVE: []
|
|
371
|
+
end
|
|
372
|
+
|
|
352
373
|
class CreateManagedInstancesProviderConfiguration
|
|
353
374
|
attr_accessor infrastructure_role_arn: ::String
|
|
354
375
|
attr_accessor instance_launch_template: Types::InstanceLaunchTemplate
|
|
@@ -463,6 +484,16 @@ module Aws::ECS
|
|
|
463
484
|
SENSITIVE: []
|
|
464
485
|
end
|
|
465
486
|
|
|
487
|
+
class DeleteExpressGatewayServiceRequest
|
|
488
|
+
attr_accessor service_arn: ::String
|
|
489
|
+
SENSITIVE: []
|
|
490
|
+
end
|
|
491
|
+
|
|
492
|
+
class DeleteExpressGatewayServiceResponse
|
|
493
|
+
attr_accessor service: Types::ECSExpressGatewayService
|
|
494
|
+
SENSITIVE: []
|
|
495
|
+
end
|
|
496
|
+
|
|
466
497
|
class DeleteServiceRequest
|
|
467
498
|
attr_accessor cluster: ::String
|
|
468
499
|
attr_accessor service: ::String
|
|
@@ -631,6 +662,17 @@ module Aws::ECS
|
|
|
631
662
|
SENSITIVE: []
|
|
632
663
|
end
|
|
633
664
|
|
|
665
|
+
class DescribeExpressGatewayServiceRequest
|
|
666
|
+
attr_accessor service_arn: ::String
|
|
667
|
+
attr_accessor include: ::Array[("TAGS")]
|
|
668
|
+
SENSITIVE: []
|
|
669
|
+
end
|
|
670
|
+
|
|
671
|
+
class DescribeExpressGatewayServiceResponse
|
|
672
|
+
attr_accessor service: Types::ECSExpressGatewayService
|
|
673
|
+
SENSITIVE: []
|
|
674
|
+
end
|
|
675
|
+
|
|
634
676
|
class DescribeServiceDeploymentsRequest
|
|
635
677
|
attr_accessor service_deployment_arns: ::Array[::String]
|
|
636
678
|
SENSITIVE: []
|
|
@@ -741,6 +783,29 @@ module Aws::ECS
|
|
|
741
783
|
SENSITIVE: []
|
|
742
784
|
end
|
|
743
785
|
|
|
786
|
+
class ECSExpressGatewayService
|
|
787
|
+
attr_accessor cluster: ::String
|
|
788
|
+
attr_accessor service_name: ::String
|
|
789
|
+
attr_accessor service_arn: ::String
|
|
790
|
+
attr_accessor infrastructure_role_arn: ::String
|
|
791
|
+
attr_accessor status: Types::ExpressGatewayServiceStatus
|
|
792
|
+
attr_accessor current_deployment: ::String
|
|
793
|
+
attr_accessor active_configurations: ::Array[Types::ExpressGatewayServiceConfiguration]
|
|
794
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
795
|
+
attr_accessor created_at: ::Time
|
|
796
|
+
attr_accessor updated_at: ::Time
|
|
797
|
+
SENSITIVE: []
|
|
798
|
+
end
|
|
799
|
+
|
|
800
|
+
class ECSManagedResources
|
|
801
|
+
attr_accessor ingress_paths: ::Array[Types::ManagedIngressPath]
|
|
802
|
+
attr_accessor auto_scaling: Types::ManagedAutoScaling
|
|
803
|
+
attr_accessor metric_alarms: ::Array[Types::ManagedMetricAlarm]
|
|
804
|
+
attr_accessor service_security_groups: ::Array[Types::ManagedSecurityGroup]
|
|
805
|
+
attr_accessor log_groups: ::Array[Types::ManagedLogGroup]
|
|
806
|
+
SENSITIVE: []
|
|
807
|
+
end
|
|
808
|
+
|
|
744
809
|
class EFSAuthorizationConfig
|
|
745
810
|
attr_accessor access_point_id: ::String
|
|
746
811
|
attr_accessor iam: ("ENABLED" | "DISABLED")
|
|
@@ -802,6 +867,63 @@ module Aws::ECS
|
|
|
802
867
|
SENSITIVE: []
|
|
803
868
|
end
|
|
804
869
|
|
|
870
|
+
class ExpressGatewayContainer
|
|
871
|
+
attr_accessor image: ::String
|
|
872
|
+
attr_accessor container_port: ::Integer
|
|
873
|
+
attr_accessor aws_logs_configuration: Types::ExpressGatewayServiceAwsLogsConfiguration
|
|
874
|
+
attr_accessor repository_credentials: Types::ExpressGatewayRepositoryCredentials
|
|
875
|
+
attr_accessor command: ::Array[::String]
|
|
876
|
+
attr_accessor environment: ::Array[Types::KeyValuePair]
|
|
877
|
+
attr_accessor secrets: ::Array[Types::Secret]
|
|
878
|
+
SENSITIVE: []
|
|
879
|
+
end
|
|
880
|
+
|
|
881
|
+
class ExpressGatewayRepositoryCredentials
|
|
882
|
+
attr_accessor credentials_parameter: ::String
|
|
883
|
+
SENSITIVE: []
|
|
884
|
+
end
|
|
885
|
+
|
|
886
|
+
class ExpressGatewayScalingTarget
|
|
887
|
+
attr_accessor min_task_count: ::Integer
|
|
888
|
+
attr_accessor max_task_count: ::Integer
|
|
889
|
+
attr_accessor auto_scaling_metric: ("AVERAGE_CPU" | "AVERAGE_MEMORY" | "REQUEST_COUNT_PER_TARGET")
|
|
890
|
+
attr_accessor auto_scaling_target_value: ::Integer
|
|
891
|
+
SENSITIVE: []
|
|
892
|
+
end
|
|
893
|
+
|
|
894
|
+
class ExpressGatewayServiceAwsLogsConfiguration
|
|
895
|
+
attr_accessor log_group: ::String
|
|
896
|
+
attr_accessor log_stream_prefix: ::String
|
|
897
|
+
SENSITIVE: []
|
|
898
|
+
end
|
|
899
|
+
|
|
900
|
+
class ExpressGatewayServiceConfiguration
|
|
901
|
+
attr_accessor service_revision_arn: ::String
|
|
902
|
+
attr_accessor execution_role_arn: ::String
|
|
903
|
+
attr_accessor task_role_arn: ::String
|
|
904
|
+
attr_accessor cpu: ::String
|
|
905
|
+
attr_accessor memory: ::String
|
|
906
|
+
attr_accessor network_configuration: Types::ExpressGatewayServiceNetworkConfiguration
|
|
907
|
+
attr_accessor health_check_path: ::String
|
|
908
|
+
attr_accessor primary_container: Types::ExpressGatewayContainer
|
|
909
|
+
attr_accessor scaling_target: Types::ExpressGatewayScalingTarget
|
|
910
|
+
attr_accessor ingress_paths: ::Array[Types::IngressPathSummary]
|
|
911
|
+
attr_accessor created_at: ::Time
|
|
912
|
+
SENSITIVE: []
|
|
913
|
+
end
|
|
914
|
+
|
|
915
|
+
class ExpressGatewayServiceNetworkConfiguration
|
|
916
|
+
attr_accessor security_groups: ::Array[::String]
|
|
917
|
+
attr_accessor subnets: ::Array[::String]
|
|
918
|
+
SENSITIVE: []
|
|
919
|
+
end
|
|
920
|
+
|
|
921
|
+
class ExpressGatewayServiceStatus
|
|
922
|
+
attr_accessor status_code: ("ACTIVE" | "DRAINING" | "INACTIVE")
|
|
923
|
+
attr_accessor status_reason: ::String
|
|
924
|
+
SENSITIVE: []
|
|
925
|
+
end
|
|
926
|
+
|
|
805
927
|
class FSxWindowsFileServerAuthorizationConfig
|
|
806
928
|
attr_accessor credentials_parameter: ::String
|
|
807
929
|
attr_accessor domain: ::String
|
|
@@ -877,6 +999,12 @@ module Aws::ECS
|
|
|
877
999
|
SENSITIVE: []
|
|
878
1000
|
end
|
|
879
1001
|
|
|
1002
|
+
class IngressPathSummary
|
|
1003
|
+
attr_accessor access_type: ("PUBLIC" | "PRIVATE")
|
|
1004
|
+
attr_accessor endpoint: ::String
|
|
1005
|
+
SENSITIVE: []
|
|
1006
|
+
end
|
|
1007
|
+
|
|
880
1008
|
class InstanceHealthCheckResult
|
|
881
1009
|
attr_accessor type: ("CONTAINER_RUNTIME")
|
|
882
1010
|
attr_accessor status: ("OK" | "IMPAIRED" | "INSUFFICIENT_DATA" | "INITIALIZING")
|
|
@@ -1060,6 +1188,7 @@ module Aws::ECS
|
|
|
1060
1188
|
attr_accessor max_results: ::Integer
|
|
1061
1189
|
attr_accessor launch_type: ("EC2" | "FARGATE" | "EXTERNAL" | "MANAGED_INSTANCES")
|
|
1062
1190
|
attr_accessor scheduling_strategy: ("REPLICA" | "DAEMON")
|
|
1191
|
+
attr_accessor resource_management_type: ("CUSTOMER" | "ECS")
|
|
1063
1192
|
SENSITIVE: []
|
|
1064
1193
|
end
|
|
1065
1194
|
|
|
@@ -1159,6 +1288,44 @@ module Aws::ECS
|
|
|
1159
1288
|
SENSITIVE: []
|
|
1160
1289
|
end
|
|
1161
1290
|
|
|
1291
|
+
class ManagedApplicationAutoScalingPolicy
|
|
1292
|
+
attr_accessor arn: ::String
|
|
1293
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1294
|
+
attr_accessor status_reason: ::String
|
|
1295
|
+
attr_accessor updated_at: ::Time
|
|
1296
|
+
attr_accessor policy_type: ::String
|
|
1297
|
+
attr_accessor target_value: ::Float
|
|
1298
|
+
attr_accessor metric: ::String
|
|
1299
|
+
SENSITIVE: []
|
|
1300
|
+
end
|
|
1301
|
+
|
|
1302
|
+
class ManagedAutoScaling
|
|
1303
|
+
attr_accessor scalable_target: Types::ManagedScalableTarget
|
|
1304
|
+
attr_accessor application_auto_scaling_policies: ::Array[Types::ManagedApplicationAutoScalingPolicy]
|
|
1305
|
+
SENSITIVE: []
|
|
1306
|
+
end
|
|
1307
|
+
|
|
1308
|
+
class ManagedCertificate
|
|
1309
|
+
attr_accessor arn: ::String
|
|
1310
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1311
|
+
attr_accessor status_reason: ::String
|
|
1312
|
+
attr_accessor updated_at: ::Time
|
|
1313
|
+
attr_accessor domain_name: ::String
|
|
1314
|
+
SENSITIVE: []
|
|
1315
|
+
end
|
|
1316
|
+
|
|
1317
|
+
class ManagedIngressPath
|
|
1318
|
+
attr_accessor access_type: ("PUBLIC" | "PRIVATE")
|
|
1319
|
+
attr_accessor endpoint: ::String
|
|
1320
|
+
attr_accessor load_balancer: Types::ManagedLoadBalancer
|
|
1321
|
+
attr_accessor load_balancer_security_groups: ::Array[Types::ManagedSecurityGroup]
|
|
1322
|
+
attr_accessor certificate: Types::ManagedCertificate
|
|
1323
|
+
attr_accessor listener: Types::ManagedListener
|
|
1324
|
+
attr_accessor rule: Types::ManagedListenerRule
|
|
1325
|
+
attr_accessor target_groups: ::Array[Types::ManagedTargetGroup]
|
|
1326
|
+
SENSITIVE: []
|
|
1327
|
+
end
|
|
1328
|
+
|
|
1162
1329
|
class ManagedInstancesNetworkConfiguration
|
|
1163
1330
|
attr_accessor subnets: ::Array[::String]
|
|
1164
1331
|
attr_accessor security_groups: ::Array[::String]
|
|
@@ -1178,6 +1345,60 @@ module Aws::ECS
|
|
|
1178
1345
|
SENSITIVE: []
|
|
1179
1346
|
end
|
|
1180
1347
|
|
|
1348
|
+
class ManagedListener
|
|
1349
|
+
attr_accessor arn: ::String
|
|
1350
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1351
|
+
attr_accessor status_reason: ::String
|
|
1352
|
+
attr_accessor updated_at: ::Time
|
|
1353
|
+
SENSITIVE: []
|
|
1354
|
+
end
|
|
1355
|
+
|
|
1356
|
+
class ManagedListenerRule
|
|
1357
|
+
attr_accessor arn: ::String
|
|
1358
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1359
|
+
attr_accessor status_reason: ::String
|
|
1360
|
+
attr_accessor updated_at: ::Time
|
|
1361
|
+
SENSITIVE: []
|
|
1362
|
+
end
|
|
1363
|
+
|
|
1364
|
+
class ManagedLoadBalancer
|
|
1365
|
+
attr_accessor arn: ::String
|
|
1366
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1367
|
+
attr_accessor status_reason: ::String
|
|
1368
|
+
attr_accessor updated_at: ::Time
|
|
1369
|
+
attr_accessor scheme: ::String
|
|
1370
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
1371
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
1372
|
+
SENSITIVE: []
|
|
1373
|
+
end
|
|
1374
|
+
|
|
1375
|
+
class ManagedLogGroup
|
|
1376
|
+
attr_accessor arn: ::String
|
|
1377
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1378
|
+
attr_accessor status_reason: ::String
|
|
1379
|
+
attr_accessor updated_at: ::Time
|
|
1380
|
+
attr_accessor log_group_name: ::String
|
|
1381
|
+
SENSITIVE: []
|
|
1382
|
+
end
|
|
1383
|
+
|
|
1384
|
+
class ManagedMetricAlarm
|
|
1385
|
+
attr_accessor arn: ::String
|
|
1386
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1387
|
+
attr_accessor status_reason: ::String
|
|
1388
|
+
attr_accessor updated_at: ::Time
|
|
1389
|
+
SENSITIVE: []
|
|
1390
|
+
end
|
|
1391
|
+
|
|
1392
|
+
class ManagedScalableTarget
|
|
1393
|
+
attr_accessor arn: ::String
|
|
1394
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1395
|
+
attr_accessor status_reason: ::String
|
|
1396
|
+
attr_accessor updated_at: ::Time
|
|
1397
|
+
attr_accessor min_capacity: ::Integer
|
|
1398
|
+
attr_accessor max_capacity: ::Integer
|
|
1399
|
+
SENSITIVE: []
|
|
1400
|
+
end
|
|
1401
|
+
|
|
1181
1402
|
class ManagedScaling
|
|
1182
1403
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
1183
1404
|
attr_accessor target_capacity: ::Integer
|
|
@@ -1187,12 +1408,31 @@ module Aws::ECS
|
|
|
1187
1408
|
SENSITIVE: []
|
|
1188
1409
|
end
|
|
1189
1410
|
|
|
1411
|
+
class ManagedSecurityGroup
|
|
1412
|
+
attr_accessor arn: ::String
|
|
1413
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1414
|
+
attr_accessor status_reason: ::String
|
|
1415
|
+
attr_accessor updated_at: ::Time
|
|
1416
|
+
SENSITIVE: []
|
|
1417
|
+
end
|
|
1418
|
+
|
|
1190
1419
|
class ManagedStorageConfiguration
|
|
1191
1420
|
attr_accessor kms_key_id: ::String
|
|
1192
1421
|
attr_accessor fargate_ephemeral_storage_kms_key_id: ::String
|
|
1193
1422
|
SENSITIVE: []
|
|
1194
1423
|
end
|
|
1195
1424
|
|
|
1425
|
+
class ManagedTargetGroup
|
|
1426
|
+
attr_accessor arn: ::String
|
|
1427
|
+
attr_accessor status: ("PROVISIONING" | "ACTIVE" | "DEPROVISIONING" | "DELETED" | "FAILED")
|
|
1428
|
+
attr_accessor status_reason: ::String
|
|
1429
|
+
attr_accessor updated_at: ::Time
|
|
1430
|
+
attr_accessor health_check_path: ::String
|
|
1431
|
+
attr_accessor health_check_port: ::Integer
|
|
1432
|
+
attr_accessor port: ::Integer
|
|
1433
|
+
SENSITIVE: []
|
|
1434
|
+
end
|
|
1435
|
+
|
|
1196
1436
|
class MemoryGiBPerVCpuRequest
|
|
1197
1437
|
attr_accessor min: ::Float
|
|
1198
1438
|
attr_accessor max: ::Float
|
|
@@ -1507,6 +1747,8 @@ module Aws::ECS
|
|
|
1507
1747
|
attr_accessor role_arn: ::String
|
|
1508
1748
|
attr_accessor events: ::Array[Types::ServiceEvent]
|
|
1509
1749
|
attr_accessor created_at: ::Time
|
|
1750
|
+
attr_accessor current_service_deployment: ::String
|
|
1751
|
+
attr_accessor current_service_revisions: ::Array[Types::ServiceCurrentRevisionSummary]
|
|
1510
1752
|
attr_accessor placement_constraints: ::Array[Types::PlacementConstraint]
|
|
1511
1753
|
attr_accessor placement_strategy: ::Array[Types::PlacementStrategy]
|
|
1512
1754
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
|
@@ -1519,6 +1761,7 @@ module Aws::ECS
|
|
|
1519
1761
|
attr_accessor propagate_tags: ("TASK_DEFINITION" | "SERVICE" | "NONE")
|
|
1520
1762
|
attr_accessor enable_execute_command: bool
|
|
1521
1763
|
attr_accessor availability_zone_rebalancing: ("ENABLED" | "DISABLED")
|
|
1764
|
+
attr_accessor resource_management_type: ("CUSTOMER" | "ECS")
|
|
1522
1765
|
SENSITIVE: []
|
|
1523
1766
|
end
|
|
1524
1767
|
|
|
@@ -1588,6 +1831,14 @@ module Aws::ECS
|
|
|
1588
1831
|
SENSITIVE: []
|
|
1589
1832
|
end
|
|
1590
1833
|
|
|
1834
|
+
class ServiceCurrentRevisionSummary
|
|
1835
|
+
attr_accessor arn: ::String
|
|
1836
|
+
attr_accessor requested_task_count: ::Integer
|
|
1837
|
+
attr_accessor running_task_count: ::Integer
|
|
1838
|
+
attr_accessor pending_task_count: ::Integer
|
|
1839
|
+
SENSITIVE: []
|
|
1840
|
+
end
|
|
1841
|
+
|
|
1591
1842
|
class ServiceDeployment
|
|
1592
1843
|
attr_accessor service_deployment_arn: ::String
|
|
1593
1844
|
attr_accessor service_arn: ::String
|
|
@@ -1695,6 +1946,7 @@ module Aws::ECS
|
|
|
1695
1946
|
attr_accessor created_at: ::Time
|
|
1696
1947
|
attr_accessor vpc_lattice_configurations: ::Array[Types::VpcLatticeConfiguration]
|
|
1697
1948
|
attr_accessor resolved_configuration: Types::ResolvedConfiguration
|
|
1949
|
+
attr_accessor ecs_managed_resources: Types::ECSManagedResources
|
|
1698
1950
|
SENSITIVE: []
|
|
1699
1951
|
end
|
|
1700
1952
|
|
|
@@ -2106,6 +2358,24 @@ module Aws::ECS
|
|
|
2106
2358
|
SENSITIVE: []
|
|
2107
2359
|
end
|
|
2108
2360
|
|
|
2361
|
+
class UpdateExpressGatewayServiceRequest
|
|
2362
|
+
attr_accessor service_arn: ::String
|
|
2363
|
+
attr_accessor execution_role_arn: ::String
|
|
2364
|
+
attr_accessor health_check_path: ::String
|
|
2365
|
+
attr_accessor primary_container: Types::ExpressGatewayContainer
|
|
2366
|
+
attr_accessor task_role_arn: ::String
|
|
2367
|
+
attr_accessor network_configuration: Types::ExpressGatewayServiceNetworkConfiguration
|
|
2368
|
+
attr_accessor cpu: ::String
|
|
2369
|
+
attr_accessor memory: ::String
|
|
2370
|
+
attr_accessor scaling_target: Types::ExpressGatewayScalingTarget
|
|
2371
|
+
SENSITIVE: []
|
|
2372
|
+
end
|
|
2373
|
+
|
|
2374
|
+
class UpdateExpressGatewayServiceResponse
|
|
2375
|
+
attr_accessor service: Types::UpdatedExpressGatewayService
|
|
2376
|
+
SENSITIVE: []
|
|
2377
|
+
end
|
|
2378
|
+
|
|
2109
2379
|
class UpdateInProgressException < Aws::EmptyStructure
|
|
2110
2380
|
end
|
|
2111
2381
|
|
|
@@ -2187,6 +2457,17 @@ module Aws::ECS
|
|
|
2187
2457
|
SENSITIVE: []
|
|
2188
2458
|
end
|
|
2189
2459
|
|
|
2460
|
+
class UpdatedExpressGatewayService
|
|
2461
|
+
attr_accessor service_arn: ::String
|
|
2462
|
+
attr_accessor cluster: ::String
|
|
2463
|
+
attr_accessor service_name: ::String
|
|
2464
|
+
attr_accessor status: Types::ExpressGatewayServiceStatus
|
|
2465
|
+
attr_accessor target_configuration: Types::ExpressGatewayServiceConfiguration
|
|
2466
|
+
attr_accessor created_at: ::Time
|
|
2467
|
+
attr_accessor updated_at: ::Time
|
|
2468
|
+
SENSITIVE: []
|
|
2469
|
+
end
|
|
2470
|
+
|
|
2190
2471
|
class VCpuCountRangeRequest
|
|
2191
2472
|
attr_accessor min: ::Integer
|
|
2192
2473
|
attr_accessor max: ::Integer
|