aws-sdk-ecs 1.211.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +661 -1
- data/lib/aws-sdk-ecs/client_api.rb +355 -0
- data/lib/aws-sdk-ecs/types.rb +1389 -120
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +137 -3
- data/sig/types.rbs +289 -0
- metadata +1 -1
data/lib/aws-sdk-ecs.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -165,7 +165,10 @@ module Aws
|
|
|
165
165
|
max_spot_price_as_percentage_of_optimal_on_demand_price: ::Integer?
|
|
166
166
|
}?
|
|
167
167
|
},
|
|
168
|
-
propagate_tags: ("CAPACITY_PROVIDER" | "NONE")
|
|
168
|
+
propagate_tags: ("CAPACITY_PROVIDER" | "NONE")?,
|
|
169
|
+
infrastructure_optimization: {
|
|
170
|
+
scale_in_after: ::Integer?
|
|
171
|
+
}?
|
|
169
172
|
},
|
|
170
173
|
?tags: Array[
|
|
171
174
|
{
|
|
@@ -226,6 +229,63 @@ module Aws
|
|
|
226
229
|
) -> _CreateClusterResponseSuccess
|
|
227
230
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
|
|
228
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
|
+
|
|
229
289
|
interface _CreateServiceResponseSuccess
|
|
230
290
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceResponse]
|
|
231
291
|
def service: () -> Types::Service
|
|
@@ -536,6 +596,16 @@ module Aws
|
|
|
536
596
|
) -> _DeleteClusterResponseSuccess
|
|
537
597
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterResponseSuccess
|
|
538
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
|
+
|
|
539
609
|
interface _DeleteServiceResponseSuccess
|
|
540
610
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceResponse]
|
|
541
611
|
def service: () -> Types::Service
|
|
@@ -635,6 +705,17 @@ module Aws
|
|
|
635
705
|
) -> _DescribeContainerInstancesResponseSuccess
|
|
636
706
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContainerInstancesResponseSuccess
|
|
637
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
|
+
|
|
638
719
|
interface _DescribeServiceDeploymentsResponseSuccess
|
|
639
720
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServiceDeploymentsResponse]
|
|
640
721
|
def service_deployments: () -> ::Array[Types::ServiceDeployment]
|
|
@@ -842,7 +923,8 @@ module Aws
|
|
|
842
923
|
?next_token: ::String,
|
|
843
924
|
?max_results: ::Integer,
|
|
844
925
|
?launch_type: ("EC2" | "FARGATE" | "EXTERNAL" | "MANAGED_INSTANCES"),
|
|
845
|
-
?scheduling_strategy: ("REPLICA" | "DAEMON")
|
|
926
|
+
?scheduling_strategy: ("REPLICA" | "DAEMON"),
|
|
927
|
+
?resource_management_type: ("CUSTOMER" | "ECS")
|
|
846
928
|
) -> _ListServicesResponseSuccess
|
|
847
929
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServicesResponseSuccess
|
|
848
930
|
|
|
@@ -1726,7 +1808,10 @@ module Aws
|
|
|
1726
1808
|
max_spot_price_as_percentage_of_optimal_on_demand_price: ::Integer?
|
|
1727
1809
|
}?
|
|
1728
1810
|
},
|
|
1729
|
-
propagate_tags: ("CAPACITY_PROVIDER" | "NONE")
|
|
1811
|
+
propagate_tags: ("CAPACITY_PROVIDER" | "NONE")?,
|
|
1812
|
+
infrastructure_optimization: {
|
|
1813
|
+
scale_in_after: ::Integer?
|
|
1814
|
+
}?
|
|
1730
1815
|
}
|
|
1731
1816
|
) -> _UpdateCapacityProviderResponseSuccess
|
|
1732
1817
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCapacityProviderResponseSuccess
|
|
@@ -1807,6 +1892,55 @@ module Aws
|
|
|
1807
1892
|
) -> _UpdateContainerInstancesStateResponseSuccess
|
|
1808
1893
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContainerInstancesStateResponseSuccess
|
|
1809
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
|
+
|
|
1810
1944
|
interface _UpdateServiceResponseSuccess
|
|
1811
1945
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServiceResponse]
|
|
1812
1946
|
def service: () -> Types::Service
|
data/sig/types.rbs
CHANGED
|
@@ -349,10 +349,32 @@ 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
|
|
355
376
|
attr_accessor propagate_tags: ("CAPACITY_PROVIDER" | "NONE")
|
|
377
|
+
attr_accessor infrastructure_optimization: Types::InfrastructureOptimization
|
|
356
378
|
SENSITIVE: []
|
|
357
379
|
end
|
|
358
380
|
|
|
@@ -462,6 +484,16 @@ module Aws::ECS
|
|
|
462
484
|
SENSITIVE: []
|
|
463
485
|
end
|
|
464
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
|
+
|
|
465
497
|
class DeleteServiceRequest
|
|
466
498
|
attr_accessor cluster: ::String
|
|
467
499
|
attr_accessor service: ::String
|
|
@@ -630,6 +662,17 @@ module Aws::ECS
|
|
|
630
662
|
SENSITIVE: []
|
|
631
663
|
end
|
|
632
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
|
+
|
|
633
676
|
class DescribeServiceDeploymentsRequest
|
|
634
677
|
attr_accessor service_deployment_arns: ::Array[::String]
|
|
635
678
|
SENSITIVE: []
|
|
@@ -740,6 +783,29 @@ module Aws::ECS
|
|
|
740
783
|
SENSITIVE: []
|
|
741
784
|
end
|
|
742
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
|
+
|
|
743
809
|
class EFSAuthorizationConfig
|
|
744
810
|
attr_accessor access_point_id: ::String
|
|
745
811
|
attr_accessor iam: ("ENABLED" | "DISABLED")
|
|
@@ -801,6 +867,63 @@ module Aws::ECS
|
|
|
801
867
|
SENSITIVE: []
|
|
802
868
|
end
|
|
803
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
|
+
|
|
804
927
|
class FSxWindowsFileServerAuthorizationConfig
|
|
805
928
|
attr_accessor credentials_parameter: ::String
|
|
806
929
|
attr_accessor domain: ::String
|
|
@@ -871,6 +994,17 @@ module Aws::ECS
|
|
|
871
994
|
SENSITIVE: []
|
|
872
995
|
end
|
|
873
996
|
|
|
997
|
+
class InfrastructureOptimization
|
|
998
|
+
attr_accessor scale_in_after: ::Integer
|
|
999
|
+
SENSITIVE: []
|
|
1000
|
+
end
|
|
1001
|
+
|
|
1002
|
+
class IngressPathSummary
|
|
1003
|
+
attr_accessor access_type: ("PUBLIC" | "PRIVATE")
|
|
1004
|
+
attr_accessor endpoint: ::String
|
|
1005
|
+
SENSITIVE: []
|
|
1006
|
+
end
|
|
1007
|
+
|
|
874
1008
|
class InstanceHealthCheckResult
|
|
875
1009
|
attr_accessor type: ("CONTAINER_RUNTIME")
|
|
876
1010
|
attr_accessor status: ("OK" | "IMPAIRED" | "INSUFFICIENT_DATA" | "INITIALIZING")
|
|
@@ -1054,6 +1188,7 @@ module Aws::ECS
|
|
|
1054
1188
|
attr_accessor max_results: ::Integer
|
|
1055
1189
|
attr_accessor launch_type: ("EC2" | "FARGATE" | "EXTERNAL" | "MANAGED_INSTANCES")
|
|
1056
1190
|
attr_accessor scheduling_strategy: ("REPLICA" | "DAEMON")
|
|
1191
|
+
attr_accessor resource_management_type: ("CUSTOMER" | "ECS")
|
|
1057
1192
|
SENSITIVE: []
|
|
1058
1193
|
end
|
|
1059
1194
|
|
|
@@ -1153,6 +1288,44 @@ module Aws::ECS
|
|
|
1153
1288
|
SENSITIVE: []
|
|
1154
1289
|
end
|
|
1155
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
|
+
|
|
1156
1329
|
class ManagedInstancesNetworkConfiguration
|
|
1157
1330
|
attr_accessor subnets: ::Array[::String]
|
|
1158
1331
|
attr_accessor security_groups: ::Array[::String]
|
|
@@ -1163,6 +1336,7 @@ module Aws::ECS
|
|
|
1163
1336
|
attr_accessor infrastructure_role_arn: ::String
|
|
1164
1337
|
attr_accessor instance_launch_template: Types::InstanceLaunchTemplate
|
|
1165
1338
|
attr_accessor propagate_tags: ("CAPACITY_PROVIDER" | "NONE")
|
|
1339
|
+
attr_accessor infrastructure_optimization: Types::InfrastructureOptimization
|
|
1166
1340
|
SENSITIVE: []
|
|
1167
1341
|
end
|
|
1168
1342
|
|
|
@@ -1171,6 +1345,60 @@ module Aws::ECS
|
|
|
1171
1345
|
SENSITIVE: []
|
|
1172
1346
|
end
|
|
1173
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
|
+
|
|
1174
1402
|
class ManagedScaling
|
|
1175
1403
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
1176
1404
|
attr_accessor target_capacity: ::Integer
|
|
@@ -1180,12 +1408,31 @@ module Aws::ECS
|
|
|
1180
1408
|
SENSITIVE: []
|
|
1181
1409
|
end
|
|
1182
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
|
+
|
|
1183
1419
|
class ManagedStorageConfiguration
|
|
1184
1420
|
attr_accessor kms_key_id: ::String
|
|
1185
1421
|
attr_accessor fargate_ephemeral_storage_kms_key_id: ::String
|
|
1186
1422
|
SENSITIVE: []
|
|
1187
1423
|
end
|
|
1188
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
|
+
|
|
1189
1436
|
class MemoryGiBPerVCpuRequest
|
|
1190
1437
|
attr_accessor min: ::Float
|
|
1191
1438
|
attr_accessor max: ::Float
|
|
@@ -1500,6 +1747,8 @@ module Aws::ECS
|
|
|
1500
1747
|
attr_accessor role_arn: ::String
|
|
1501
1748
|
attr_accessor events: ::Array[Types::ServiceEvent]
|
|
1502
1749
|
attr_accessor created_at: ::Time
|
|
1750
|
+
attr_accessor current_service_deployment: ::String
|
|
1751
|
+
attr_accessor current_service_revisions: ::Array[Types::ServiceCurrentRevisionSummary]
|
|
1503
1752
|
attr_accessor placement_constraints: ::Array[Types::PlacementConstraint]
|
|
1504
1753
|
attr_accessor placement_strategy: ::Array[Types::PlacementStrategy]
|
|
1505
1754
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
|
@@ -1512,6 +1761,7 @@ module Aws::ECS
|
|
|
1512
1761
|
attr_accessor propagate_tags: ("TASK_DEFINITION" | "SERVICE" | "NONE")
|
|
1513
1762
|
attr_accessor enable_execute_command: bool
|
|
1514
1763
|
attr_accessor availability_zone_rebalancing: ("ENABLED" | "DISABLED")
|
|
1764
|
+
attr_accessor resource_management_type: ("CUSTOMER" | "ECS")
|
|
1515
1765
|
SENSITIVE: []
|
|
1516
1766
|
end
|
|
1517
1767
|
|
|
@@ -1581,6 +1831,14 @@ module Aws::ECS
|
|
|
1581
1831
|
SENSITIVE: []
|
|
1582
1832
|
end
|
|
1583
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
|
+
|
|
1584
1842
|
class ServiceDeployment
|
|
1585
1843
|
attr_accessor service_deployment_arn: ::String
|
|
1586
1844
|
attr_accessor service_arn: ::String
|
|
@@ -1688,6 +1946,7 @@ module Aws::ECS
|
|
|
1688
1946
|
attr_accessor created_at: ::Time
|
|
1689
1947
|
attr_accessor vpc_lattice_configurations: ::Array[Types::VpcLatticeConfiguration]
|
|
1690
1948
|
attr_accessor resolved_configuration: Types::ResolvedConfiguration
|
|
1949
|
+
attr_accessor ecs_managed_resources: Types::ECSManagedResources
|
|
1691
1950
|
SENSITIVE: []
|
|
1692
1951
|
end
|
|
1693
1952
|
|
|
@@ -2099,6 +2358,24 @@ module Aws::ECS
|
|
|
2099
2358
|
SENSITIVE: []
|
|
2100
2359
|
end
|
|
2101
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
|
+
|
|
2102
2379
|
class UpdateInProgressException < Aws::EmptyStructure
|
|
2103
2380
|
end
|
|
2104
2381
|
|
|
@@ -2106,6 +2383,7 @@ module Aws::ECS
|
|
|
2106
2383
|
attr_accessor infrastructure_role_arn: ::String
|
|
2107
2384
|
attr_accessor instance_launch_template: Types::InstanceLaunchTemplateUpdate
|
|
2108
2385
|
attr_accessor propagate_tags: ("CAPACITY_PROVIDER" | "NONE")
|
|
2386
|
+
attr_accessor infrastructure_optimization: Types::InfrastructureOptimization
|
|
2109
2387
|
SENSITIVE: []
|
|
2110
2388
|
end
|
|
2111
2389
|
|
|
@@ -2179,6 +2457,17 @@ module Aws::ECS
|
|
|
2179
2457
|
SENSITIVE: []
|
|
2180
2458
|
end
|
|
2181
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
|
+
|
|
2182
2471
|
class VCpuCountRangeRequest
|
|
2183
2472
|
attr_accessor min: ::Integer
|
|
2184
2473
|
attr_accessor max: ::Integer
|