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
|
@@ -23,6 +23,7 @@ module Aws::ECS
|
|
|
23
23
|
AcceleratorType = Shapes::StringShape.new(name: 'AcceleratorType')
|
|
24
24
|
AcceleratorTypeSet = Shapes::ListShape.new(name: 'AcceleratorTypeSet')
|
|
25
25
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
26
|
+
AccessType = Shapes::StringShape.new(name: 'AccessType')
|
|
26
27
|
AdvancedConfiguration = Shapes::StructureShape.new(name: 'AdvancedConfiguration')
|
|
27
28
|
AgentUpdateStatus = Shapes::StringShape.new(name: 'AgentUpdateStatus')
|
|
28
29
|
AllowedInstanceType = Shapes::StringShape.new(name: 'AllowedInstanceType')
|
|
@@ -108,6 +109,8 @@ module Aws::ECS
|
|
|
108
109
|
CreateCapacityProviderResponse = Shapes::StructureShape.new(name: 'CreateCapacityProviderResponse')
|
|
109
110
|
CreateClusterRequest = Shapes::StructureShape.new(name: 'CreateClusterRequest')
|
|
110
111
|
CreateClusterResponse = Shapes::StructureShape.new(name: 'CreateClusterResponse')
|
|
112
|
+
CreateExpressGatewayServiceRequest = Shapes::StructureShape.new(name: 'CreateExpressGatewayServiceRequest')
|
|
113
|
+
CreateExpressGatewayServiceResponse = Shapes::StructureShape.new(name: 'CreateExpressGatewayServiceResponse')
|
|
111
114
|
CreateManagedInstancesProviderConfiguration = Shapes::StructureShape.new(name: 'CreateManagedInstancesProviderConfiguration')
|
|
112
115
|
CreateServiceRequest = Shapes::StructureShape.new(name: 'CreateServiceRequest')
|
|
113
116
|
CreateServiceResponse = Shapes::StructureShape.new(name: 'CreateServiceResponse')
|
|
@@ -122,6 +125,8 @@ module Aws::ECS
|
|
|
122
125
|
DeleteCapacityProviderResponse = Shapes::StructureShape.new(name: 'DeleteCapacityProviderResponse')
|
|
123
126
|
DeleteClusterRequest = Shapes::StructureShape.new(name: 'DeleteClusterRequest')
|
|
124
127
|
DeleteClusterResponse = Shapes::StructureShape.new(name: 'DeleteClusterResponse')
|
|
128
|
+
DeleteExpressGatewayServiceRequest = Shapes::StructureShape.new(name: 'DeleteExpressGatewayServiceRequest')
|
|
129
|
+
DeleteExpressGatewayServiceResponse = Shapes::StructureShape.new(name: 'DeleteExpressGatewayServiceResponse')
|
|
125
130
|
DeleteServiceRequest = Shapes::StructureShape.new(name: 'DeleteServiceRequest')
|
|
126
131
|
DeleteServiceResponse = Shapes::StructureShape.new(name: 'DeleteServiceResponse')
|
|
127
132
|
DeleteTaskDefinitionsRequest = Shapes::StructureShape.new(name: 'DeleteTaskDefinitionsRequest')
|
|
@@ -152,6 +157,8 @@ module Aws::ECS
|
|
|
152
157
|
DescribeClustersResponse = Shapes::StructureShape.new(name: 'DescribeClustersResponse')
|
|
153
158
|
DescribeContainerInstancesRequest = Shapes::StructureShape.new(name: 'DescribeContainerInstancesRequest')
|
|
154
159
|
DescribeContainerInstancesResponse = Shapes::StructureShape.new(name: 'DescribeContainerInstancesResponse')
|
|
160
|
+
DescribeExpressGatewayServiceRequest = Shapes::StructureShape.new(name: 'DescribeExpressGatewayServiceRequest')
|
|
161
|
+
DescribeExpressGatewayServiceResponse = Shapes::StructureShape.new(name: 'DescribeExpressGatewayServiceResponse')
|
|
155
162
|
DescribeServiceDeploymentsRequest = Shapes::StructureShape.new(name: 'DescribeServiceDeploymentsRequest')
|
|
156
163
|
DescribeServiceDeploymentsResponse = Shapes::StructureShape.new(name: 'DescribeServiceDeploymentsResponse')
|
|
157
164
|
DescribeServiceRevisionsRequest = Shapes::StructureShape.new(name: 'DescribeServiceRevisionsRequest')
|
|
@@ -181,6 +188,8 @@ module Aws::ECS
|
|
|
181
188
|
EBSTagSpecification = Shapes::StructureShape.new(name: 'EBSTagSpecification')
|
|
182
189
|
EBSTagSpecifications = Shapes::ListShape.new(name: 'EBSTagSpecifications')
|
|
183
190
|
EBSVolumeType = Shapes::StringShape.new(name: 'EBSVolumeType')
|
|
191
|
+
ECSExpressGatewayService = Shapes::StructureShape.new(name: 'ECSExpressGatewayService')
|
|
192
|
+
ECSManagedResources = Shapes::StructureShape.new(name: 'ECSManagedResources')
|
|
184
193
|
ECSVolumeName = Shapes::StringShape.new(name: 'ECSVolumeName')
|
|
185
194
|
EFSAuthorizationConfig = Shapes::StructureShape.new(name: 'EFSAuthorizationConfig')
|
|
186
195
|
EFSAuthorizationConfigIAM = Shapes::StringShape.new(name: 'EFSAuthorizationConfigIAM')
|
|
@@ -198,6 +207,18 @@ module Aws::ECS
|
|
|
198
207
|
ExecuteCommandLogging = Shapes::StringShape.new(name: 'ExecuteCommandLogging')
|
|
199
208
|
ExecuteCommandRequest = Shapes::StructureShape.new(name: 'ExecuteCommandRequest')
|
|
200
209
|
ExecuteCommandResponse = Shapes::StructureShape.new(name: 'ExecuteCommandResponse')
|
|
210
|
+
ExpressGatewayContainer = Shapes::StructureShape.new(name: 'ExpressGatewayContainer')
|
|
211
|
+
ExpressGatewayRepositoryCredentials = Shapes::StructureShape.new(name: 'ExpressGatewayRepositoryCredentials')
|
|
212
|
+
ExpressGatewayScalingTarget = Shapes::StructureShape.new(name: 'ExpressGatewayScalingTarget')
|
|
213
|
+
ExpressGatewayServiceAwsLogsConfiguration = Shapes::StructureShape.new(name: 'ExpressGatewayServiceAwsLogsConfiguration')
|
|
214
|
+
ExpressGatewayServiceConfiguration = Shapes::StructureShape.new(name: 'ExpressGatewayServiceConfiguration')
|
|
215
|
+
ExpressGatewayServiceConfigurations = Shapes::ListShape.new(name: 'ExpressGatewayServiceConfigurations')
|
|
216
|
+
ExpressGatewayServiceInclude = Shapes::StringShape.new(name: 'ExpressGatewayServiceInclude')
|
|
217
|
+
ExpressGatewayServiceIncludeList = Shapes::ListShape.new(name: 'ExpressGatewayServiceIncludeList')
|
|
218
|
+
ExpressGatewayServiceNetworkConfiguration = Shapes::StructureShape.new(name: 'ExpressGatewayServiceNetworkConfiguration')
|
|
219
|
+
ExpressGatewayServiceScalingMetric = Shapes::StringShape.new(name: 'ExpressGatewayServiceScalingMetric')
|
|
220
|
+
ExpressGatewayServiceStatus = Shapes::StructureShape.new(name: 'ExpressGatewayServiceStatus')
|
|
221
|
+
ExpressGatewayServiceStatusCode = Shapes::StringShape.new(name: 'ExpressGatewayServiceStatusCode')
|
|
201
222
|
FSxWindowsFileServerAuthorizationConfig = Shapes::StructureShape.new(name: 'FSxWindowsFileServerAuthorizationConfig')
|
|
202
223
|
FSxWindowsFileServerVolumeConfiguration = Shapes::StructureShape.new(name: 'FSxWindowsFileServerVolumeConfiguration')
|
|
203
224
|
Failure = Shapes::StructureShape.new(name: 'Failure')
|
|
@@ -220,6 +241,8 @@ module Aws::ECS
|
|
|
220
241
|
InferenceAcceleratorOverrides = Shapes::ListShape.new(name: 'InferenceAcceleratorOverrides')
|
|
221
242
|
InferenceAccelerators = Shapes::ListShape.new(name: 'InferenceAccelerators')
|
|
222
243
|
InfrastructureOptimization = Shapes::StructureShape.new(name: 'InfrastructureOptimization')
|
|
244
|
+
IngressPathSummaries = Shapes::ListShape.new(name: 'IngressPathSummaries')
|
|
245
|
+
IngressPathSummary = Shapes::StructureShape.new(name: 'IngressPathSummary')
|
|
223
246
|
InstanceGeneration = Shapes::StringShape.new(name: 'InstanceGeneration')
|
|
224
247
|
InstanceGenerationSet = Shapes::ListShape.new(name: 'InstanceGenerationSet')
|
|
225
248
|
InstanceHealthCheckResult = Shapes::StructureShape.new(name: 'InstanceHealthCheckResult')
|
|
@@ -275,17 +298,36 @@ module Aws::ECS
|
|
|
275
298
|
ManagedAgentStateChange = Shapes::StructureShape.new(name: 'ManagedAgentStateChange')
|
|
276
299
|
ManagedAgentStateChanges = Shapes::ListShape.new(name: 'ManagedAgentStateChanges')
|
|
277
300
|
ManagedAgents = Shapes::ListShape.new(name: 'ManagedAgents')
|
|
301
|
+
ManagedApplicationAutoScalingPolicies = Shapes::ListShape.new(name: 'ManagedApplicationAutoScalingPolicies')
|
|
302
|
+
ManagedApplicationAutoScalingPolicy = Shapes::StructureShape.new(name: 'ManagedApplicationAutoScalingPolicy')
|
|
303
|
+
ManagedAutoScaling = Shapes::StructureShape.new(name: 'ManagedAutoScaling')
|
|
304
|
+
ManagedCertificate = Shapes::StructureShape.new(name: 'ManagedCertificate')
|
|
278
305
|
ManagedDraining = Shapes::StringShape.new(name: 'ManagedDraining')
|
|
306
|
+
ManagedIngressPath = Shapes::StructureShape.new(name: 'ManagedIngressPath')
|
|
307
|
+
ManagedIngressPaths = Shapes::ListShape.new(name: 'ManagedIngressPaths')
|
|
279
308
|
ManagedInstancesMonitoringOptions = Shapes::StringShape.new(name: 'ManagedInstancesMonitoringOptions')
|
|
280
309
|
ManagedInstancesNetworkConfiguration = Shapes::StructureShape.new(name: 'ManagedInstancesNetworkConfiguration')
|
|
281
310
|
ManagedInstancesProvider = Shapes::StructureShape.new(name: 'ManagedInstancesProvider')
|
|
282
311
|
ManagedInstancesStorageConfiguration = Shapes::StructureShape.new(name: 'ManagedInstancesStorageConfiguration')
|
|
312
|
+
ManagedListener = Shapes::StructureShape.new(name: 'ManagedListener')
|
|
313
|
+
ManagedListenerRule = Shapes::StructureShape.new(name: 'ManagedListenerRule')
|
|
314
|
+
ManagedLoadBalancer = Shapes::StructureShape.new(name: 'ManagedLoadBalancer')
|
|
315
|
+
ManagedLogGroup = Shapes::StructureShape.new(name: 'ManagedLogGroup')
|
|
316
|
+
ManagedLogGroups = Shapes::ListShape.new(name: 'ManagedLogGroups')
|
|
317
|
+
ManagedMetricAlarm = Shapes::StructureShape.new(name: 'ManagedMetricAlarm')
|
|
318
|
+
ManagedMetricAlarms = Shapes::ListShape.new(name: 'ManagedMetricAlarms')
|
|
319
|
+
ManagedResourceStatus = Shapes::StringShape.new(name: 'ManagedResourceStatus')
|
|
320
|
+
ManagedScalableTarget = Shapes::StructureShape.new(name: 'ManagedScalableTarget')
|
|
283
321
|
ManagedScaling = Shapes::StructureShape.new(name: 'ManagedScaling')
|
|
284
322
|
ManagedScalingInstanceWarmupPeriod = Shapes::IntegerShape.new(name: 'ManagedScalingInstanceWarmupPeriod')
|
|
285
323
|
ManagedScalingStatus = Shapes::StringShape.new(name: 'ManagedScalingStatus')
|
|
286
324
|
ManagedScalingStepSize = Shapes::IntegerShape.new(name: 'ManagedScalingStepSize')
|
|
287
325
|
ManagedScalingTargetCapacity = Shapes::IntegerShape.new(name: 'ManagedScalingTargetCapacity')
|
|
326
|
+
ManagedSecurityGroup = Shapes::StructureShape.new(name: 'ManagedSecurityGroup')
|
|
327
|
+
ManagedSecurityGroups = Shapes::ListShape.new(name: 'ManagedSecurityGroups')
|
|
288
328
|
ManagedStorageConfiguration = Shapes::StructureShape.new(name: 'ManagedStorageConfiguration')
|
|
329
|
+
ManagedTargetGroup = Shapes::StructureShape.new(name: 'ManagedTargetGroup')
|
|
330
|
+
ManagedTargetGroups = Shapes::ListShape.new(name: 'ManagedTargetGroups')
|
|
289
331
|
ManagedTerminationProtection = Shapes::StringShape.new(name: 'ManagedTerminationProtection')
|
|
290
332
|
MemoryGiBPerVCpuRequest = Shapes::StructureShape.new(name: 'MemoryGiBPerVCpuRequest')
|
|
291
333
|
MemoryMiBRequest = Shapes::StructureShape.new(name: 'MemoryMiBRequest')
|
|
@@ -343,6 +385,7 @@ module Aws::ECS
|
|
|
343
385
|
Resource = Shapes::StructureShape.new(name: 'Resource')
|
|
344
386
|
ResourceIds = Shapes::ListShape.new(name: 'ResourceIds')
|
|
345
387
|
ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
|
|
388
|
+
ResourceManagementType = Shapes::StringShape.new(name: 'ResourceManagementType')
|
|
346
389
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
347
390
|
ResourceRequirement = Shapes::StructureShape.new(name: 'ResourceRequirement')
|
|
348
391
|
ResourceRequirements = Shapes::ListShape.new(name: 'ResourceRequirements')
|
|
@@ -376,6 +419,8 @@ module Aws::ECS
|
|
|
376
419
|
ServiceConnectTestTrafficRules = Shapes::StructureShape.new(name: 'ServiceConnectTestTrafficRules')
|
|
377
420
|
ServiceConnectTlsCertificateAuthority = Shapes::StructureShape.new(name: 'ServiceConnectTlsCertificateAuthority')
|
|
378
421
|
ServiceConnectTlsConfiguration = Shapes::StructureShape.new(name: 'ServiceConnectTlsConfiguration')
|
|
422
|
+
ServiceCurrentRevisionSummary = Shapes::StructureShape.new(name: 'ServiceCurrentRevisionSummary')
|
|
423
|
+
ServiceCurrentRevisionSummaryList = Shapes::ListShape.new(name: 'ServiceCurrentRevisionSummaryList')
|
|
379
424
|
ServiceDeployment = Shapes::StructureShape.new(name: 'ServiceDeployment')
|
|
380
425
|
ServiceDeploymentAlarms = Shapes::StructureShape.new(name: 'ServiceDeploymentAlarms')
|
|
381
426
|
ServiceDeploymentBrief = Shapes::StructureShape.new(name: 'ServiceDeploymentBrief')
|
|
@@ -490,6 +535,8 @@ module Aws::ECS
|
|
|
490
535
|
UpdateContainerAgentResponse = Shapes::StructureShape.new(name: 'UpdateContainerAgentResponse')
|
|
491
536
|
UpdateContainerInstancesStateRequest = Shapes::StructureShape.new(name: 'UpdateContainerInstancesStateRequest')
|
|
492
537
|
UpdateContainerInstancesStateResponse = Shapes::StructureShape.new(name: 'UpdateContainerInstancesStateResponse')
|
|
538
|
+
UpdateExpressGatewayServiceRequest = Shapes::StructureShape.new(name: 'UpdateExpressGatewayServiceRequest')
|
|
539
|
+
UpdateExpressGatewayServiceResponse = Shapes::StructureShape.new(name: 'UpdateExpressGatewayServiceResponse')
|
|
493
540
|
UpdateInProgressException = Shapes::StructureShape.new(name: 'UpdateInProgressException')
|
|
494
541
|
UpdateManagedInstancesProviderConfiguration = Shapes::StructureShape.new(name: 'UpdateManagedInstancesProviderConfiguration')
|
|
495
542
|
UpdateServicePrimaryTaskSetRequest = Shapes::StructureShape.new(name: 'UpdateServicePrimaryTaskSetRequest')
|
|
@@ -500,6 +547,7 @@ module Aws::ECS
|
|
|
500
547
|
UpdateTaskProtectionResponse = Shapes::StructureShape.new(name: 'UpdateTaskProtectionResponse')
|
|
501
548
|
UpdateTaskSetRequest = Shapes::StructureShape.new(name: 'UpdateTaskSetRequest')
|
|
502
549
|
UpdateTaskSetResponse = Shapes::StructureShape.new(name: 'UpdateTaskSetResponse')
|
|
550
|
+
UpdatedExpressGatewayService = Shapes::StructureShape.new(name: 'UpdatedExpressGatewayService')
|
|
503
551
|
VCpuCountRangeRequest = Shapes::StructureShape.new(name: 'VCpuCountRangeRequest')
|
|
504
552
|
VersionConsistency = Shapes::StringShape.new(name: 'VersionConsistency')
|
|
505
553
|
VersionInfo = Shapes::StructureShape.new(name: 'VersionInfo')
|
|
@@ -825,6 +873,23 @@ module Aws::ECS
|
|
|
825
873
|
CreateClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
|
|
826
874
|
CreateClusterResponse.struct_class = Types::CreateClusterResponse
|
|
827
875
|
|
|
876
|
+
CreateExpressGatewayServiceRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "executionRoleArn"))
|
|
877
|
+
CreateExpressGatewayServiceRequest.add_member(:infrastructure_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "infrastructureRoleArn"))
|
|
878
|
+
CreateExpressGatewayServiceRequest.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceName"))
|
|
879
|
+
CreateExpressGatewayServiceRequest.add_member(:cluster, Shapes::ShapeRef.new(shape: String, location_name: "cluster"))
|
|
880
|
+
CreateExpressGatewayServiceRequest.add_member(:health_check_path, Shapes::ShapeRef.new(shape: String, location_name: "healthCheckPath"))
|
|
881
|
+
CreateExpressGatewayServiceRequest.add_member(:primary_container, Shapes::ShapeRef.new(shape: ExpressGatewayContainer, required: true, location_name: "primaryContainer"))
|
|
882
|
+
CreateExpressGatewayServiceRequest.add_member(:task_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskRoleArn"))
|
|
883
|
+
CreateExpressGatewayServiceRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: ExpressGatewayServiceNetworkConfiguration, location_name: "networkConfiguration"))
|
|
884
|
+
CreateExpressGatewayServiceRequest.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
|
|
885
|
+
CreateExpressGatewayServiceRequest.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
886
|
+
CreateExpressGatewayServiceRequest.add_member(:scaling_target, Shapes::ShapeRef.new(shape: ExpressGatewayScalingTarget, location_name: "scalingTarget"))
|
|
887
|
+
CreateExpressGatewayServiceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
888
|
+
CreateExpressGatewayServiceRequest.struct_class = Types::CreateExpressGatewayServiceRequest
|
|
889
|
+
|
|
890
|
+
CreateExpressGatewayServiceResponse.add_member(:service, Shapes::ShapeRef.new(shape: ECSExpressGatewayService, location_name: "service"))
|
|
891
|
+
CreateExpressGatewayServiceResponse.struct_class = Types::CreateExpressGatewayServiceResponse
|
|
892
|
+
|
|
828
893
|
CreateManagedInstancesProviderConfiguration.add_member(:infrastructure_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "infrastructureRoleArn"))
|
|
829
894
|
CreateManagedInstancesProviderConfiguration.add_member(:instance_launch_template, Shapes::ShapeRef.new(shape: InstanceLaunchTemplate, required: true, location_name: "instanceLaunchTemplate"))
|
|
830
895
|
CreateManagedInstancesProviderConfiguration.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: PropagateMITags, location_name: "propagateTags"))
|
|
@@ -911,6 +976,12 @@ module Aws::ECS
|
|
|
911
976
|
DeleteClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
|
|
912
977
|
DeleteClusterResponse.struct_class = Types::DeleteClusterResponse
|
|
913
978
|
|
|
979
|
+
DeleteExpressGatewayServiceRequest.add_member(:service_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceArn"))
|
|
980
|
+
DeleteExpressGatewayServiceRequest.struct_class = Types::DeleteExpressGatewayServiceRequest
|
|
981
|
+
|
|
982
|
+
DeleteExpressGatewayServiceResponse.add_member(:service, Shapes::ShapeRef.new(shape: ECSExpressGatewayService, location_name: "service"))
|
|
983
|
+
DeleteExpressGatewayServiceResponse.struct_class = Types::DeleteExpressGatewayServiceResponse
|
|
984
|
+
|
|
914
985
|
DeleteServiceRequest.add_member(:cluster, Shapes::ShapeRef.new(shape: String, location_name: "cluster"))
|
|
915
986
|
DeleteServiceRequest.add_member(:service, Shapes::ShapeRef.new(shape: String, required: true, location_name: "service"))
|
|
916
987
|
DeleteServiceRequest.add_member(:force, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "force"))
|
|
@@ -1039,6 +1110,13 @@ module Aws::ECS
|
|
|
1039
1110
|
DescribeContainerInstancesResponse.add_member(:failures, Shapes::ShapeRef.new(shape: Failures, location_name: "failures"))
|
|
1040
1111
|
DescribeContainerInstancesResponse.struct_class = Types::DescribeContainerInstancesResponse
|
|
1041
1112
|
|
|
1113
|
+
DescribeExpressGatewayServiceRequest.add_member(:service_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceArn"))
|
|
1114
|
+
DescribeExpressGatewayServiceRequest.add_member(:include, Shapes::ShapeRef.new(shape: ExpressGatewayServiceIncludeList, location_name: "include"))
|
|
1115
|
+
DescribeExpressGatewayServiceRequest.struct_class = Types::DescribeExpressGatewayServiceRequest
|
|
1116
|
+
|
|
1117
|
+
DescribeExpressGatewayServiceResponse.add_member(:service, Shapes::ShapeRef.new(shape: ECSExpressGatewayService, location_name: "service"))
|
|
1118
|
+
DescribeExpressGatewayServiceResponse.struct_class = Types::DescribeExpressGatewayServiceResponse
|
|
1119
|
+
|
|
1042
1120
|
DescribeServiceDeploymentsRequest.add_member(:service_deployment_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "serviceDeploymentArns"))
|
|
1043
1121
|
DescribeServiceDeploymentsRequest.struct_class = Types::DescribeServiceDeploymentsRequest
|
|
1044
1122
|
|
|
@@ -1124,6 +1202,25 @@ module Aws::ECS
|
|
|
1124
1202
|
|
|
1125
1203
|
EBSTagSpecifications.member = Shapes::ShapeRef.new(shape: EBSTagSpecification)
|
|
1126
1204
|
|
|
1205
|
+
ECSExpressGatewayService.add_member(:cluster, Shapes::ShapeRef.new(shape: String, location_name: "cluster"))
|
|
1206
|
+
ECSExpressGatewayService.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceName"))
|
|
1207
|
+
ECSExpressGatewayService.add_member(:service_arn, Shapes::ShapeRef.new(shape: String, location_name: "serviceArn"))
|
|
1208
|
+
ECSExpressGatewayService.add_member(:infrastructure_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "infrastructureRoleArn"))
|
|
1209
|
+
ECSExpressGatewayService.add_member(:status, Shapes::ShapeRef.new(shape: ExpressGatewayServiceStatus, location_name: "status"))
|
|
1210
|
+
ECSExpressGatewayService.add_member(:current_deployment, Shapes::ShapeRef.new(shape: String, location_name: "currentDeployment"))
|
|
1211
|
+
ECSExpressGatewayService.add_member(:active_configurations, Shapes::ShapeRef.new(shape: ExpressGatewayServiceConfigurations, location_name: "activeConfigurations"))
|
|
1212
|
+
ECSExpressGatewayService.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
1213
|
+
ECSExpressGatewayService.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
1214
|
+
ECSExpressGatewayService.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
|
1215
|
+
ECSExpressGatewayService.struct_class = Types::ECSExpressGatewayService
|
|
1216
|
+
|
|
1217
|
+
ECSManagedResources.add_member(:ingress_paths, Shapes::ShapeRef.new(shape: ManagedIngressPaths, location_name: "ingressPaths"))
|
|
1218
|
+
ECSManagedResources.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ManagedAutoScaling, location_name: "autoScaling"))
|
|
1219
|
+
ECSManagedResources.add_member(:metric_alarms, Shapes::ShapeRef.new(shape: ManagedMetricAlarms, location_name: "metricAlarms"))
|
|
1220
|
+
ECSManagedResources.add_member(:service_security_groups, Shapes::ShapeRef.new(shape: ManagedSecurityGroups, location_name: "serviceSecurityGroups"))
|
|
1221
|
+
ECSManagedResources.add_member(:log_groups, Shapes::ShapeRef.new(shape: ManagedLogGroups, location_name: "logGroups"))
|
|
1222
|
+
ECSManagedResources.struct_class = Types::ECSManagedResources
|
|
1223
|
+
|
|
1127
1224
|
EFSAuthorizationConfig.add_member(:access_point_id, Shapes::ShapeRef.new(shape: String, location_name: "accessPointId"))
|
|
1128
1225
|
EFSAuthorizationConfig.add_member(:iam, Shapes::ShapeRef.new(shape: EFSAuthorizationConfigIAM, location_name: "iam"))
|
|
1129
1226
|
EFSAuthorizationConfig.struct_class = Types::EFSAuthorizationConfig
|
|
@@ -1175,6 +1272,53 @@ module Aws::ECS
|
|
|
1175
1272
|
ExecuteCommandResponse.add_member(:task_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskArn"))
|
|
1176
1273
|
ExecuteCommandResponse.struct_class = Types::ExecuteCommandResponse
|
|
1177
1274
|
|
|
1275
|
+
ExpressGatewayContainer.add_member(:image, Shapes::ShapeRef.new(shape: String, required: true, location_name: "image"))
|
|
1276
|
+
ExpressGatewayContainer.add_member(:container_port, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "containerPort"))
|
|
1277
|
+
ExpressGatewayContainer.add_member(:aws_logs_configuration, Shapes::ShapeRef.new(shape: ExpressGatewayServiceAwsLogsConfiguration, location_name: "awsLogsConfiguration"))
|
|
1278
|
+
ExpressGatewayContainer.add_member(:repository_credentials, Shapes::ShapeRef.new(shape: ExpressGatewayRepositoryCredentials, location_name: "repositoryCredentials"))
|
|
1279
|
+
ExpressGatewayContainer.add_member(:command, Shapes::ShapeRef.new(shape: StringList, location_name: "command"))
|
|
1280
|
+
ExpressGatewayContainer.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environment"))
|
|
1281
|
+
ExpressGatewayContainer.add_member(:secrets, Shapes::ShapeRef.new(shape: SecretList, location_name: "secrets"))
|
|
1282
|
+
ExpressGatewayContainer.struct_class = Types::ExpressGatewayContainer
|
|
1283
|
+
|
|
1284
|
+
ExpressGatewayRepositoryCredentials.add_member(:credentials_parameter, Shapes::ShapeRef.new(shape: String, location_name: "credentialsParameter"))
|
|
1285
|
+
ExpressGatewayRepositoryCredentials.struct_class = Types::ExpressGatewayRepositoryCredentials
|
|
1286
|
+
|
|
1287
|
+
ExpressGatewayScalingTarget.add_member(:min_task_count, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "minTaskCount"))
|
|
1288
|
+
ExpressGatewayScalingTarget.add_member(:max_task_count, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "maxTaskCount"))
|
|
1289
|
+
ExpressGatewayScalingTarget.add_member(:auto_scaling_metric, Shapes::ShapeRef.new(shape: ExpressGatewayServiceScalingMetric, location_name: "autoScalingMetric"))
|
|
1290
|
+
ExpressGatewayScalingTarget.add_member(:auto_scaling_target_value, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "autoScalingTargetValue"))
|
|
1291
|
+
ExpressGatewayScalingTarget.struct_class = Types::ExpressGatewayScalingTarget
|
|
1292
|
+
|
|
1293
|
+
ExpressGatewayServiceAwsLogsConfiguration.add_member(:log_group, Shapes::ShapeRef.new(shape: String, required: true, location_name: "logGroup"))
|
|
1294
|
+
ExpressGatewayServiceAwsLogsConfiguration.add_member(:log_stream_prefix, Shapes::ShapeRef.new(shape: String, required: true, location_name: "logStreamPrefix"))
|
|
1295
|
+
ExpressGatewayServiceAwsLogsConfiguration.struct_class = Types::ExpressGatewayServiceAwsLogsConfiguration
|
|
1296
|
+
|
|
1297
|
+
ExpressGatewayServiceConfiguration.add_member(:service_revision_arn, Shapes::ShapeRef.new(shape: String, location_name: "serviceRevisionArn"))
|
|
1298
|
+
ExpressGatewayServiceConfiguration.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "executionRoleArn"))
|
|
1299
|
+
ExpressGatewayServiceConfiguration.add_member(:task_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskRoleArn"))
|
|
1300
|
+
ExpressGatewayServiceConfiguration.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
|
|
1301
|
+
ExpressGatewayServiceConfiguration.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
1302
|
+
ExpressGatewayServiceConfiguration.add_member(:network_configuration, Shapes::ShapeRef.new(shape: ExpressGatewayServiceNetworkConfiguration, location_name: "networkConfiguration"))
|
|
1303
|
+
ExpressGatewayServiceConfiguration.add_member(:health_check_path, Shapes::ShapeRef.new(shape: String, location_name: "healthCheckPath"))
|
|
1304
|
+
ExpressGatewayServiceConfiguration.add_member(:primary_container, Shapes::ShapeRef.new(shape: ExpressGatewayContainer, location_name: "primaryContainer"))
|
|
1305
|
+
ExpressGatewayServiceConfiguration.add_member(:scaling_target, Shapes::ShapeRef.new(shape: ExpressGatewayScalingTarget, location_name: "scalingTarget"))
|
|
1306
|
+
ExpressGatewayServiceConfiguration.add_member(:ingress_paths, Shapes::ShapeRef.new(shape: IngressPathSummaries, location_name: "ingressPaths"))
|
|
1307
|
+
ExpressGatewayServiceConfiguration.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
1308
|
+
ExpressGatewayServiceConfiguration.struct_class = Types::ExpressGatewayServiceConfiguration
|
|
1309
|
+
|
|
1310
|
+
ExpressGatewayServiceConfigurations.member = Shapes::ShapeRef.new(shape: ExpressGatewayServiceConfiguration)
|
|
1311
|
+
|
|
1312
|
+
ExpressGatewayServiceIncludeList.member = Shapes::ShapeRef.new(shape: ExpressGatewayServiceInclude)
|
|
1313
|
+
|
|
1314
|
+
ExpressGatewayServiceNetworkConfiguration.add_member(:security_groups, Shapes::ShapeRef.new(shape: StringList, location_name: "securityGroups"))
|
|
1315
|
+
ExpressGatewayServiceNetworkConfiguration.add_member(:subnets, Shapes::ShapeRef.new(shape: StringList, location_name: "subnets"))
|
|
1316
|
+
ExpressGatewayServiceNetworkConfiguration.struct_class = Types::ExpressGatewayServiceNetworkConfiguration
|
|
1317
|
+
|
|
1318
|
+
ExpressGatewayServiceStatus.add_member(:status_code, Shapes::ShapeRef.new(shape: ExpressGatewayServiceStatusCode, location_name: "statusCode"))
|
|
1319
|
+
ExpressGatewayServiceStatus.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1320
|
+
ExpressGatewayServiceStatus.struct_class = Types::ExpressGatewayServiceStatus
|
|
1321
|
+
|
|
1178
1322
|
FSxWindowsFileServerAuthorizationConfig.add_member(:credentials_parameter, Shapes::ShapeRef.new(shape: String, required: true, location_name: "credentialsParameter"))
|
|
1179
1323
|
FSxWindowsFileServerAuthorizationConfig.add_member(:domain, Shapes::ShapeRef.new(shape: String, required: true, location_name: "domain"))
|
|
1180
1324
|
FSxWindowsFileServerAuthorizationConfig.struct_class = Types::FSxWindowsFileServerAuthorizationConfig
|
|
@@ -1239,6 +1383,12 @@ module Aws::ECS
|
|
|
1239
1383
|
InfrastructureOptimization.add_member(:scale_in_after, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "scaleInAfter"))
|
|
1240
1384
|
InfrastructureOptimization.struct_class = Types::InfrastructureOptimization
|
|
1241
1385
|
|
|
1386
|
+
IngressPathSummaries.member = Shapes::ShapeRef.new(shape: IngressPathSummary)
|
|
1387
|
+
|
|
1388
|
+
IngressPathSummary.add_member(:access_type, Shapes::ShapeRef.new(shape: AccessType, required: true, location_name: "accessType"))
|
|
1389
|
+
IngressPathSummary.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, required: true, location_name: "endpoint"))
|
|
1390
|
+
IngressPathSummary.struct_class = Types::IngressPathSummary
|
|
1391
|
+
|
|
1242
1392
|
InstanceGenerationSet.member = Shapes::ShapeRef.new(shape: InstanceGeneration)
|
|
1243
1393
|
|
|
1244
1394
|
InstanceHealthCheckResult.add_member(:type, Shapes::ShapeRef.new(shape: InstanceHealthCheckType, location_name: "type"))
|
|
@@ -1385,6 +1535,7 @@ module Aws::ECS
|
|
|
1385
1535
|
ListServicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "maxResults"))
|
|
1386
1536
|
ListServicesRequest.add_member(:launch_type, Shapes::ShapeRef.new(shape: LaunchType, location_name: "launchType"))
|
|
1387
1537
|
ListServicesRequest.add_member(:scheduling_strategy, Shapes::ShapeRef.new(shape: SchedulingStrategy, location_name: "schedulingStrategy"))
|
|
1538
|
+
ListServicesRequest.add_member(:resource_management_type, Shapes::ShapeRef.new(shape: ResourceManagementType, location_name: "resourceManagementType"))
|
|
1388
1539
|
ListServicesRequest.struct_class = Types::ListServicesRequest
|
|
1389
1540
|
|
|
1390
1541
|
ListServicesResponse.add_member(:service_arns, Shapes::ShapeRef.new(shape: StringList, location_name: "serviceArns"))
|
|
@@ -1468,6 +1619,40 @@ module Aws::ECS
|
|
|
1468
1619
|
|
|
1469
1620
|
ManagedAgents.member = Shapes::ShapeRef.new(shape: ManagedAgent)
|
|
1470
1621
|
|
|
1622
|
+
ManagedApplicationAutoScalingPolicies.member = Shapes::ShapeRef.new(shape: ManagedApplicationAutoScalingPolicy)
|
|
1623
|
+
|
|
1624
|
+
ManagedApplicationAutoScalingPolicy.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1625
|
+
ManagedApplicationAutoScalingPolicy.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1626
|
+
ManagedApplicationAutoScalingPolicy.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1627
|
+
ManagedApplicationAutoScalingPolicy.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1628
|
+
ManagedApplicationAutoScalingPolicy.add_member(:policy_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "policyType"))
|
|
1629
|
+
ManagedApplicationAutoScalingPolicy.add_member(:target_value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "targetValue"))
|
|
1630
|
+
ManagedApplicationAutoScalingPolicy.add_member(:metric, Shapes::ShapeRef.new(shape: String, required: true, location_name: "metric"))
|
|
1631
|
+
ManagedApplicationAutoScalingPolicy.struct_class = Types::ManagedApplicationAutoScalingPolicy
|
|
1632
|
+
|
|
1633
|
+
ManagedAutoScaling.add_member(:scalable_target, Shapes::ShapeRef.new(shape: ManagedScalableTarget, location_name: "scalableTarget"))
|
|
1634
|
+
ManagedAutoScaling.add_member(:application_auto_scaling_policies, Shapes::ShapeRef.new(shape: ManagedApplicationAutoScalingPolicies, location_name: "applicationAutoScalingPolicies"))
|
|
1635
|
+
ManagedAutoScaling.struct_class = Types::ManagedAutoScaling
|
|
1636
|
+
|
|
1637
|
+
ManagedCertificate.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1638
|
+
ManagedCertificate.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1639
|
+
ManagedCertificate.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1640
|
+
ManagedCertificate.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1641
|
+
ManagedCertificate.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "domainName"))
|
|
1642
|
+
ManagedCertificate.struct_class = Types::ManagedCertificate
|
|
1643
|
+
|
|
1644
|
+
ManagedIngressPath.add_member(:access_type, Shapes::ShapeRef.new(shape: AccessType, required: true, location_name: "accessType"))
|
|
1645
|
+
ManagedIngressPath.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, required: true, location_name: "endpoint"))
|
|
1646
|
+
ManagedIngressPath.add_member(:load_balancer, Shapes::ShapeRef.new(shape: ManagedLoadBalancer, location_name: "loadBalancer"))
|
|
1647
|
+
ManagedIngressPath.add_member(:load_balancer_security_groups, Shapes::ShapeRef.new(shape: ManagedSecurityGroups, location_name: "loadBalancerSecurityGroups"))
|
|
1648
|
+
ManagedIngressPath.add_member(:certificate, Shapes::ShapeRef.new(shape: ManagedCertificate, location_name: "certificate"))
|
|
1649
|
+
ManagedIngressPath.add_member(:listener, Shapes::ShapeRef.new(shape: ManagedListener, location_name: "listener"))
|
|
1650
|
+
ManagedIngressPath.add_member(:rule, Shapes::ShapeRef.new(shape: ManagedListenerRule, location_name: "rule"))
|
|
1651
|
+
ManagedIngressPath.add_member(:target_groups, Shapes::ShapeRef.new(shape: ManagedTargetGroups, location_name: "targetGroups"))
|
|
1652
|
+
ManagedIngressPath.struct_class = Types::ManagedIngressPath
|
|
1653
|
+
|
|
1654
|
+
ManagedIngressPaths.member = Shapes::ShapeRef.new(shape: ManagedIngressPath)
|
|
1655
|
+
|
|
1471
1656
|
ManagedInstancesNetworkConfiguration.add_member(:subnets, Shapes::ShapeRef.new(shape: StringList, location_name: "subnets"))
|
|
1472
1657
|
ManagedInstancesNetworkConfiguration.add_member(:security_groups, Shapes::ShapeRef.new(shape: StringList, location_name: "securityGroups"))
|
|
1473
1658
|
ManagedInstancesNetworkConfiguration.struct_class = Types::ManagedInstancesNetworkConfiguration
|
|
@@ -1481,6 +1666,52 @@ module Aws::ECS
|
|
|
1481
1666
|
ManagedInstancesStorageConfiguration.add_member(:storage_size_gi_b, Shapes::ShapeRef.new(shape: TaskVolumeStorageGiB, location_name: "storageSizeGiB"))
|
|
1482
1667
|
ManagedInstancesStorageConfiguration.struct_class = Types::ManagedInstancesStorageConfiguration
|
|
1483
1668
|
|
|
1669
|
+
ManagedListener.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1670
|
+
ManagedListener.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1671
|
+
ManagedListener.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1672
|
+
ManagedListener.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1673
|
+
ManagedListener.struct_class = Types::ManagedListener
|
|
1674
|
+
|
|
1675
|
+
ManagedListenerRule.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1676
|
+
ManagedListenerRule.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1677
|
+
ManagedListenerRule.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1678
|
+
ManagedListenerRule.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1679
|
+
ManagedListenerRule.struct_class = Types::ManagedListenerRule
|
|
1680
|
+
|
|
1681
|
+
ManagedLoadBalancer.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1682
|
+
ManagedLoadBalancer.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1683
|
+
ManagedLoadBalancer.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1684
|
+
ManagedLoadBalancer.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1685
|
+
ManagedLoadBalancer.add_member(:scheme, Shapes::ShapeRef.new(shape: String, required: true, location_name: "scheme"))
|
|
1686
|
+
ManagedLoadBalancer.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "subnetIds"))
|
|
1687
|
+
ManagedLoadBalancer.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "securityGroupIds"))
|
|
1688
|
+
ManagedLoadBalancer.struct_class = Types::ManagedLoadBalancer
|
|
1689
|
+
|
|
1690
|
+
ManagedLogGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1691
|
+
ManagedLogGroup.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1692
|
+
ManagedLogGroup.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1693
|
+
ManagedLogGroup.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1694
|
+
ManagedLogGroup.add_member(:log_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "logGroupName"))
|
|
1695
|
+
ManagedLogGroup.struct_class = Types::ManagedLogGroup
|
|
1696
|
+
|
|
1697
|
+
ManagedLogGroups.member = Shapes::ShapeRef.new(shape: ManagedLogGroup)
|
|
1698
|
+
|
|
1699
|
+
ManagedMetricAlarm.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1700
|
+
ManagedMetricAlarm.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1701
|
+
ManagedMetricAlarm.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1702
|
+
ManagedMetricAlarm.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1703
|
+
ManagedMetricAlarm.struct_class = Types::ManagedMetricAlarm
|
|
1704
|
+
|
|
1705
|
+
ManagedMetricAlarms.member = Shapes::ShapeRef.new(shape: ManagedMetricAlarm)
|
|
1706
|
+
|
|
1707
|
+
ManagedScalableTarget.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1708
|
+
ManagedScalableTarget.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1709
|
+
ManagedScalableTarget.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1710
|
+
ManagedScalableTarget.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1711
|
+
ManagedScalableTarget.add_member(:min_capacity, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "minCapacity"))
|
|
1712
|
+
ManagedScalableTarget.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "maxCapacity"))
|
|
1713
|
+
ManagedScalableTarget.struct_class = Types::ManagedScalableTarget
|
|
1714
|
+
|
|
1484
1715
|
ManagedScaling.add_member(:status, Shapes::ShapeRef.new(shape: ManagedScalingStatus, location_name: "status"))
|
|
1485
1716
|
ManagedScaling.add_member(:target_capacity, Shapes::ShapeRef.new(shape: ManagedScalingTargetCapacity, location_name: "targetCapacity"))
|
|
1486
1717
|
ManagedScaling.add_member(:minimum_scaling_step_size, Shapes::ShapeRef.new(shape: ManagedScalingStepSize, location_name: "minimumScalingStepSize"))
|
|
@@ -1488,10 +1719,29 @@ module Aws::ECS
|
|
|
1488
1719
|
ManagedScaling.add_member(:instance_warmup_period, Shapes::ShapeRef.new(shape: ManagedScalingInstanceWarmupPeriod, location_name: "instanceWarmupPeriod"))
|
|
1489
1720
|
ManagedScaling.struct_class = Types::ManagedScaling
|
|
1490
1721
|
|
|
1722
|
+
ManagedSecurityGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1723
|
+
ManagedSecurityGroup.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1724
|
+
ManagedSecurityGroup.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1725
|
+
ManagedSecurityGroup.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1726
|
+
ManagedSecurityGroup.struct_class = Types::ManagedSecurityGroup
|
|
1727
|
+
|
|
1728
|
+
ManagedSecurityGroups.member = Shapes::ShapeRef.new(shape: ManagedSecurityGroup)
|
|
1729
|
+
|
|
1491
1730
|
ManagedStorageConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
|
|
1492
1731
|
ManagedStorageConfiguration.add_member(:fargate_ephemeral_storage_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "fargateEphemeralStorageKmsKeyId"))
|
|
1493
1732
|
ManagedStorageConfiguration.struct_class = Types::ManagedStorageConfiguration
|
|
1494
1733
|
|
|
1734
|
+
ManagedTargetGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
1735
|
+
ManagedTargetGroup.add_member(:status, Shapes::ShapeRef.new(shape: ManagedResourceStatus, required: true, location_name: "status"))
|
|
1736
|
+
ManagedTargetGroup.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1737
|
+
ManagedTargetGroup.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1738
|
+
ManagedTargetGroup.add_member(:health_check_path, Shapes::ShapeRef.new(shape: String, required: true, location_name: "healthCheckPath"))
|
|
1739
|
+
ManagedTargetGroup.add_member(:health_check_port, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "healthCheckPort"))
|
|
1740
|
+
ManagedTargetGroup.add_member(:port, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "port"))
|
|
1741
|
+
ManagedTargetGroup.struct_class = Types::ManagedTargetGroup
|
|
1742
|
+
|
|
1743
|
+
ManagedTargetGroups.member = Shapes::ShapeRef.new(shape: ManagedTargetGroup)
|
|
1744
|
+
|
|
1495
1745
|
MemoryGiBPerVCpuRequest.add_member(:min, Shapes::ShapeRef.new(shape: BoxedDouble, location_name: "min"))
|
|
1496
1746
|
MemoryGiBPerVCpuRequest.add_member(:max, Shapes::ShapeRef.new(shape: BoxedDouble, location_name: "max"))
|
|
1497
1747
|
MemoryGiBPerVCpuRequest.struct_class = Types::MemoryGiBPerVCpuRequest
|
|
@@ -1752,6 +2002,8 @@ module Aws::ECS
|
|
|
1752
2002
|
Service.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "roleArn"))
|
|
1753
2003
|
Service.add_member(:events, Shapes::ShapeRef.new(shape: ServiceEvents, location_name: "events"))
|
|
1754
2004
|
Service.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
2005
|
+
Service.add_member(:current_service_deployment, Shapes::ShapeRef.new(shape: String, location_name: "currentServiceDeployment"))
|
|
2006
|
+
Service.add_member(:current_service_revisions, Shapes::ShapeRef.new(shape: ServiceCurrentRevisionSummaryList, location_name: "currentServiceRevisions"))
|
|
1755
2007
|
Service.add_member(:placement_constraints, Shapes::ShapeRef.new(shape: PlacementConstraints, location_name: "placementConstraints"))
|
|
1756
2008
|
Service.add_member(:placement_strategy, Shapes::ShapeRef.new(shape: PlacementStrategies, location_name: "placementStrategy"))
|
|
1757
2009
|
Service.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
|
|
@@ -1764,6 +2016,7 @@ module Aws::ECS
|
|
|
1764
2016
|
Service.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: PropagateTags, location_name: "propagateTags"))
|
|
1765
2017
|
Service.add_member(:enable_execute_command, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableExecuteCommand"))
|
|
1766
2018
|
Service.add_member(:availability_zone_rebalancing, Shapes::ShapeRef.new(shape: AvailabilityZoneRebalancing, location_name: "availabilityZoneRebalancing"))
|
|
2019
|
+
Service.add_member(:resource_management_type, Shapes::ShapeRef.new(shape: ResourceManagementType, location_name: "resourceManagementType"))
|
|
1767
2020
|
Service.struct_class = Types::Service
|
|
1768
2021
|
|
|
1769
2022
|
ServiceConnectAccessLogConfiguration.add_member(:format, Shapes::ShapeRef.new(shape: ServiceConnectAccessLoggingFormat, required: true, location_name: "format"))
|
|
@@ -1818,6 +2071,14 @@ module Aws::ECS
|
|
|
1818
2071
|
ServiceConnectTlsConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "roleArn"))
|
|
1819
2072
|
ServiceConnectTlsConfiguration.struct_class = Types::ServiceConnectTlsConfiguration
|
|
1820
2073
|
|
|
2074
|
+
ServiceCurrentRevisionSummary.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
2075
|
+
ServiceCurrentRevisionSummary.add_member(:requested_task_count, Shapes::ShapeRef.new(shape: Integer, location_name: "requestedTaskCount"))
|
|
2076
|
+
ServiceCurrentRevisionSummary.add_member(:running_task_count, Shapes::ShapeRef.new(shape: Integer, location_name: "runningTaskCount"))
|
|
2077
|
+
ServiceCurrentRevisionSummary.add_member(:pending_task_count, Shapes::ShapeRef.new(shape: Integer, location_name: "pendingTaskCount"))
|
|
2078
|
+
ServiceCurrentRevisionSummary.struct_class = Types::ServiceCurrentRevisionSummary
|
|
2079
|
+
|
|
2080
|
+
ServiceCurrentRevisionSummaryList.member = Shapes::ShapeRef.new(shape: ServiceCurrentRevisionSummary)
|
|
2081
|
+
|
|
1821
2082
|
ServiceDeployment.add_member(:service_deployment_arn, Shapes::ShapeRef.new(shape: String, location_name: "serviceDeploymentArn"))
|
|
1822
2083
|
ServiceDeployment.add_member(:service_arn, Shapes::ShapeRef.new(shape: String, location_name: "serviceArn"))
|
|
1823
2084
|
ServiceDeployment.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: String, location_name: "clusterArn"))
|
|
@@ -1919,6 +2180,7 @@ module Aws::ECS
|
|
|
1919
2180
|
ServiceRevision.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
1920
2181
|
ServiceRevision.add_member(:vpc_lattice_configurations, Shapes::ShapeRef.new(shape: VpcLatticeConfigurations, location_name: "vpcLatticeConfigurations"))
|
|
1921
2182
|
ServiceRevision.add_member(:resolved_configuration, Shapes::ShapeRef.new(shape: ResolvedConfiguration, location_name: "resolvedConfiguration"))
|
|
2183
|
+
ServiceRevision.add_member(:ecs_managed_resources, Shapes::ShapeRef.new(shape: ECSManagedResources, location_name: "ecsManagedResources"))
|
|
1922
2184
|
ServiceRevision.struct_class = Types::ServiceRevision
|
|
1923
2185
|
|
|
1924
2186
|
ServiceRevisionLoadBalancer.add_member(:target_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "targetGroupArn"))
|
|
@@ -2280,6 +2542,20 @@ module Aws::ECS
|
|
|
2280
2542
|
UpdateContainerInstancesStateResponse.add_member(:failures, Shapes::ShapeRef.new(shape: Failures, location_name: "failures"))
|
|
2281
2543
|
UpdateContainerInstancesStateResponse.struct_class = Types::UpdateContainerInstancesStateResponse
|
|
2282
2544
|
|
|
2545
|
+
UpdateExpressGatewayServiceRequest.add_member(:service_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceArn"))
|
|
2546
|
+
UpdateExpressGatewayServiceRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "executionRoleArn"))
|
|
2547
|
+
UpdateExpressGatewayServiceRequest.add_member(:health_check_path, Shapes::ShapeRef.new(shape: String, location_name: "healthCheckPath"))
|
|
2548
|
+
UpdateExpressGatewayServiceRequest.add_member(:primary_container, Shapes::ShapeRef.new(shape: ExpressGatewayContainer, location_name: "primaryContainer"))
|
|
2549
|
+
UpdateExpressGatewayServiceRequest.add_member(:task_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskRoleArn"))
|
|
2550
|
+
UpdateExpressGatewayServiceRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: ExpressGatewayServiceNetworkConfiguration, location_name: "networkConfiguration"))
|
|
2551
|
+
UpdateExpressGatewayServiceRequest.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
|
|
2552
|
+
UpdateExpressGatewayServiceRequest.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
2553
|
+
UpdateExpressGatewayServiceRequest.add_member(:scaling_target, Shapes::ShapeRef.new(shape: ExpressGatewayScalingTarget, location_name: "scalingTarget"))
|
|
2554
|
+
UpdateExpressGatewayServiceRequest.struct_class = Types::UpdateExpressGatewayServiceRequest
|
|
2555
|
+
|
|
2556
|
+
UpdateExpressGatewayServiceResponse.add_member(:service, Shapes::ShapeRef.new(shape: UpdatedExpressGatewayService, location_name: "service"))
|
|
2557
|
+
UpdateExpressGatewayServiceResponse.struct_class = Types::UpdateExpressGatewayServiceResponse
|
|
2558
|
+
|
|
2283
2559
|
UpdateInProgressException.struct_class = Types::UpdateInProgressException
|
|
2284
2560
|
|
|
2285
2561
|
UpdateManagedInstancesProviderConfiguration.add_member(:infrastructure_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "infrastructureRoleArn"))
|
|
@@ -2342,6 +2618,15 @@ module Aws::ECS
|
|
|
2342
2618
|
UpdateTaskSetResponse.add_member(:task_set, Shapes::ShapeRef.new(shape: TaskSet, location_name: "taskSet"))
|
|
2343
2619
|
UpdateTaskSetResponse.struct_class = Types::UpdateTaskSetResponse
|
|
2344
2620
|
|
|
2621
|
+
UpdatedExpressGatewayService.add_member(:service_arn, Shapes::ShapeRef.new(shape: String, location_name: "serviceArn"))
|
|
2622
|
+
UpdatedExpressGatewayService.add_member(:cluster, Shapes::ShapeRef.new(shape: String, location_name: "cluster"))
|
|
2623
|
+
UpdatedExpressGatewayService.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceName"))
|
|
2624
|
+
UpdatedExpressGatewayService.add_member(:status, Shapes::ShapeRef.new(shape: ExpressGatewayServiceStatus, location_name: "status"))
|
|
2625
|
+
UpdatedExpressGatewayService.add_member(:target_configuration, Shapes::ShapeRef.new(shape: ExpressGatewayServiceConfiguration, location_name: "targetConfiguration"))
|
|
2626
|
+
UpdatedExpressGatewayService.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
2627
|
+
UpdatedExpressGatewayService.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
|
2628
|
+
UpdatedExpressGatewayService.struct_class = Types::UpdatedExpressGatewayService
|
|
2629
|
+
|
|
2345
2630
|
VCpuCountRangeRequest.add_member(:min, Shapes::ShapeRef.new(shape: BoxedInteger, required: true, location_name: "min"))
|
|
2346
2631
|
VCpuCountRangeRequest.add_member(:max, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "max"))
|
|
2347
2632
|
VCpuCountRangeRequest.struct_class = Types::VCpuCountRangeRequest
|
|
@@ -2422,6 +2707,22 @@ module Aws::ECS
|
|
|
2422
2707
|
o.errors << Shapes::ShapeRef.new(shape: NamespaceNotFoundException)
|
|
2423
2708
|
end)
|
|
2424
2709
|
|
|
2710
|
+
api.add_operation(:create_express_gateway_service, Seahorse::Model::Operation.new.tap do |o|
|
|
2711
|
+
o.name = "CreateExpressGatewayService"
|
|
2712
|
+
o.http_method = "POST"
|
|
2713
|
+
o.http_request_uri = "/"
|
|
2714
|
+
o.input = Shapes::ShapeRef.new(shape: CreateExpressGatewayServiceRequest)
|
|
2715
|
+
o.output = Shapes::ShapeRef.new(shape: CreateExpressGatewayServiceResponse)
|
|
2716
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2717
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2718
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
2719
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2720
|
+
o.errors << Shapes::ShapeRef.new(shape: PlatformUnknownException)
|
|
2721
|
+
o.errors << Shapes::ShapeRef.new(shape: PlatformTaskDefinitionIncompatibilityException)
|
|
2722
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2723
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedFeatureException)
|
|
2724
|
+
end)
|
|
2725
|
+
|
|
2425
2726
|
api.add_operation(:create_service, Seahorse::Model::Operation.new.tap do |o|
|
|
2426
2727
|
o.name = "CreateService"
|
|
2427
2728
|
o.http_method = "POST"
|
|
@@ -2510,6 +2811,22 @@ module Aws::ECS
|
|
|
2510
2811
|
o.errors << Shapes::ShapeRef.new(shape: UpdateInProgressException)
|
|
2511
2812
|
end)
|
|
2512
2813
|
|
|
2814
|
+
api.add_operation(:delete_express_gateway_service, Seahorse::Model::Operation.new.tap do |o|
|
|
2815
|
+
o.name = "DeleteExpressGatewayService"
|
|
2816
|
+
o.http_method = "POST"
|
|
2817
|
+
o.http_request_uri = "/"
|
|
2818
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteExpressGatewayServiceRequest)
|
|
2819
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteExpressGatewayServiceResponse)
|
|
2820
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2821
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2822
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
2823
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2824
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2825
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceNotFoundException)
|
|
2826
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceNotActiveException)
|
|
2827
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedFeatureException)
|
|
2828
|
+
end)
|
|
2829
|
+
|
|
2513
2830
|
api.add_operation(:delete_service, Seahorse::Model::Operation.new.tap do |o|
|
|
2514
2831
|
o.name = "DeleteService"
|
|
2515
2832
|
o.http_method = "POST"
|
|
@@ -2611,6 +2928,21 @@ module Aws::ECS
|
|
|
2611
2928
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
2612
2929
|
end)
|
|
2613
2930
|
|
|
2931
|
+
api.add_operation(:describe_express_gateway_service, Seahorse::Model::Operation.new.tap do |o|
|
|
2932
|
+
o.name = "DescribeExpressGatewayService"
|
|
2933
|
+
o.http_method = "POST"
|
|
2934
|
+
o.http_request_uri = "/"
|
|
2935
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeExpressGatewayServiceRequest)
|
|
2936
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeExpressGatewayServiceResponse)
|
|
2937
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2938
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2939
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
2940
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2941
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2942
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2943
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedFeatureException)
|
|
2944
|
+
end)
|
|
2945
|
+
|
|
2614
2946
|
api.add_operation(:describe_service_deployments, Seahorse::Model::Operation.new.tap do |o|
|
|
2615
2947
|
o.name = "DescribeServiceDeployments"
|
|
2616
2948
|
o.http_method = "POST"
|
|
@@ -3168,6 +3500,22 @@ module Aws::ECS
|
|
|
3168
3500
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3169
3501
|
end)
|
|
3170
3502
|
|
|
3503
|
+
api.add_operation(:update_express_gateway_service, Seahorse::Model::Operation.new.tap do |o|
|
|
3504
|
+
o.name = "UpdateExpressGatewayService"
|
|
3505
|
+
o.http_method = "POST"
|
|
3506
|
+
o.http_request_uri = "/"
|
|
3507
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateExpressGatewayServiceRequest)
|
|
3508
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateExpressGatewayServiceResponse)
|
|
3509
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3510
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
3511
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3512
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3513
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3514
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceNotFoundException)
|
|
3515
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceNotActiveException)
|
|
3516
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedFeatureException)
|
|
3517
|
+
end)
|
|
3518
|
+
|
|
3171
3519
|
api.add_operation(:update_service, Seahorse::Model::Operation.new.tap do |o|
|
|
3172
3520
|
o.name = "UpdateService"
|
|
3173
3521
|
o.http_method = "POST"
|