aws-sdk-batch 1.95.0 → 1.147.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 +260 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-batch/client.rb +2024 -235
- data/lib/aws-sdk-batch/client_api.rb +879 -7
- data/lib/aws-sdk-batch/endpoint_parameters.rb +13 -10
- data/lib/aws-sdk-batch/endpoint_provider.rb +15 -19
- data/lib/aws-sdk-batch/endpoints.rb +2 -348
- data/lib/aws-sdk-batch/plugins/endpoints.rb +19 -62
- data/lib/aws-sdk-batch/types.rb +3723 -420
- data/lib/aws-sdk-batch.rb +15 -11
- data/sig/client.rbs +447 -888
- data/sig/params.rbs +434 -0
- data/sig/resource.rbs +5 -0
- data/sig/types.rbs +620 -4
- metadata +7 -9
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
10
|
+
|
|
10
11
|
module Aws::Batch
|
|
11
12
|
# @api private
|
|
12
13
|
module ClientApi
|
|
@@ -33,45 +34,75 @@ module Aws::Batch
|
|
|
33
34
|
CRUpdateAllocationStrategy = Shapes::StringShape.new(name: 'CRUpdateAllocationStrategy')
|
|
34
35
|
CancelJobRequest = Shapes::StructureShape.new(name: 'CancelJobRequest')
|
|
35
36
|
CancelJobResponse = Shapes::StructureShape.new(name: 'CancelJobResponse')
|
|
37
|
+
CapacityLimit = Shapes::StructureShape.new(name: 'CapacityLimit')
|
|
38
|
+
CapacityLimits = Shapes::ListShape.new(name: 'CapacityLimits')
|
|
36
39
|
ClientException = Shapes::StructureShape.new(name: 'ClientException')
|
|
40
|
+
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
|
37
41
|
ComputeEnvironmentDetail = Shapes::StructureShape.new(name: 'ComputeEnvironmentDetail')
|
|
38
42
|
ComputeEnvironmentDetailList = Shapes::ListShape.new(name: 'ComputeEnvironmentDetailList')
|
|
39
43
|
ComputeEnvironmentOrder = Shapes::StructureShape.new(name: 'ComputeEnvironmentOrder')
|
|
40
44
|
ComputeEnvironmentOrders = Shapes::ListShape.new(name: 'ComputeEnvironmentOrders')
|
|
41
45
|
ComputeResource = Shapes::StructureShape.new(name: 'ComputeResource')
|
|
42
46
|
ComputeResourceUpdate = Shapes::StructureShape.new(name: 'ComputeResourceUpdate')
|
|
47
|
+
ComputeScalingPolicy = Shapes::StructureShape.new(name: 'ComputeScalingPolicy')
|
|
48
|
+
ConsumableResourceList = Shapes::ListShape.new(name: 'ConsumableResourceList')
|
|
49
|
+
ConsumableResourceProperties = Shapes::StructureShape.new(name: 'ConsumableResourceProperties')
|
|
50
|
+
ConsumableResourceRequirement = Shapes::StructureShape.new(name: 'ConsumableResourceRequirement')
|
|
51
|
+
ConsumableResourceSummary = Shapes::StructureShape.new(name: 'ConsumableResourceSummary')
|
|
52
|
+
ConsumableResourceSummaryList = Shapes::ListShape.new(name: 'ConsumableResourceSummaryList')
|
|
43
53
|
ContainerDetail = Shapes::StructureShape.new(name: 'ContainerDetail')
|
|
44
54
|
ContainerOverrides = Shapes::StructureShape.new(name: 'ContainerOverrides')
|
|
45
55
|
ContainerProperties = Shapes::StructureShape.new(name: 'ContainerProperties')
|
|
46
56
|
ContainerSummary = Shapes::StructureShape.new(name: 'ContainerSummary')
|
|
47
57
|
CreateComputeEnvironmentRequest = Shapes::StructureShape.new(name: 'CreateComputeEnvironmentRequest')
|
|
48
58
|
CreateComputeEnvironmentResponse = Shapes::StructureShape.new(name: 'CreateComputeEnvironmentResponse')
|
|
59
|
+
CreateConsumableResourceRequest = Shapes::StructureShape.new(name: 'CreateConsumableResourceRequest')
|
|
60
|
+
CreateConsumableResourceResponse = Shapes::StructureShape.new(name: 'CreateConsumableResourceResponse')
|
|
49
61
|
CreateJobQueueRequest = Shapes::StructureShape.new(name: 'CreateJobQueueRequest')
|
|
50
62
|
CreateJobQueueResponse = Shapes::StructureShape.new(name: 'CreateJobQueueResponse')
|
|
63
|
+
CreateQuotaShareRequest = Shapes::StructureShape.new(name: 'CreateQuotaShareRequest')
|
|
64
|
+
CreateQuotaShareResponse = Shapes::StructureShape.new(name: 'CreateQuotaShareResponse')
|
|
51
65
|
CreateSchedulingPolicyRequest = Shapes::StructureShape.new(name: 'CreateSchedulingPolicyRequest')
|
|
52
66
|
CreateSchedulingPolicyResponse = Shapes::StructureShape.new(name: 'CreateSchedulingPolicyResponse')
|
|
67
|
+
CreateServiceEnvironmentRequest = Shapes::StructureShape.new(name: 'CreateServiceEnvironmentRequest')
|
|
68
|
+
CreateServiceEnvironmentResponse = Shapes::StructureShape.new(name: 'CreateServiceEnvironmentResponse')
|
|
53
69
|
DeleteComputeEnvironmentRequest = Shapes::StructureShape.new(name: 'DeleteComputeEnvironmentRequest')
|
|
54
70
|
DeleteComputeEnvironmentResponse = Shapes::StructureShape.new(name: 'DeleteComputeEnvironmentResponse')
|
|
71
|
+
DeleteConsumableResourceRequest = Shapes::StructureShape.new(name: 'DeleteConsumableResourceRequest')
|
|
72
|
+
DeleteConsumableResourceResponse = Shapes::StructureShape.new(name: 'DeleteConsumableResourceResponse')
|
|
55
73
|
DeleteJobQueueRequest = Shapes::StructureShape.new(name: 'DeleteJobQueueRequest')
|
|
56
74
|
DeleteJobQueueResponse = Shapes::StructureShape.new(name: 'DeleteJobQueueResponse')
|
|
75
|
+
DeleteQuotaShareRequest = Shapes::StructureShape.new(name: 'DeleteQuotaShareRequest')
|
|
76
|
+
DeleteQuotaShareResponse = Shapes::StructureShape.new(name: 'DeleteQuotaShareResponse')
|
|
57
77
|
DeleteSchedulingPolicyRequest = Shapes::StructureShape.new(name: 'DeleteSchedulingPolicyRequest')
|
|
58
78
|
DeleteSchedulingPolicyResponse = Shapes::StructureShape.new(name: 'DeleteSchedulingPolicyResponse')
|
|
79
|
+
DeleteServiceEnvironmentRequest = Shapes::StructureShape.new(name: 'DeleteServiceEnvironmentRequest')
|
|
80
|
+
DeleteServiceEnvironmentResponse = Shapes::StructureShape.new(name: 'DeleteServiceEnvironmentResponse')
|
|
59
81
|
DeregisterJobDefinitionRequest = Shapes::StructureShape.new(name: 'DeregisterJobDefinitionRequest')
|
|
60
82
|
DeregisterJobDefinitionResponse = Shapes::StructureShape.new(name: 'DeregisterJobDefinitionResponse')
|
|
61
83
|
DescribeComputeEnvironmentsRequest = Shapes::StructureShape.new(name: 'DescribeComputeEnvironmentsRequest')
|
|
62
84
|
DescribeComputeEnvironmentsResponse = Shapes::StructureShape.new(name: 'DescribeComputeEnvironmentsResponse')
|
|
85
|
+
DescribeConsumableResourceRequest = Shapes::StructureShape.new(name: 'DescribeConsumableResourceRequest')
|
|
86
|
+
DescribeConsumableResourceResponse = Shapes::StructureShape.new(name: 'DescribeConsumableResourceResponse')
|
|
63
87
|
DescribeJobDefinitionsRequest = Shapes::StructureShape.new(name: 'DescribeJobDefinitionsRequest')
|
|
64
88
|
DescribeJobDefinitionsResponse = Shapes::StructureShape.new(name: 'DescribeJobDefinitionsResponse')
|
|
65
89
|
DescribeJobQueuesRequest = Shapes::StructureShape.new(name: 'DescribeJobQueuesRequest')
|
|
66
90
|
DescribeJobQueuesResponse = Shapes::StructureShape.new(name: 'DescribeJobQueuesResponse')
|
|
67
91
|
DescribeJobsRequest = Shapes::StructureShape.new(name: 'DescribeJobsRequest')
|
|
68
92
|
DescribeJobsResponse = Shapes::StructureShape.new(name: 'DescribeJobsResponse')
|
|
93
|
+
DescribeQuotaShareRequest = Shapes::StructureShape.new(name: 'DescribeQuotaShareRequest')
|
|
94
|
+
DescribeQuotaShareResponse = Shapes::StructureShape.new(name: 'DescribeQuotaShareResponse')
|
|
69
95
|
DescribeSchedulingPoliciesRequest = Shapes::StructureShape.new(name: 'DescribeSchedulingPoliciesRequest')
|
|
70
96
|
DescribeSchedulingPoliciesResponse = Shapes::StructureShape.new(name: 'DescribeSchedulingPoliciesResponse')
|
|
97
|
+
DescribeServiceEnvironmentsRequest = Shapes::StructureShape.new(name: 'DescribeServiceEnvironmentsRequest')
|
|
98
|
+
DescribeServiceEnvironmentsResponse = Shapes::StructureShape.new(name: 'DescribeServiceEnvironmentsResponse')
|
|
99
|
+
DescribeServiceJobRequest = Shapes::StructureShape.new(name: 'DescribeServiceJobRequest')
|
|
100
|
+
DescribeServiceJobResponse = Shapes::StructureShape.new(name: 'DescribeServiceJobResponse')
|
|
71
101
|
Device = Shapes::StructureShape.new(name: 'Device')
|
|
72
102
|
DeviceCgroupPermission = Shapes::StringShape.new(name: 'DeviceCgroupPermission')
|
|
73
103
|
DeviceCgroupPermissions = Shapes::ListShape.new(name: 'DeviceCgroupPermissions')
|
|
74
104
|
DevicesList = Shapes::ListShape.new(name: 'DevicesList')
|
|
105
|
+
Double = Shapes::FloatShape.new(name: 'Double')
|
|
75
106
|
EFSAuthorizationConfig = Shapes::StructureShape.new(name: 'EFSAuthorizationConfig')
|
|
76
107
|
EFSAuthorizationConfigIAM = Shapes::StringShape.new(name: 'EFSAuthorizationConfigIAM')
|
|
77
108
|
EFSTransitEncryption = Shapes::StringShape.new(name: 'EFSTransitEncryption')
|
|
@@ -83,6 +114,7 @@ module Aws::Batch
|
|
|
83
114
|
EcsPropertiesOverride = Shapes::StructureShape.new(name: 'EcsPropertiesOverride')
|
|
84
115
|
EcsTaskDetails = Shapes::StructureShape.new(name: 'EcsTaskDetails')
|
|
85
116
|
EcsTaskProperties = Shapes::StructureShape.new(name: 'EcsTaskProperties')
|
|
117
|
+
EksAnnotationsMap = Shapes::MapShape.new(name: 'EksAnnotationsMap')
|
|
86
118
|
EksAttemptContainerDetail = Shapes::StructureShape.new(name: 'EksAttemptContainerDetail')
|
|
87
119
|
EksAttemptContainerDetails = Shapes::ListShape.new(name: 'EksAttemptContainerDetails')
|
|
88
120
|
EksAttemptDetail = Shapes::StructureShape.new(name: 'EksAttemptDetail')
|
|
@@ -105,6 +137,7 @@ module Aws::Batch
|
|
|
105
137
|
EksLabelsMap = Shapes::MapShape.new(name: 'EksLabelsMap')
|
|
106
138
|
EksLimits = Shapes::MapShape.new(name: 'EksLimits')
|
|
107
139
|
EksMetadata = Shapes::StructureShape.new(name: 'EksMetadata')
|
|
140
|
+
EksPersistentVolumeClaim = Shapes::StructureShape.new(name: 'EksPersistentVolumeClaim')
|
|
108
141
|
EksPodProperties = Shapes::StructureShape.new(name: 'EksPodProperties')
|
|
109
142
|
EksPodPropertiesDetail = Shapes::StructureShape.new(name: 'EksPodPropertiesDetail')
|
|
110
143
|
EksPodPropertiesOverride = Shapes::StructureShape.new(name: 'EksPodPropertiesOverride')
|
|
@@ -119,12 +152,24 @@ module Aws::Batch
|
|
|
119
152
|
EphemeralStorage = Shapes::StructureShape.new(name: 'EphemeralStorage')
|
|
120
153
|
EvaluateOnExit = Shapes::StructureShape.new(name: 'EvaluateOnExit')
|
|
121
154
|
EvaluateOnExitList = Shapes::ListShape.new(name: 'EvaluateOnExitList')
|
|
155
|
+
FairshareCapacityUsage = Shapes::StructureShape.new(name: 'FairshareCapacityUsage')
|
|
156
|
+
FairshareCapacityUsageList = Shapes::ListShape.new(name: 'FairshareCapacityUsageList')
|
|
157
|
+
FairshareCapacityUtilization = Shapes::StructureShape.new(name: 'FairshareCapacityUtilization')
|
|
158
|
+
FairshareCapacityUtilizationList = Shapes::ListShape.new(name: 'FairshareCapacityUtilizationList')
|
|
122
159
|
FairsharePolicy = Shapes::StructureShape.new(name: 'FairsharePolicy')
|
|
160
|
+
FairshareUtilizationDetail = Shapes::StructureShape.new(name: 'FairshareUtilizationDetail')
|
|
123
161
|
FargatePlatformConfiguration = Shapes::StructureShape.new(name: 'FargatePlatformConfiguration')
|
|
162
|
+
FirelensConfiguration = Shapes::StructureShape.new(name: 'FirelensConfiguration')
|
|
163
|
+
FirelensConfigurationOptionsMap = Shapes::MapShape.new(name: 'FirelensConfigurationOptionsMap')
|
|
164
|
+
FirelensConfigurationType = Shapes::StringShape.new(name: 'FirelensConfigurationType')
|
|
124
165
|
Float = Shapes::FloatShape.new(name: 'Float')
|
|
125
166
|
FrontOfQueueDetail = Shapes::StructureShape.new(name: 'FrontOfQueueDetail')
|
|
126
167
|
FrontOfQueueJobSummary = Shapes::StructureShape.new(name: 'FrontOfQueueJobSummary')
|
|
127
168
|
FrontOfQueueJobSummaryList = Shapes::ListShape.new(name: 'FrontOfQueueJobSummaryList')
|
|
169
|
+
FrontOfQuotaShareJobSummary = Shapes::StructureShape.new(name: 'FrontOfQuotaShareJobSummary')
|
|
170
|
+
FrontOfQuotaShareJobSummaryList = Shapes::ListShape.new(name: 'FrontOfQuotaShareJobSummaryList')
|
|
171
|
+
FrontOfQuotaSharesDetail = Shapes::StructureShape.new(name: 'FrontOfQuotaSharesDetail')
|
|
172
|
+
FrontOfQuotaSharesJobSummaryMap = Shapes::MapShape.new(name: 'FrontOfQuotaSharesJobSummaryMap')
|
|
128
173
|
GetJobQueueSnapshotRequest = Shapes::StructureShape.new(name: 'GetJobQueueSnapshotRequest')
|
|
129
174
|
GetJobQueueSnapshotResponse = Shapes::StructureShape.new(name: 'GetJobQueueSnapshotResponse')
|
|
130
175
|
Host = Shapes::StructureShape.new(name: 'Host')
|
|
@@ -135,6 +180,8 @@ module Aws::Batch
|
|
|
135
180
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
136
181
|
JQState = Shapes::StringShape.new(name: 'JQState')
|
|
137
182
|
JQStatus = Shapes::StringShape.new(name: 'JQStatus')
|
|
183
|
+
JobCapacityUsageSummary = Shapes::StructureShape.new(name: 'JobCapacityUsageSummary')
|
|
184
|
+
JobCapacityUsageSummaryList = Shapes::ListShape.new(name: 'JobCapacityUsageSummaryList')
|
|
138
185
|
JobDefinition = Shapes::StructureShape.new(name: 'JobDefinition')
|
|
139
186
|
JobDefinitionList = Shapes::ListShape.new(name: 'JobDefinitionList')
|
|
140
187
|
JobDefinitionType = Shapes::StringShape.new(name: 'JobDefinitionType')
|
|
@@ -145,6 +192,7 @@ module Aws::Batch
|
|
|
145
192
|
JobExecutionTimeoutMinutes = Shapes::IntegerShape.new(name: 'JobExecutionTimeoutMinutes')
|
|
146
193
|
JobQueueDetail = Shapes::StructureShape.new(name: 'JobQueueDetail')
|
|
147
194
|
JobQueueDetailList = Shapes::ListShape.new(name: 'JobQueueDetailList')
|
|
195
|
+
JobQueueType = Shapes::StringShape.new(name: 'JobQueueType')
|
|
148
196
|
JobStateTimeLimitAction = Shapes::StructureShape.new(name: 'JobStateTimeLimitAction')
|
|
149
197
|
JobStateTimeLimitActions = Shapes::ListShape.new(name: 'JobStateTimeLimitActions')
|
|
150
198
|
JobStateTimeLimitActionsAction = Shapes::StringShape.new(name: 'JobStateTimeLimitActionsAction')
|
|
@@ -156,17 +204,32 @@ module Aws::Batch
|
|
|
156
204
|
KeyValuePair = Shapes::StructureShape.new(name: 'KeyValuePair')
|
|
157
205
|
KeyValuesPair = Shapes::StructureShape.new(name: 'KeyValuesPair')
|
|
158
206
|
KubernetesVersion = Shapes::StringShape.new(name: 'KubernetesVersion')
|
|
207
|
+
LatestServiceJobAttempt = Shapes::StructureShape.new(name: 'LatestServiceJobAttempt')
|
|
159
208
|
LaunchTemplateSpecification = Shapes::StructureShape.new(name: 'LaunchTemplateSpecification')
|
|
209
|
+
LaunchTemplateSpecificationOverride = Shapes::StructureShape.new(name: 'LaunchTemplateSpecificationOverride')
|
|
210
|
+
LaunchTemplateSpecificationOverrideList = Shapes::ListShape.new(name: 'LaunchTemplateSpecificationOverrideList')
|
|
160
211
|
LinuxParameters = Shapes::StructureShape.new(name: 'LinuxParameters')
|
|
161
212
|
ListAttemptEcsTaskDetails = Shapes::ListShape.new(name: 'ListAttemptEcsTaskDetails')
|
|
162
213
|
ListAttemptTaskContainerDetails = Shapes::ListShape.new(name: 'ListAttemptTaskContainerDetails')
|
|
214
|
+
ListConsumableResourcesFilterList = Shapes::ListShape.new(name: 'ListConsumableResourcesFilterList')
|
|
215
|
+
ListConsumableResourcesRequest = Shapes::StructureShape.new(name: 'ListConsumableResourcesRequest')
|
|
216
|
+
ListConsumableResourcesResponse = Shapes::StructureShape.new(name: 'ListConsumableResourcesResponse')
|
|
163
217
|
ListEcsTaskDetails = Shapes::ListShape.new(name: 'ListEcsTaskDetails')
|
|
164
218
|
ListEcsTaskProperties = Shapes::ListShape.new(name: 'ListEcsTaskProperties')
|
|
219
|
+
ListJobsByConsumableResourceFilterList = Shapes::ListShape.new(name: 'ListJobsByConsumableResourceFilterList')
|
|
220
|
+
ListJobsByConsumableResourceRequest = Shapes::StructureShape.new(name: 'ListJobsByConsumableResourceRequest')
|
|
221
|
+
ListJobsByConsumableResourceResponse = Shapes::StructureShape.new(name: 'ListJobsByConsumableResourceResponse')
|
|
222
|
+
ListJobsByConsumableResourceSummary = Shapes::StructureShape.new(name: 'ListJobsByConsumableResourceSummary')
|
|
223
|
+
ListJobsByConsumableResourceSummaryList = Shapes::ListShape.new(name: 'ListJobsByConsumableResourceSummaryList')
|
|
165
224
|
ListJobsFilterList = Shapes::ListShape.new(name: 'ListJobsFilterList')
|
|
166
225
|
ListJobsRequest = Shapes::StructureShape.new(name: 'ListJobsRequest')
|
|
167
226
|
ListJobsResponse = Shapes::StructureShape.new(name: 'ListJobsResponse')
|
|
227
|
+
ListQuotaSharesRequest = Shapes::StructureShape.new(name: 'ListQuotaSharesRequest')
|
|
228
|
+
ListQuotaSharesResponse = Shapes::StructureShape.new(name: 'ListQuotaSharesResponse')
|
|
168
229
|
ListSchedulingPoliciesRequest = Shapes::StructureShape.new(name: 'ListSchedulingPoliciesRequest')
|
|
169
230
|
ListSchedulingPoliciesResponse = Shapes::StructureShape.new(name: 'ListSchedulingPoliciesResponse')
|
|
231
|
+
ListServiceJobsRequest = Shapes::StructureShape.new(name: 'ListServiceJobsRequest')
|
|
232
|
+
ListServiceJobsResponse = Shapes::StructureShape.new(name: 'ListServiceJobsResponse')
|
|
170
233
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
|
171
234
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
172
235
|
ListTaskContainerDetails = Shapes::ListShape.new(name: 'ListTaskContainerDetails')
|
|
@@ -195,6 +258,26 @@ module Aws::Batch
|
|
|
195
258
|
PlatformCapability = Shapes::StringShape.new(name: 'PlatformCapability')
|
|
196
259
|
PlatformCapabilityList = Shapes::ListShape.new(name: 'PlatformCapabilityList')
|
|
197
260
|
Quantity = Shapes::StringShape.new(name: 'Quantity')
|
|
261
|
+
QueueSnapshotCapacityUsage = Shapes::StructureShape.new(name: 'QueueSnapshotCapacityUsage')
|
|
262
|
+
QueueSnapshotCapacityUsageList = Shapes::ListShape.new(name: 'QueueSnapshotCapacityUsageList')
|
|
263
|
+
QueueSnapshotUtilizationDetail = Shapes::StructureShape.new(name: 'QueueSnapshotUtilizationDetail')
|
|
264
|
+
QuotaShareCapacityLimit = Shapes::StructureShape.new(name: 'QuotaShareCapacityLimit')
|
|
265
|
+
QuotaShareCapacityLimits = Shapes::ListShape.new(name: 'QuotaShareCapacityLimits')
|
|
266
|
+
QuotaShareCapacityUsage = Shapes::StructureShape.new(name: 'QuotaShareCapacityUsage')
|
|
267
|
+
QuotaShareCapacityUsageList = Shapes::ListShape.new(name: 'QuotaShareCapacityUsageList')
|
|
268
|
+
QuotaShareCapacityUtilization = Shapes::StructureShape.new(name: 'QuotaShareCapacityUtilization')
|
|
269
|
+
QuotaShareCapacityUtilizationList = Shapes::ListShape.new(name: 'QuotaShareCapacityUtilizationList')
|
|
270
|
+
QuotaShareDetail = Shapes::StructureShape.new(name: 'QuotaShareDetail')
|
|
271
|
+
QuotaShareIdleResourceAssignmentStrategy = Shapes::StringShape.new(name: 'QuotaShareIdleResourceAssignmentStrategy')
|
|
272
|
+
QuotaShareInSharePreemptionState = Shapes::StringShape.new(name: 'QuotaShareInSharePreemptionState')
|
|
273
|
+
QuotaShareList = Shapes::ListShape.new(name: 'QuotaShareList')
|
|
274
|
+
QuotaSharePolicy = Shapes::StructureShape.new(name: 'QuotaSharePolicy')
|
|
275
|
+
QuotaSharePreemptionConfiguration = Shapes::StructureShape.new(name: 'QuotaSharePreemptionConfiguration')
|
|
276
|
+
QuotaShareResourceSharingConfiguration = Shapes::StructureShape.new(name: 'QuotaShareResourceSharingConfiguration')
|
|
277
|
+
QuotaShareResourceSharingStrategy = Shapes::StringShape.new(name: 'QuotaShareResourceSharingStrategy')
|
|
278
|
+
QuotaShareState = Shapes::StringShape.new(name: 'QuotaShareState')
|
|
279
|
+
QuotaShareStatus = Shapes::StringShape.new(name: 'QuotaShareStatus')
|
|
280
|
+
QuotaShareUtilizationDetail = Shapes::StructureShape.new(name: 'QuotaShareUtilizationDetail')
|
|
198
281
|
RegisterJobDefinitionRequest = Shapes::StructureShape.new(name: 'RegisterJobDefinitionRequest')
|
|
199
282
|
RegisterJobDefinitionResponse = Shapes::StructureShape.new(name: 'RegisterJobDefinitionResponse')
|
|
200
283
|
RepositoryCredentials = Shapes::StructureShape.new(name: 'RepositoryCredentials')
|
|
@@ -204,6 +287,7 @@ module Aws::Batch
|
|
|
204
287
|
RetryAction = Shapes::StringShape.new(name: 'RetryAction')
|
|
205
288
|
RetryStrategy = Shapes::StructureShape.new(name: 'RetryStrategy')
|
|
206
289
|
RuntimePlatform = Shapes::StructureShape.new(name: 'RuntimePlatform')
|
|
290
|
+
S3FilesVolumeConfiguration = Shapes::StructureShape.new(name: 'S3FilesVolumeConfiguration')
|
|
207
291
|
SchedulingPolicyDetail = Shapes::StructureShape.new(name: 'SchedulingPolicyDetail')
|
|
208
292
|
SchedulingPolicyDetailList = Shapes::ListShape.new(name: 'SchedulingPolicyDetailList')
|
|
209
293
|
SchedulingPolicyListingDetail = Shapes::StructureShape.new(name: 'SchedulingPolicyListingDetail')
|
|
@@ -211,12 +295,42 @@ module Aws::Batch
|
|
|
211
295
|
Secret = Shapes::StructureShape.new(name: 'Secret')
|
|
212
296
|
SecretList = Shapes::ListShape.new(name: 'SecretList')
|
|
213
297
|
ServerException = Shapes::StructureShape.new(name: 'ServerException')
|
|
298
|
+
ServiceEnvironmentDetail = Shapes::StructureShape.new(name: 'ServiceEnvironmentDetail')
|
|
299
|
+
ServiceEnvironmentDetailList = Shapes::ListShape.new(name: 'ServiceEnvironmentDetailList')
|
|
300
|
+
ServiceEnvironmentOrder = Shapes::StructureShape.new(name: 'ServiceEnvironmentOrder')
|
|
301
|
+
ServiceEnvironmentOrders = Shapes::ListShape.new(name: 'ServiceEnvironmentOrders')
|
|
302
|
+
ServiceEnvironmentState = Shapes::StringShape.new(name: 'ServiceEnvironmentState')
|
|
303
|
+
ServiceEnvironmentStatus = Shapes::StringShape.new(name: 'ServiceEnvironmentStatus')
|
|
304
|
+
ServiceEnvironmentType = Shapes::StringShape.new(name: 'ServiceEnvironmentType')
|
|
305
|
+
ServiceJobAttemptDetail = Shapes::StructureShape.new(name: 'ServiceJobAttemptDetail')
|
|
306
|
+
ServiceJobAttemptDetails = Shapes::ListShape.new(name: 'ServiceJobAttemptDetails')
|
|
307
|
+
ServiceJobCapacityUsageDetail = Shapes::StructureShape.new(name: 'ServiceJobCapacityUsageDetail')
|
|
308
|
+
ServiceJobCapacityUsageDetailList = Shapes::ListShape.new(name: 'ServiceJobCapacityUsageDetailList')
|
|
309
|
+
ServiceJobCapacityUsageSummary = Shapes::StructureShape.new(name: 'ServiceJobCapacityUsageSummary')
|
|
310
|
+
ServiceJobCapacityUsageSummaryList = Shapes::ListShape.new(name: 'ServiceJobCapacityUsageSummaryList')
|
|
311
|
+
ServiceJobEvaluateOnExit = Shapes::StructureShape.new(name: 'ServiceJobEvaluateOnExit')
|
|
312
|
+
ServiceJobEvaluateOnExitList = Shapes::ListShape.new(name: 'ServiceJobEvaluateOnExitList')
|
|
313
|
+
ServiceJobPreemptedAttempt = Shapes::StructureShape.new(name: 'ServiceJobPreemptedAttempt')
|
|
314
|
+
ServiceJobPreemptionConfiguration = Shapes::StructureShape.new(name: 'ServiceJobPreemptionConfiguration')
|
|
315
|
+
ServiceJobPreemptionSummary = Shapes::StructureShape.new(name: 'ServiceJobPreemptionSummary')
|
|
316
|
+
ServiceJobRecentPreemptedAttemptList = Shapes::ListShape.new(name: 'ServiceJobRecentPreemptedAttemptList')
|
|
317
|
+
ServiceJobRetryAction = Shapes::StringShape.new(name: 'ServiceJobRetryAction')
|
|
318
|
+
ServiceJobRetryStrategy = Shapes::StructureShape.new(name: 'ServiceJobRetryStrategy')
|
|
319
|
+
ServiceJobStatus = Shapes::StringShape.new(name: 'ServiceJobStatus')
|
|
320
|
+
ServiceJobSummary = Shapes::StructureShape.new(name: 'ServiceJobSummary')
|
|
321
|
+
ServiceJobSummaryList = Shapes::ListShape.new(name: 'ServiceJobSummaryList')
|
|
322
|
+
ServiceJobTimeout = Shapes::StructureShape.new(name: 'ServiceJobTimeout')
|
|
323
|
+
ServiceJobType = Shapes::StringShape.new(name: 'ServiceJobType')
|
|
324
|
+
ServiceResourceId = Shapes::StructureShape.new(name: 'ServiceResourceId')
|
|
325
|
+
ServiceResourceIdName = Shapes::StringShape.new(name: 'ServiceResourceIdName')
|
|
214
326
|
ShareAttributes = Shapes::StructureShape.new(name: 'ShareAttributes')
|
|
215
327
|
ShareAttributesList = Shapes::ListShape.new(name: 'ShareAttributesList')
|
|
216
328
|
String = Shapes::StringShape.new(name: 'String')
|
|
217
329
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
218
330
|
SubmitJobRequest = Shapes::StructureShape.new(name: 'SubmitJobRequest')
|
|
219
331
|
SubmitJobResponse = Shapes::StructureShape.new(name: 'SubmitJobResponse')
|
|
332
|
+
SubmitServiceJobRequest = Shapes::StructureShape.new(name: 'SubmitServiceJobRequest')
|
|
333
|
+
SubmitServiceJobResponse = Shapes::StructureShape.new(name: 'SubmitServiceJobResponse')
|
|
220
334
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
221
335
|
TagKeysList = Shapes::ListShape.new(name: 'TagKeysList')
|
|
222
336
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
@@ -232,6 +346,8 @@ module Aws::Batch
|
|
|
232
346
|
TaskPropertiesOverride = Shapes::StructureShape.new(name: 'TaskPropertiesOverride')
|
|
233
347
|
TerminateJobRequest = Shapes::StructureShape.new(name: 'TerminateJobRequest')
|
|
234
348
|
TerminateJobResponse = Shapes::StructureShape.new(name: 'TerminateJobResponse')
|
|
349
|
+
TerminateServiceJobRequest = Shapes::StructureShape.new(name: 'TerminateServiceJobRequest')
|
|
350
|
+
TerminateServiceJobResponse = Shapes::StructureShape.new(name: 'TerminateServiceJobResponse')
|
|
235
351
|
Tmpfs = Shapes::StructureShape.new(name: 'Tmpfs')
|
|
236
352
|
TmpfsList = Shapes::ListShape.new(name: 'TmpfsList')
|
|
237
353
|
Ulimit = Shapes::StructureShape.new(name: 'Ulimit')
|
|
@@ -240,11 +356,20 @@ module Aws::Batch
|
|
|
240
356
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
|
241
357
|
UpdateComputeEnvironmentRequest = Shapes::StructureShape.new(name: 'UpdateComputeEnvironmentRequest')
|
|
242
358
|
UpdateComputeEnvironmentResponse = Shapes::StructureShape.new(name: 'UpdateComputeEnvironmentResponse')
|
|
359
|
+
UpdateConsumableResourceRequest = Shapes::StructureShape.new(name: 'UpdateConsumableResourceRequest')
|
|
360
|
+
UpdateConsumableResourceResponse = Shapes::StructureShape.new(name: 'UpdateConsumableResourceResponse')
|
|
243
361
|
UpdateJobQueueRequest = Shapes::StructureShape.new(name: 'UpdateJobQueueRequest')
|
|
244
362
|
UpdateJobQueueResponse = Shapes::StructureShape.new(name: 'UpdateJobQueueResponse')
|
|
245
363
|
UpdatePolicy = Shapes::StructureShape.new(name: 'UpdatePolicy')
|
|
364
|
+
UpdateQuotaShareRequest = Shapes::StructureShape.new(name: 'UpdateQuotaShareRequest')
|
|
365
|
+
UpdateQuotaShareResponse = Shapes::StructureShape.new(name: 'UpdateQuotaShareResponse')
|
|
246
366
|
UpdateSchedulingPolicyRequest = Shapes::StructureShape.new(name: 'UpdateSchedulingPolicyRequest')
|
|
247
367
|
UpdateSchedulingPolicyResponse = Shapes::StructureShape.new(name: 'UpdateSchedulingPolicyResponse')
|
|
368
|
+
UpdateServiceEnvironmentRequest = Shapes::StructureShape.new(name: 'UpdateServiceEnvironmentRequest')
|
|
369
|
+
UpdateServiceEnvironmentResponse = Shapes::StructureShape.new(name: 'UpdateServiceEnvironmentResponse')
|
|
370
|
+
UpdateServiceJobRequest = Shapes::StructureShape.new(name: 'UpdateServiceJobRequest')
|
|
371
|
+
UpdateServiceJobResponse = Shapes::StructureShape.new(name: 'UpdateServiceJobResponse')
|
|
372
|
+
UserdataType = Shapes::StringShape.new(name: 'UserdataType')
|
|
248
373
|
Volume = Shapes::StructureShape.new(name: 'Volume')
|
|
249
374
|
Volumes = Shapes::ListShape.new(name: 'Volumes')
|
|
250
375
|
|
|
@@ -255,12 +380,15 @@ module Aws::Batch
|
|
|
255
380
|
ArrayProperties.struct_class = Types::ArrayProperties
|
|
256
381
|
|
|
257
382
|
ArrayPropertiesDetail.add_member(:status_summary, Shapes::ShapeRef.new(shape: ArrayJobStatusSummary, location_name: "statusSummary"))
|
|
383
|
+
ArrayPropertiesDetail.add_member(:status_summary_last_updated_at, Shapes::ShapeRef.new(shape: Long, location_name: "statusSummaryLastUpdatedAt"))
|
|
258
384
|
ArrayPropertiesDetail.add_member(:size, Shapes::ShapeRef.new(shape: Integer, location_name: "size"))
|
|
259
385
|
ArrayPropertiesDetail.add_member(:index, Shapes::ShapeRef.new(shape: Integer, location_name: "index"))
|
|
260
386
|
ArrayPropertiesDetail.struct_class = Types::ArrayPropertiesDetail
|
|
261
387
|
|
|
262
388
|
ArrayPropertiesSummary.add_member(:size, Shapes::ShapeRef.new(shape: Integer, location_name: "size"))
|
|
263
389
|
ArrayPropertiesSummary.add_member(:index, Shapes::ShapeRef.new(shape: Integer, location_name: "index"))
|
|
390
|
+
ArrayPropertiesSummary.add_member(:status_summary, Shapes::ShapeRef.new(shape: ArrayJobStatusSummary, location_name: "statusSummary"))
|
|
391
|
+
ArrayPropertiesSummary.add_member(:status_summary_last_updated_at, Shapes::ShapeRef.new(shape: Long, location_name: "statusSummaryLastUpdatedAt"))
|
|
264
392
|
ArrayPropertiesSummary.struct_class = Types::ArrayPropertiesSummary
|
|
265
393
|
|
|
266
394
|
AttemptContainerDetail.add_member(:container_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "containerInstanceArn"))
|
|
@@ -298,6 +426,12 @@ module Aws::Batch
|
|
|
298
426
|
|
|
299
427
|
CancelJobResponse.struct_class = Types::CancelJobResponse
|
|
300
428
|
|
|
429
|
+
CapacityLimit.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
|
|
430
|
+
CapacityLimit.add_member(:capacity_unit, Shapes::ShapeRef.new(shape: String, location_name: "capacityUnit"))
|
|
431
|
+
CapacityLimit.struct_class = Types::CapacityLimit
|
|
432
|
+
|
|
433
|
+
CapacityLimits.member = Shapes::ShapeRef.new(shape: CapacityLimit)
|
|
434
|
+
|
|
301
435
|
ClientException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
302
436
|
ClientException.struct_class = Types::ClientException
|
|
303
437
|
|
|
@@ -333,8 +467,8 @@ module Aws::Batch
|
|
|
333
467
|
ComputeResource.add_member(:maxv_cpus, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "maxvCpus"))
|
|
334
468
|
ComputeResource.add_member(:desiredv_cpus, Shapes::ShapeRef.new(shape: Integer, location_name: "desiredvCpus"))
|
|
335
469
|
ComputeResource.add_member(:instance_types, Shapes::ShapeRef.new(shape: StringList, location_name: "instanceTypes"))
|
|
336
|
-
ComputeResource.add_member(:image_id, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "imageId", metadata: {"deprecatedMessage"=>"This field is deprecated, use ec2Configuration[].imageIdOverride instead."}))
|
|
337
|
-
ComputeResource.add_member(:subnets, Shapes::ShapeRef.new(shape: StringList,
|
|
470
|
+
ComputeResource.add_member(:image_id, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "imageId", metadata: {"deprecatedMessage" => "This field is deprecated, use ec2Configuration[].imageIdOverride instead."}))
|
|
471
|
+
ComputeResource.add_member(:subnets, Shapes::ShapeRef.new(shape: StringList, location_name: "subnets"))
|
|
338
472
|
ComputeResource.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "securityGroupIds"))
|
|
339
473
|
ComputeResource.add_member(:ec2_key_pair, Shapes::ShapeRef.new(shape: String, location_name: "ec2KeyPair"))
|
|
340
474
|
ComputeResource.add_member(:instance_role, Shapes::ShapeRef.new(shape: String, location_name: "instanceRole"))
|
|
@@ -344,6 +478,7 @@ module Aws::Batch
|
|
|
344
478
|
ComputeResource.add_member(:spot_iam_fleet_role, Shapes::ShapeRef.new(shape: String, location_name: "spotIamFleetRole"))
|
|
345
479
|
ComputeResource.add_member(:launch_template, Shapes::ShapeRef.new(shape: LaunchTemplateSpecification, location_name: "launchTemplate"))
|
|
346
480
|
ComputeResource.add_member(:ec2_configuration, Shapes::ShapeRef.new(shape: Ec2ConfigurationList, location_name: "ec2Configuration"))
|
|
481
|
+
ComputeResource.add_member(:scaling_policy, Shapes::ShapeRef.new(shape: ComputeScalingPolicy, location_name: "scalingPolicy"))
|
|
347
482
|
ComputeResource.struct_class = Types::ComputeResource
|
|
348
483
|
|
|
349
484
|
ComputeResourceUpdate.add_member(:minv_cpus, Shapes::ShapeRef.new(shape: Integer, location_name: "minvCpus"))
|
|
@@ -363,8 +498,30 @@ module Aws::Batch
|
|
|
363
498
|
ComputeResourceUpdate.add_member(:update_to_latest_image_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "updateToLatestImageVersion"))
|
|
364
499
|
ComputeResourceUpdate.add_member(:type, Shapes::ShapeRef.new(shape: CRType, location_name: "type"))
|
|
365
500
|
ComputeResourceUpdate.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "imageId"))
|
|
501
|
+
ComputeResourceUpdate.add_member(:scaling_policy, Shapes::ShapeRef.new(shape: ComputeScalingPolicy, location_name: "scalingPolicy"))
|
|
366
502
|
ComputeResourceUpdate.struct_class = Types::ComputeResourceUpdate
|
|
367
503
|
|
|
504
|
+
ComputeScalingPolicy.add_member(:min_scale_down_delay_minutes, Shapes::ShapeRef.new(shape: Integer, location_name: "minScaleDownDelayMinutes"))
|
|
505
|
+
ComputeScalingPolicy.struct_class = Types::ComputeScalingPolicy
|
|
506
|
+
|
|
507
|
+
ConsumableResourceList.member = Shapes::ShapeRef.new(shape: ConsumableResourceRequirement)
|
|
508
|
+
|
|
509
|
+
ConsumableResourceProperties.add_member(:consumable_resource_list, Shapes::ShapeRef.new(shape: ConsumableResourceList, location_name: "consumableResourceList"))
|
|
510
|
+
ConsumableResourceProperties.struct_class = Types::ConsumableResourceProperties
|
|
511
|
+
|
|
512
|
+
ConsumableResourceRequirement.add_member(:consumable_resource, Shapes::ShapeRef.new(shape: String, location_name: "consumableResource"))
|
|
513
|
+
ConsumableResourceRequirement.add_member(:quantity, Shapes::ShapeRef.new(shape: Long, location_name: "quantity"))
|
|
514
|
+
ConsumableResourceRequirement.struct_class = Types::ConsumableResourceRequirement
|
|
515
|
+
|
|
516
|
+
ConsumableResourceSummary.add_member(:consumable_resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceArn"))
|
|
517
|
+
ConsumableResourceSummary.add_member(:consumable_resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceName"))
|
|
518
|
+
ConsumableResourceSummary.add_member(:total_quantity, Shapes::ShapeRef.new(shape: Long, location_name: "totalQuantity"))
|
|
519
|
+
ConsumableResourceSummary.add_member(:in_use_quantity, Shapes::ShapeRef.new(shape: Long, location_name: "inUseQuantity"))
|
|
520
|
+
ConsumableResourceSummary.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
|
521
|
+
ConsumableResourceSummary.struct_class = Types::ConsumableResourceSummary
|
|
522
|
+
|
|
523
|
+
ConsumableResourceSummaryList.member = Shapes::ShapeRef.new(shape: ConsumableResourceSummary)
|
|
524
|
+
|
|
368
525
|
ContainerDetail.add_member(:image, Shapes::ShapeRef.new(shape: String, location_name: "image"))
|
|
369
526
|
ContainerDetail.add_member(:vcpus, Shapes::ShapeRef.new(shape: Integer, location_name: "vcpus"))
|
|
370
527
|
ContainerDetail.add_member(:memory, Shapes::ShapeRef.new(shape: Integer, location_name: "memory"))
|
|
@@ -394,10 +551,11 @@ module Aws::Batch
|
|
|
394
551
|
ContainerDetail.add_member(:ephemeral_storage, Shapes::ShapeRef.new(shape: EphemeralStorage, location_name: "ephemeralStorage"))
|
|
395
552
|
ContainerDetail.add_member(:runtime_platform, Shapes::ShapeRef.new(shape: RuntimePlatform, location_name: "runtimePlatform"))
|
|
396
553
|
ContainerDetail.add_member(:repository_credentials, Shapes::ShapeRef.new(shape: RepositoryCredentials, location_name: "repositoryCredentials"))
|
|
554
|
+
ContainerDetail.add_member(:enable_execute_command, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableExecuteCommand"))
|
|
397
555
|
ContainerDetail.struct_class = Types::ContainerDetail
|
|
398
556
|
|
|
399
|
-
ContainerOverrides.add_member(:vcpus, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "vcpus", metadata: {"deprecatedMessage"=>"This field is deprecated, use resourceRequirements instead."}))
|
|
400
|
-
ContainerOverrides.add_member(:memory, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "memory", metadata: {"deprecatedMessage"=>"This field is deprecated, use resourceRequirements instead."}))
|
|
557
|
+
ContainerOverrides.add_member(:vcpus, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "vcpus", metadata: {"deprecatedMessage" => "This field is deprecated, use resourceRequirements instead."}))
|
|
558
|
+
ContainerOverrides.add_member(:memory, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "memory", metadata: {"deprecatedMessage" => "This field is deprecated, use resourceRequirements instead."}))
|
|
401
559
|
ContainerOverrides.add_member(:command, Shapes::ShapeRef.new(shape: StringList, location_name: "command"))
|
|
402
560
|
ContainerOverrides.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "instanceType"))
|
|
403
561
|
ContainerOverrides.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environment"))
|
|
@@ -405,8 +563,8 @@ module Aws::Batch
|
|
|
405
563
|
ContainerOverrides.struct_class = Types::ContainerOverrides
|
|
406
564
|
|
|
407
565
|
ContainerProperties.add_member(:image, Shapes::ShapeRef.new(shape: String, location_name: "image"))
|
|
408
|
-
ContainerProperties.add_member(:vcpus, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "vcpus", metadata: {"deprecatedMessage"=>"This field is deprecated, use resourceRequirements instead."}))
|
|
409
|
-
ContainerProperties.add_member(:memory, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "memory", metadata: {"deprecatedMessage"=>"This field is deprecated, use resourceRequirements instead."}))
|
|
566
|
+
ContainerProperties.add_member(:vcpus, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "vcpus", metadata: {"deprecatedMessage" => "This field is deprecated, use resourceRequirements instead."}))
|
|
567
|
+
ContainerProperties.add_member(:memory, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "memory", metadata: {"deprecatedMessage" => "This field is deprecated, use resourceRequirements instead."}))
|
|
410
568
|
ContainerProperties.add_member(:command, Shapes::ShapeRef.new(shape: StringList, location_name: "command"))
|
|
411
569
|
ContainerProperties.add_member(:job_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobRoleArn"))
|
|
412
570
|
ContainerProperties.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "executionRoleArn"))
|
|
@@ -424,6 +582,7 @@ module Aws::Batch
|
|
|
424
582
|
ContainerProperties.add_member(:secrets, Shapes::ShapeRef.new(shape: SecretList, location_name: "secrets"))
|
|
425
583
|
ContainerProperties.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
|
|
426
584
|
ContainerProperties.add_member(:fargate_platform_configuration, Shapes::ShapeRef.new(shape: FargatePlatformConfiguration, location_name: "fargatePlatformConfiguration"))
|
|
585
|
+
ContainerProperties.add_member(:enable_execute_command, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableExecuteCommand"))
|
|
427
586
|
ContainerProperties.add_member(:ephemeral_storage, Shapes::ShapeRef.new(shape: EphemeralStorage, location_name: "ephemeralStorage"))
|
|
428
587
|
ContainerProperties.add_member(:runtime_platform, Shapes::ShapeRef.new(shape: RuntimePlatform, location_name: "runtimePlatform"))
|
|
429
588
|
ContainerProperties.add_member(:repository_credentials, Shapes::ShapeRef.new(shape: RepositoryCredentials, location_name: "repositoryCredentials"))
|
|
@@ -448,11 +607,23 @@ module Aws::Batch
|
|
|
448
607
|
CreateComputeEnvironmentResponse.add_member(:compute_environment_arn, Shapes::ShapeRef.new(shape: String, location_name: "computeEnvironmentArn"))
|
|
449
608
|
CreateComputeEnvironmentResponse.struct_class = Types::CreateComputeEnvironmentResponse
|
|
450
609
|
|
|
610
|
+
CreateConsumableResourceRequest.add_member(:consumable_resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceName"))
|
|
611
|
+
CreateConsumableResourceRequest.add_member(:total_quantity, Shapes::ShapeRef.new(shape: Long, location_name: "totalQuantity"))
|
|
612
|
+
CreateConsumableResourceRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
|
613
|
+
CreateConsumableResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
614
|
+
CreateConsumableResourceRequest.struct_class = Types::CreateConsumableResourceRequest
|
|
615
|
+
|
|
616
|
+
CreateConsumableResourceResponse.add_member(:consumable_resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceName"))
|
|
617
|
+
CreateConsumableResourceResponse.add_member(:consumable_resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceArn"))
|
|
618
|
+
CreateConsumableResourceResponse.struct_class = Types::CreateConsumableResourceResponse
|
|
619
|
+
|
|
451
620
|
CreateJobQueueRequest.add_member(:job_queue_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueueName"))
|
|
452
621
|
CreateJobQueueRequest.add_member(:state, Shapes::ShapeRef.new(shape: JQState, location_name: "state"))
|
|
453
622
|
CreateJobQueueRequest.add_member(:scheduling_policy_arn, Shapes::ShapeRef.new(shape: String, location_name: "schedulingPolicyArn"))
|
|
454
623
|
CreateJobQueueRequest.add_member(:priority, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "priority"))
|
|
455
|
-
CreateJobQueueRequest.add_member(:compute_environment_order, Shapes::ShapeRef.new(shape: ComputeEnvironmentOrders,
|
|
624
|
+
CreateJobQueueRequest.add_member(:compute_environment_order, Shapes::ShapeRef.new(shape: ComputeEnvironmentOrders, location_name: "computeEnvironmentOrder"))
|
|
625
|
+
CreateJobQueueRequest.add_member(:service_environment_order, Shapes::ShapeRef.new(shape: ServiceEnvironmentOrders, location_name: "serviceEnvironmentOrder"))
|
|
626
|
+
CreateJobQueueRequest.add_member(:job_queue_type, Shapes::ShapeRef.new(shape: JobQueueType, location_name: "jobQueueType"))
|
|
456
627
|
CreateJobQueueRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
457
628
|
CreateJobQueueRequest.add_member(:job_state_time_limit_actions, Shapes::ShapeRef.new(shape: JobStateTimeLimitActions, location_name: "jobStateTimeLimitActions"))
|
|
458
629
|
CreateJobQueueRequest.struct_class = Types::CreateJobQueueRequest
|
|
@@ -461,7 +632,21 @@ module Aws::Batch
|
|
|
461
632
|
CreateJobQueueResponse.add_member(:job_queue_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueueArn"))
|
|
462
633
|
CreateJobQueueResponse.struct_class = Types::CreateJobQueueResponse
|
|
463
634
|
|
|
635
|
+
CreateQuotaShareRequest.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "quotaShareName"))
|
|
636
|
+
CreateQuotaShareRequest.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueue"))
|
|
637
|
+
CreateQuotaShareRequest.add_member(:capacity_limits, Shapes::ShapeRef.new(shape: QuotaShareCapacityLimits, required: true, location_name: "capacityLimits"))
|
|
638
|
+
CreateQuotaShareRequest.add_member(:resource_sharing_configuration, Shapes::ShapeRef.new(shape: QuotaShareResourceSharingConfiguration, required: true, location_name: "resourceSharingConfiguration"))
|
|
639
|
+
CreateQuotaShareRequest.add_member(:preemption_configuration, Shapes::ShapeRef.new(shape: QuotaSharePreemptionConfiguration, required: true, location_name: "preemptionConfiguration"))
|
|
640
|
+
CreateQuotaShareRequest.add_member(:state, Shapes::ShapeRef.new(shape: QuotaShareState, location_name: "state"))
|
|
641
|
+
CreateQuotaShareRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
642
|
+
CreateQuotaShareRequest.struct_class = Types::CreateQuotaShareRequest
|
|
643
|
+
|
|
644
|
+
CreateQuotaShareResponse.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareName"))
|
|
645
|
+
CreateQuotaShareResponse.add_member(:quota_share_arn, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareArn"))
|
|
646
|
+
CreateQuotaShareResponse.struct_class = Types::CreateQuotaShareResponse
|
|
647
|
+
|
|
464
648
|
CreateSchedulingPolicyRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
|
|
649
|
+
CreateSchedulingPolicyRequest.add_member(:quota_share_policy, Shapes::ShapeRef.new(shape: QuotaSharePolicy, location_name: "quotaSharePolicy"))
|
|
465
650
|
CreateSchedulingPolicyRequest.add_member(:fairshare_policy, Shapes::ShapeRef.new(shape: FairsharePolicy, location_name: "fairsharePolicy"))
|
|
466
651
|
CreateSchedulingPolicyRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
467
652
|
CreateSchedulingPolicyRequest.struct_class = Types::CreateSchedulingPolicyRequest
|
|
@@ -470,21 +655,47 @@ module Aws::Batch
|
|
|
470
655
|
CreateSchedulingPolicyResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
|
471
656
|
CreateSchedulingPolicyResponse.struct_class = Types::CreateSchedulingPolicyResponse
|
|
472
657
|
|
|
658
|
+
CreateServiceEnvironmentRequest.add_member(:service_environment_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironmentName"))
|
|
659
|
+
CreateServiceEnvironmentRequest.add_member(:service_environment_type, Shapes::ShapeRef.new(shape: ServiceEnvironmentType, required: true, location_name: "serviceEnvironmentType"))
|
|
660
|
+
CreateServiceEnvironmentRequest.add_member(:state, Shapes::ShapeRef.new(shape: ServiceEnvironmentState, location_name: "state"))
|
|
661
|
+
CreateServiceEnvironmentRequest.add_member(:capacity_limits, Shapes::ShapeRef.new(shape: CapacityLimits, required: true, location_name: "capacityLimits"))
|
|
662
|
+
CreateServiceEnvironmentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
663
|
+
CreateServiceEnvironmentRequest.struct_class = Types::CreateServiceEnvironmentRequest
|
|
664
|
+
|
|
665
|
+
CreateServiceEnvironmentResponse.add_member(:service_environment_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironmentName"))
|
|
666
|
+
CreateServiceEnvironmentResponse.add_member(:service_environment_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironmentArn"))
|
|
667
|
+
CreateServiceEnvironmentResponse.struct_class = Types::CreateServiceEnvironmentResponse
|
|
668
|
+
|
|
473
669
|
DeleteComputeEnvironmentRequest.add_member(:compute_environment, Shapes::ShapeRef.new(shape: String, required: true, location_name: "computeEnvironment"))
|
|
474
670
|
DeleteComputeEnvironmentRequest.struct_class = Types::DeleteComputeEnvironmentRequest
|
|
475
671
|
|
|
476
672
|
DeleteComputeEnvironmentResponse.struct_class = Types::DeleteComputeEnvironmentResponse
|
|
477
673
|
|
|
674
|
+
DeleteConsumableResourceRequest.add_member(:consumable_resource, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResource"))
|
|
675
|
+
DeleteConsumableResourceRequest.struct_class = Types::DeleteConsumableResourceRequest
|
|
676
|
+
|
|
677
|
+
DeleteConsumableResourceResponse.struct_class = Types::DeleteConsumableResourceResponse
|
|
678
|
+
|
|
478
679
|
DeleteJobQueueRequest.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueue"))
|
|
479
680
|
DeleteJobQueueRequest.struct_class = Types::DeleteJobQueueRequest
|
|
480
681
|
|
|
481
682
|
DeleteJobQueueResponse.struct_class = Types::DeleteJobQueueResponse
|
|
482
683
|
|
|
684
|
+
DeleteQuotaShareRequest.add_member(:quota_share_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "quotaShareArn"))
|
|
685
|
+
DeleteQuotaShareRequest.struct_class = Types::DeleteQuotaShareRequest
|
|
686
|
+
|
|
687
|
+
DeleteQuotaShareResponse.struct_class = Types::DeleteQuotaShareResponse
|
|
688
|
+
|
|
483
689
|
DeleteSchedulingPolicyRequest.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
|
484
690
|
DeleteSchedulingPolicyRequest.struct_class = Types::DeleteSchedulingPolicyRequest
|
|
485
691
|
|
|
486
692
|
DeleteSchedulingPolicyResponse.struct_class = Types::DeleteSchedulingPolicyResponse
|
|
487
693
|
|
|
694
|
+
DeleteServiceEnvironmentRequest.add_member(:service_environment, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironment"))
|
|
695
|
+
DeleteServiceEnvironmentRequest.struct_class = Types::DeleteServiceEnvironmentRequest
|
|
696
|
+
|
|
697
|
+
DeleteServiceEnvironmentResponse.struct_class = Types::DeleteServiceEnvironmentResponse
|
|
698
|
+
|
|
488
699
|
DeregisterJobDefinitionRequest.add_member(:job_definition, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobDefinition"))
|
|
489
700
|
DeregisterJobDefinitionRequest.struct_class = Types::DeregisterJobDefinitionRequest
|
|
490
701
|
|
|
@@ -499,6 +710,19 @@ module Aws::Batch
|
|
|
499
710
|
DescribeComputeEnvironmentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
500
711
|
DescribeComputeEnvironmentsResponse.struct_class = Types::DescribeComputeEnvironmentsResponse
|
|
501
712
|
|
|
713
|
+
DescribeConsumableResourceRequest.add_member(:consumable_resource, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResource"))
|
|
714
|
+
DescribeConsumableResourceRequest.struct_class = Types::DescribeConsumableResourceRequest
|
|
715
|
+
|
|
716
|
+
DescribeConsumableResourceResponse.add_member(:consumable_resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceName"))
|
|
717
|
+
DescribeConsumableResourceResponse.add_member(:consumable_resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceArn"))
|
|
718
|
+
DescribeConsumableResourceResponse.add_member(:total_quantity, Shapes::ShapeRef.new(shape: Long, location_name: "totalQuantity"))
|
|
719
|
+
DescribeConsumableResourceResponse.add_member(:in_use_quantity, Shapes::ShapeRef.new(shape: Long, location_name: "inUseQuantity"))
|
|
720
|
+
DescribeConsumableResourceResponse.add_member(:available_quantity, Shapes::ShapeRef.new(shape: Long, location_name: "availableQuantity"))
|
|
721
|
+
DescribeConsumableResourceResponse.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
|
722
|
+
DescribeConsumableResourceResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Long, location_name: "createdAt"))
|
|
723
|
+
DescribeConsumableResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
724
|
+
DescribeConsumableResourceResponse.struct_class = Types::DescribeConsumableResourceResponse
|
|
725
|
+
|
|
502
726
|
DescribeJobDefinitionsRequest.add_member(:job_definitions, Shapes::ShapeRef.new(shape: StringList, location_name: "jobDefinitions"))
|
|
503
727
|
DescribeJobDefinitionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "maxResults"))
|
|
504
728
|
DescribeJobDefinitionsRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: String, location_name: "jobDefinitionName"))
|
|
@@ -525,12 +749,64 @@ module Aws::Batch
|
|
|
525
749
|
DescribeJobsResponse.add_member(:jobs, Shapes::ShapeRef.new(shape: JobDetailList, location_name: "jobs"))
|
|
526
750
|
DescribeJobsResponse.struct_class = Types::DescribeJobsResponse
|
|
527
751
|
|
|
752
|
+
DescribeQuotaShareRequest.add_member(:quota_share_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "quotaShareArn"))
|
|
753
|
+
DescribeQuotaShareRequest.struct_class = Types::DescribeQuotaShareRequest
|
|
754
|
+
|
|
755
|
+
DescribeQuotaShareResponse.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareName"))
|
|
756
|
+
DescribeQuotaShareResponse.add_member(:quota_share_arn, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareArn"))
|
|
757
|
+
DescribeQuotaShareResponse.add_member(:job_queue_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobQueueArn"))
|
|
758
|
+
DescribeQuotaShareResponse.add_member(:capacity_limits, Shapes::ShapeRef.new(shape: QuotaShareCapacityLimits, location_name: "capacityLimits"))
|
|
759
|
+
DescribeQuotaShareResponse.add_member(:resource_sharing_configuration, Shapes::ShapeRef.new(shape: QuotaShareResourceSharingConfiguration, location_name: "resourceSharingConfiguration"))
|
|
760
|
+
DescribeQuotaShareResponse.add_member(:preemption_configuration, Shapes::ShapeRef.new(shape: QuotaSharePreemptionConfiguration, location_name: "preemptionConfiguration"))
|
|
761
|
+
DescribeQuotaShareResponse.add_member(:state, Shapes::ShapeRef.new(shape: QuotaShareState, location_name: "state"))
|
|
762
|
+
DescribeQuotaShareResponse.add_member(:status, Shapes::ShapeRef.new(shape: QuotaShareStatus, location_name: "status"))
|
|
763
|
+
DescribeQuotaShareResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
764
|
+
DescribeQuotaShareResponse.struct_class = Types::DescribeQuotaShareResponse
|
|
765
|
+
|
|
528
766
|
DescribeSchedulingPoliciesRequest.add_member(:arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "arns"))
|
|
529
767
|
DescribeSchedulingPoliciesRequest.struct_class = Types::DescribeSchedulingPoliciesRequest
|
|
530
768
|
|
|
531
769
|
DescribeSchedulingPoliciesResponse.add_member(:scheduling_policies, Shapes::ShapeRef.new(shape: SchedulingPolicyDetailList, location_name: "schedulingPolicies"))
|
|
532
770
|
DescribeSchedulingPoliciesResponse.struct_class = Types::DescribeSchedulingPoliciesResponse
|
|
533
771
|
|
|
772
|
+
DescribeServiceEnvironmentsRequest.add_member(:service_environments, Shapes::ShapeRef.new(shape: StringList, location_name: "serviceEnvironments"))
|
|
773
|
+
DescribeServiceEnvironmentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "maxResults"))
|
|
774
|
+
DescribeServiceEnvironmentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
775
|
+
DescribeServiceEnvironmentsRequest.struct_class = Types::DescribeServiceEnvironmentsRequest
|
|
776
|
+
|
|
777
|
+
DescribeServiceEnvironmentsResponse.add_member(:service_environments, Shapes::ShapeRef.new(shape: ServiceEnvironmentDetailList, location_name: "serviceEnvironments"))
|
|
778
|
+
DescribeServiceEnvironmentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
779
|
+
DescribeServiceEnvironmentsResponse.struct_class = Types::DescribeServiceEnvironmentsResponse
|
|
780
|
+
|
|
781
|
+
DescribeServiceJobRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobId"))
|
|
782
|
+
DescribeServiceJobRequest.struct_class = Types::DescribeServiceJobRequest
|
|
783
|
+
|
|
784
|
+
DescribeServiceJobResponse.add_member(:attempts, Shapes::ShapeRef.new(shape: ServiceJobAttemptDetails, location_name: "attempts"))
|
|
785
|
+
DescribeServiceJobResponse.add_member(:capacity_usage, Shapes::ShapeRef.new(shape: ServiceJobCapacityUsageDetailList, location_name: "capacityUsage"))
|
|
786
|
+
DescribeServiceJobResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Long, location_name: "createdAt"))
|
|
787
|
+
DescribeServiceJobResponse.add_member(:is_terminated, Shapes::ShapeRef.new(shape: Boolean, location_name: "isTerminated"))
|
|
788
|
+
DescribeServiceJobResponse.add_member(:job_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobArn"))
|
|
789
|
+
DescribeServiceJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobId"))
|
|
790
|
+
DescribeServiceJobResponse.add_member(:job_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobName"))
|
|
791
|
+
DescribeServiceJobResponse.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueue"))
|
|
792
|
+
DescribeServiceJobResponse.add_member(:latest_attempt, Shapes::ShapeRef.new(shape: LatestServiceJobAttempt, location_name: "latestAttempt"))
|
|
793
|
+
DescribeServiceJobResponse.add_member(:retry_strategy, Shapes::ShapeRef.new(shape: ServiceJobRetryStrategy, location_name: "retryStrategy"))
|
|
794
|
+
DescribeServiceJobResponse.add_member(:scheduled_at, Shapes::ShapeRef.new(shape: Long, location_name: "scheduledAt"))
|
|
795
|
+
DescribeServiceJobResponse.add_member(:scheduling_priority, Shapes::ShapeRef.new(shape: Integer, location_name: "schedulingPriority"))
|
|
796
|
+
DescribeServiceJobResponse.add_member(:service_request_payload, Shapes::ShapeRef.new(shape: String, location_name: "serviceRequestPayload"))
|
|
797
|
+
DescribeServiceJobResponse.add_member(:service_job_type, Shapes::ShapeRef.new(shape: ServiceJobType, required: true, location_name: "serviceJobType"))
|
|
798
|
+
DescribeServiceJobResponse.add_member(:share_identifier, Shapes::ShapeRef.new(shape: String, location_name: "shareIdentifier"))
|
|
799
|
+
DescribeServiceJobResponse.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareName"))
|
|
800
|
+
DescribeServiceJobResponse.add_member(:preemption_configuration, Shapes::ShapeRef.new(shape: ServiceJobPreemptionConfiguration, location_name: "preemptionConfiguration"))
|
|
801
|
+
DescribeServiceJobResponse.add_member(:preemption_summary, Shapes::ShapeRef.new(shape: ServiceJobPreemptionSummary, location_name: "preemptionSummary"))
|
|
802
|
+
DescribeServiceJobResponse.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "startedAt"))
|
|
803
|
+
DescribeServiceJobResponse.add_member(:status, Shapes::ShapeRef.new(shape: ServiceJobStatus, required: true, location_name: "status"))
|
|
804
|
+
DescribeServiceJobResponse.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
805
|
+
DescribeServiceJobResponse.add_member(:stopped_at, Shapes::ShapeRef.new(shape: Long, location_name: "stoppedAt"))
|
|
806
|
+
DescribeServiceJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
807
|
+
DescribeServiceJobResponse.add_member(:timeout_config, Shapes::ShapeRef.new(shape: ServiceJobTimeout, location_name: "timeoutConfig"))
|
|
808
|
+
DescribeServiceJobResponse.struct_class = Types::DescribeServiceJobResponse
|
|
809
|
+
|
|
534
810
|
Device.add_member(:host_path, Shapes::ShapeRef.new(shape: String, required: true, location_name: "hostPath"))
|
|
535
811
|
Device.add_member(:container_path, Shapes::ShapeRef.new(shape: String, location_name: "containerPath"))
|
|
536
812
|
Device.add_member(:permissions, Shapes::ShapeRef.new(shape: DeviceCgroupPermissions, location_name: "permissions"))
|
|
@@ -553,6 +829,7 @@ module Aws::Batch
|
|
|
553
829
|
|
|
554
830
|
Ec2Configuration.add_member(:image_type, Shapes::ShapeRef.new(shape: ImageType, required: true, location_name: "imageType"))
|
|
555
831
|
Ec2Configuration.add_member(:image_id_override, Shapes::ShapeRef.new(shape: ImageIdOverride, location_name: "imageIdOverride"))
|
|
832
|
+
Ec2Configuration.add_member(:batch_image_status, Shapes::ShapeRef.new(shape: String, location_name: "batchImageStatus"))
|
|
556
833
|
Ec2Configuration.add_member(:image_kubernetes_version, Shapes::ShapeRef.new(shape: KubernetesVersion, location_name: "imageKubernetesVersion"))
|
|
557
834
|
Ec2Configuration.struct_class = Types::Ec2Configuration
|
|
558
835
|
|
|
@@ -579,6 +856,7 @@ module Aws::Batch
|
|
|
579
856
|
EcsTaskDetails.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
|
|
580
857
|
EcsTaskDetails.add_member(:runtime_platform, Shapes::ShapeRef.new(shape: RuntimePlatform, location_name: "runtimePlatform"))
|
|
581
858
|
EcsTaskDetails.add_member(:volumes, Shapes::ShapeRef.new(shape: Volumes, location_name: "volumes"))
|
|
859
|
+
EcsTaskDetails.add_member(:enable_execute_command, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableExecuteCommand"))
|
|
582
860
|
EcsTaskDetails.struct_class = Types::EcsTaskDetails
|
|
583
861
|
|
|
584
862
|
EcsTaskProperties.add_member(:containers, Shapes::ShapeRef.new(shape: ListTaskContainerProperties, required: true, location_name: "containers"))
|
|
@@ -591,9 +869,14 @@ module Aws::Batch
|
|
|
591
869
|
EcsTaskProperties.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
|
|
592
870
|
EcsTaskProperties.add_member(:runtime_platform, Shapes::ShapeRef.new(shape: RuntimePlatform, location_name: "runtimePlatform"))
|
|
593
871
|
EcsTaskProperties.add_member(:volumes, Shapes::ShapeRef.new(shape: Volumes, location_name: "volumes"))
|
|
872
|
+
EcsTaskProperties.add_member(:enable_execute_command, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableExecuteCommand"))
|
|
594
873
|
EcsTaskProperties.struct_class = Types::EcsTaskProperties
|
|
595
874
|
|
|
875
|
+
EksAnnotationsMap.key = Shapes::ShapeRef.new(shape: String)
|
|
876
|
+
EksAnnotationsMap.value = Shapes::ShapeRef.new(shape: String)
|
|
877
|
+
|
|
596
878
|
EksAttemptContainerDetail.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
879
|
+
EksAttemptContainerDetail.add_member(:container_id, Shapes::ShapeRef.new(shape: String, location_name: "containerID"))
|
|
597
880
|
EksAttemptContainerDetail.add_member(:exit_code, Shapes::ShapeRef.new(shape: Integer, location_name: "exitCode"))
|
|
598
881
|
EksAttemptContainerDetail.add_member(:reason, Shapes::ShapeRef.new(shape: String, location_name: "reason"))
|
|
599
882
|
EksAttemptContainerDetail.struct_class = Types::EksAttemptContainerDetail
|
|
@@ -604,6 +887,7 @@ module Aws::Batch
|
|
|
604
887
|
EksAttemptDetail.add_member(:init_containers, Shapes::ShapeRef.new(shape: EksAttemptContainerDetails, location_name: "initContainers"))
|
|
605
888
|
EksAttemptDetail.add_member(:eks_cluster_arn, Shapes::ShapeRef.new(shape: String, location_name: "eksClusterArn"))
|
|
606
889
|
EksAttemptDetail.add_member(:pod_name, Shapes::ShapeRef.new(shape: String, location_name: "podName"))
|
|
890
|
+
EksAttemptDetail.add_member(:pod_namespace, Shapes::ShapeRef.new(shape: String, location_name: "podNamespace"))
|
|
607
891
|
EksAttemptDetail.add_member(:node_name, Shapes::ShapeRef.new(shape: String, location_name: "nodeName"))
|
|
608
892
|
EksAttemptDetail.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, location_name: "startedAt"))
|
|
609
893
|
EksAttemptDetail.add_member(:stopped_at, Shapes::ShapeRef.new(shape: Long, location_name: "stoppedAt"))
|
|
@@ -672,6 +956,7 @@ module Aws::Batch
|
|
|
672
956
|
|
|
673
957
|
EksContainerVolumeMount.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
674
958
|
EksContainerVolumeMount.add_member(:mount_path, Shapes::ShapeRef.new(shape: String, location_name: "mountPath"))
|
|
959
|
+
EksContainerVolumeMount.add_member(:sub_path, Shapes::ShapeRef.new(shape: String, location_name: "subPath"))
|
|
675
960
|
EksContainerVolumeMount.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "readOnly"))
|
|
676
961
|
EksContainerVolumeMount.struct_class = Types::EksContainerVolumeMount
|
|
677
962
|
|
|
@@ -693,8 +978,14 @@ module Aws::Batch
|
|
|
693
978
|
EksLimits.value = Shapes::ShapeRef.new(shape: Quantity)
|
|
694
979
|
|
|
695
980
|
EksMetadata.add_member(:labels, Shapes::ShapeRef.new(shape: EksLabelsMap, location_name: "labels"))
|
|
981
|
+
EksMetadata.add_member(:annotations, Shapes::ShapeRef.new(shape: EksAnnotationsMap, location_name: "annotations"))
|
|
982
|
+
EksMetadata.add_member(:namespace, Shapes::ShapeRef.new(shape: String, location_name: "namespace"))
|
|
696
983
|
EksMetadata.struct_class = Types::EksMetadata
|
|
697
984
|
|
|
985
|
+
EksPersistentVolumeClaim.add_member(:claim_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "claimName"))
|
|
986
|
+
EksPersistentVolumeClaim.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "readOnly"))
|
|
987
|
+
EksPersistentVolumeClaim.struct_class = Types::EksPersistentVolumeClaim
|
|
988
|
+
|
|
698
989
|
EksPodProperties.add_member(:service_account_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceAccountName"))
|
|
699
990
|
EksPodProperties.add_member(:host_network, Shapes::ShapeRef.new(shape: Boolean, location_name: "hostNetwork"))
|
|
700
991
|
EksPodProperties.add_member(:dns_policy, Shapes::ShapeRef.new(shape: String, location_name: "dnsPolicy"))
|
|
@@ -744,6 +1035,7 @@ module Aws::Batch
|
|
|
744
1035
|
EksVolume.add_member(:host_path, Shapes::ShapeRef.new(shape: EksHostPath, location_name: "hostPath"))
|
|
745
1036
|
EksVolume.add_member(:empty_dir, Shapes::ShapeRef.new(shape: EksEmptyDir, location_name: "emptyDir"))
|
|
746
1037
|
EksVolume.add_member(:secret, Shapes::ShapeRef.new(shape: EksSecret, location_name: "secret"))
|
|
1038
|
+
EksVolume.add_member(:persistent_volume_claim, Shapes::ShapeRef.new(shape: EksPersistentVolumeClaim, location_name: "persistentVolumeClaim"))
|
|
747
1039
|
EksVolume.struct_class = Types::EksVolume
|
|
748
1040
|
|
|
749
1041
|
EksVolumes.member = Shapes::ShapeRef.new(shape: EksVolume)
|
|
@@ -761,14 +1053,37 @@ module Aws::Batch
|
|
|
761
1053
|
|
|
762
1054
|
EvaluateOnExitList.member = Shapes::ShapeRef.new(shape: EvaluateOnExit)
|
|
763
1055
|
|
|
1056
|
+
FairshareCapacityUsage.add_member(:capacity_unit, Shapes::ShapeRef.new(shape: String, location_name: "capacityUnit"))
|
|
1057
|
+
FairshareCapacityUsage.add_member(:quantity, Shapes::ShapeRef.new(shape: Double, location_name: "quantity"))
|
|
1058
|
+
FairshareCapacityUsage.struct_class = Types::FairshareCapacityUsage
|
|
1059
|
+
|
|
1060
|
+
FairshareCapacityUsageList.member = Shapes::ShapeRef.new(shape: FairshareCapacityUsage)
|
|
1061
|
+
|
|
1062
|
+
FairshareCapacityUtilization.add_member(:share_identifier, Shapes::ShapeRef.new(shape: String, location_name: "shareIdentifier"))
|
|
1063
|
+
FairshareCapacityUtilization.add_member(:capacity_usage, Shapes::ShapeRef.new(shape: FairshareCapacityUsageList, location_name: "capacityUsage"))
|
|
1064
|
+
FairshareCapacityUtilization.struct_class = Types::FairshareCapacityUtilization
|
|
1065
|
+
|
|
1066
|
+
FairshareCapacityUtilizationList.member = Shapes::ShapeRef.new(shape: FairshareCapacityUtilization)
|
|
1067
|
+
|
|
764
1068
|
FairsharePolicy.add_member(:share_decay_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "shareDecaySeconds"))
|
|
765
1069
|
FairsharePolicy.add_member(:compute_reservation, Shapes::ShapeRef.new(shape: Integer, location_name: "computeReservation"))
|
|
766
1070
|
FairsharePolicy.add_member(:share_distribution, Shapes::ShapeRef.new(shape: ShareAttributesList, location_name: "shareDistribution"))
|
|
767
1071
|
FairsharePolicy.struct_class = Types::FairsharePolicy
|
|
768
1072
|
|
|
1073
|
+
FairshareUtilizationDetail.add_member(:active_share_count, Shapes::ShapeRef.new(shape: Long, location_name: "activeShareCount"))
|
|
1074
|
+
FairshareUtilizationDetail.add_member(:top_capacity_utilization, Shapes::ShapeRef.new(shape: FairshareCapacityUtilizationList, location_name: "topCapacityUtilization"))
|
|
1075
|
+
FairshareUtilizationDetail.struct_class = Types::FairshareUtilizationDetail
|
|
1076
|
+
|
|
769
1077
|
FargatePlatformConfiguration.add_member(:platform_version, Shapes::ShapeRef.new(shape: String, location_name: "platformVersion"))
|
|
770
1078
|
FargatePlatformConfiguration.struct_class = Types::FargatePlatformConfiguration
|
|
771
1079
|
|
|
1080
|
+
FirelensConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: FirelensConfigurationType, required: true, location_name: "type"))
|
|
1081
|
+
FirelensConfiguration.add_member(:options, Shapes::ShapeRef.new(shape: FirelensConfigurationOptionsMap, location_name: "options"))
|
|
1082
|
+
FirelensConfiguration.struct_class = Types::FirelensConfiguration
|
|
1083
|
+
|
|
1084
|
+
FirelensConfigurationOptionsMap.key = Shapes::ShapeRef.new(shape: String)
|
|
1085
|
+
FirelensConfigurationOptionsMap.value = Shapes::ShapeRef.new(shape: String)
|
|
1086
|
+
|
|
772
1087
|
FrontOfQueueDetail.add_member(:jobs, Shapes::ShapeRef.new(shape: FrontOfQueueJobSummaryList, location_name: "jobs"))
|
|
773
1088
|
FrontOfQueueDetail.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Long, location_name: "lastUpdatedAt"))
|
|
774
1089
|
FrontOfQueueDetail.struct_class = Types::FrontOfQueueDetail
|
|
@@ -779,10 +1094,25 @@ module Aws::Batch
|
|
|
779
1094
|
|
|
780
1095
|
FrontOfQueueJobSummaryList.member = Shapes::ShapeRef.new(shape: FrontOfQueueJobSummary)
|
|
781
1096
|
|
|
1097
|
+
FrontOfQuotaShareJobSummary.add_member(:job_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobArn"))
|
|
1098
|
+
FrontOfQuotaShareJobSummary.add_member(:earliest_time_at_position, Shapes::ShapeRef.new(shape: Long, location_name: "earliestTimeAtPosition"))
|
|
1099
|
+
FrontOfQuotaShareJobSummary.struct_class = Types::FrontOfQuotaShareJobSummary
|
|
1100
|
+
|
|
1101
|
+
FrontOfQuotaShareJobSummaryList.member = Shapes::ShapeRef.new(shape: FrontOfQuotaShareJobSummary)
|
|
1102
|
+
|
|
1103
|
+
FrontOfQuotaSharesDetail.add_member(:quota_shares, Shapes::ShapeRef.new(shape: FrontOfQuotaSharesJobSummaryMap, location_name: "quotaShares"))
|
|
1104
|
+
FrontOfQuotaSharesDetail.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Long, location_name: "lastUpdatedAt"))
|
|
1105
|
+
FrontOfQuotaSharesDetail.struct_class = Types::FrontOfQuotaSharesDetail
|
|
1106
|
+
|
|
1107
|
+
FrontOfQuotaSharesJobSummaryMap.key = Shapes::ShapeRef.new(shape: String)
|
|
1108
|
+
FrontOfQuotaSharesJobSummaryMap.value = Shapes::ShapeRef.new(shape: FrontOfQuotaShareJobSummaryList)
|
|
1109
|
+
|
|
782
1110
|
GetJobQueueSnapshotRequest.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueue"))
|
|
783
1111
|
GetJobQueueSnapshotRequest.struct_class = Types::GetJobQueueSnapshotRequest
|
|
784
1112
|
|
|
785
1113
|
GetJobQueueSnapshotResponse.add_member(:front_of_queue, Shapes::ShapeRef.new(shape: FrontOfQueueDetail, location_name: "frontOfQueue"))
|
|
1114
|
+
GetJobQueueSnapshotResponse.add_member(:front_of_quota_shares, Shapes::ShapeRef.new(shape: FrontOfQuotaSharesDetail, location_name: "frontOfQuotaShares"))
|
|
1115
|
+
GetJobQueueSnapshotResponse.add_member(:queue_utilization, Shapes::ShapeRef.new(shape: QueueSnapshotUtilizationDetail, location_name: "queueUtilization"))
|
|
786
1116
|
GetJobQueueSnapshotResponse.struct_class = Types::GetJobQueueSnapshotResponse
|
|
787
1117
|
|
|
788
1118
|
Host.add_member(:source_path, Shapes::ShapeRef.new(shape: String, location_name: "sourcePath"))
|
|
@@ -793,6 +1123,12 @@ module Aws::Batch
|
|
|
793
1123
|
|
|
794
1124
|
ImagePullSecrets.member = Shapes::ShapeRef.new(shape: ImagePullSecret)
|
|
795
1125
|
|
|
1126
|
+
JobCapacityUsageSummary.add_member(:capacity_unit, Shapes::ShapeRef.new(shape: String, location_name: "capacityUnit"))
|
|
1127
|
+
JobCapacityUsageSummary.add_member(:quantity, Shapes::ShapeRef.new(shape: Double, location_name: "quantity"))
|
|
1128
|
+
JobCapacityUsageSummary.struct_class = Types::JobCapacityUsageSummary
|
|
1129
|
+
|
|
1130
|
+
JobCapacityUsageSummaryList.member = Shapes::ShapeRef.new(shape: JobCapacityUsageSummary)
|
|
1131
|
+
|
|
796
1132
|
JobDefinition.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobDefinitionName"))
|
|
797
1133
|
JobDefinition.add_member(:job_definition_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobDefinitionArn"))
|
|
798
1134
|
JobDefinition.add_member(:revision, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "revision"))
|
|
@@ -810,6 +1146,7 @@ module Aws::Batch
|
|
|
810
1146
|
JobDefinition.add_member(:ecs_properties, Shapes::ShapeRef.new(shape: EcsProperties, location_name: "ecsProperties"))
|
|
811
1147
|
JobDefinition.add_member(:eks_properties, Shapes::ShapeRef.new(shape: EksProperties, location_name: "eksProperties"))
|
|
812
1148
|
JobDefinition.add_member(:container_orchestration_type, Shapes::ShapeRef.new(shape: OrchestrationType, location_name: "containerOrchestrationType"))
|
|
1149
|
+
JobDefinition.add_member(:consumable_resource_properties, Shapes::ShapeRef.new(shape: ConsumableResourceProperties, location_name: "consumableResourceProperties"))
|
|
813
1150
|
JobDefinition.struct_class = Types::JobDefinition
|
|
814
1151
|
|
|
815
1152
|
JobDefinitionList.member = Shapes::ShapeRef.new(shape: JobDefinition)
|
|
@@ -849,6 +1186,7 @@ module Aws::Batch
|
|
|
849
1186
|
JobDetail.add_member(:ecs_properties, Shapes::ShapeRef.new(shape: EcsPropertiesDetail, location_name: "ecsProperties"))
|
|
850
1187
|
JobDetail.add_member(:is_cancelled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isCancelled"))
|
|
851
1188
|
JobDetail.add_member(:is_terminated, Shapes::ShapeRef.new(shape: Boolean, location_name: "isTerminated"))
|
|
1189
|
+
JobDetail.add_member(:consumable_resource_properties, Shapes::ShapeRef.new(shape: ConsumableResourceProperties, location_name: "consumableResourceProperties"))
|
|
852
1190
|
JobDetail.struct_class = Types::JobDetail
|
|
853
1191
|
|
|
854
1192
|
JobDetailList.member = Shapes::ShapeRef.new(shape: JobDetail)
|
|
@@ -861,6 +1199,8 @@ module Aws::Batch
|
|
|
861
1199
|
JobQueueDetail.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
862
1200
|
JobQueueDetail.add_member(:priority, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "priority"))
|
|
863
1201
|
JobQueueDetail.add_member(:compute_environment_order, Shapes::ShapeRef.new(shape: ComputeEnvironmentOrders, required: true, location_name: "computeEnvironmentOrder"))
|
|
1202
|
+
JobQueueDetail.add_member(:service_environment_order, Shapes::ShapeRef.new(shape: ServiceEnvironmentOrders, location_name: "serviceEnvironmentOrder"))
|
|
1203
|
+
JobQueueDetail.add_member(:job_queue_type, Shapes::ShapeRef.new(shape: JobQueueType, location_name: "jobQueueType"))
|
|
864
1204
|
JobQueueDetail.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
865
1205
|
JobQueueDetail.add_member(:job_state_time_limit_actions, Shapes::ShapeRef.new(shape: JobStateTimeLimitActions, location_name: "jobStateTimeLimitActions"))
|
|
866
1206
|
JobQueueDetail.struct_class = Types::JobQueueDetail
|
|
@@ -878,7 +1218,10 @@ module Aws::Batch
|
|
|
878
1218
|
JobSummary.add_member(:job_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobArn"))
|
|
879
1219
|
JobSummary.add_member(:job_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobId"))
|
|
880
1220
|
JobSummary.add_member(:job_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobName"))
|
|
1221
|
+
JobSummary.add_member(:capacity_usage, Shapes::ShapeRef.new(shape: JobCapacityUsageSummaryList, location_name: "capacityUsage"))
|
|
881
1222
|
JobSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Long, location_name: "createdAt"))
|
|
1223
|
+
JobSummary.add_member(:scheduled_at, Shapes::ShapeRef.new(shape: Long, location_name: "scheduledAt"))
|
|
1224
|
+
JobSummary.add_member(:share_identifier, Shapes::ShapeRef.new(shape: String, location_name: "shareIdentifier"))
|
|
882
1225
|
JobSummary.add_member(:status, Shapes::ShapeRef.new(shape: JobStatus, location_name: "status"))
|
|
883
1226
|
JobSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
884
1227
|
JobSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, location_name: "startedAt"))
|
|
@@ -902,11 +1245,25 @@ module Aws::Batch
|
|
|
902
1245
|
KeyValuesPair.add_member(:values, Shapes::ShapeRef.new(shape: StringList, location_name: "values"))
|
|
903
1246
|
KeyValuesPair.struct_class = Types::KeyValuesPair
|
|
904
1247
|
|
|
1248
|
+
LatestServiceJobAttempt.add_member(:service_resource_id, Shapes::ShapeRef.new(shape: ServiceResourceId, location_name: "serviceResourceId"))
|
|
1249
|
+
LatestServiceJobAttempt.struct_class = Types::LatestServiceJobAttempt
|
|
1250
|
+
|
|
905
1251
|
LaunchTemplateSpecification.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
|
|
906
1252
|
LaunchTemplateSpecification.add_member(:launch_template_name, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateName"))
|
|
907
1253
|
LaunchTemplateSpecification.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "version"))
|
|
1254
|
+
LaunchTemplateSpecification.add_member(:overrides, Shapes::ShapeRef.new(shape: LaunchTemplateSpecificationOverrideList, location_name: "overrides"))
|
|
1255
|
+
LaunchTemplateSpecification.add_member(:userdata_type, Shapes::ShapeRef.new(shape: UserdataType, location_name: "userdataType"))
|
|
908
1256
|
LaunchTemplateSpecification.struct_class = Types::LaunchTemplateSpecification
|
|
909
1257
|
|
|
1258
|
+
LaunchTemplateSpecificationOverride.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
|
|
1259
|
+
LaunchTemplateSpecificationOverride.add_member(:launch_template_name, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateName"))
|
|
1260
|
+
LaunchTemplateSpecificationOverride.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "version"))
|
|
1261
|
+
LaunchTemplateSpecificationOverride.add_member(:target_instance_types, Shapes::ShapeRef.new(shape: StringList, location_name: "targetInstanceTypes"))
|
|
1262
|
+
LaunchTemplateSpecificationOverride.add_member(:userdata_type, Shapes::ShapeRef.new(shape: UserdataType, location_name: "userdataType"))
|
|
1263
|
+
LaunchTemplateSpecificationOverride.struct_class = Types::LaunchTemplateSpecificationOverride
|
|
1264
|
+
|
|
1265
|
+
LaunchTemplateSpecificationOverrideList.member = Shapes::ShapeRef.new(shape: LaunchTemplateSpecificationOverride)
|
|
1266
|
+
|
|
910
1267
|
LinuxParameters.add_member(:devices, Shapes::ShapeRef.new(shape: DevicesList, location_name: "devices"))
|
|
911
1268
|
LinuxParameters.add_member(:init_process_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "initProcessEnabled"))
|
|
912
1269
|
LinuxParameters.add_member(:shared_memory_size, Shapes::ShapeRef.new(shape: Integer, location_name: "sharedMemorySize"))
|
|
@@ -919,10 +1276,48 @@ module Aws::Batch
|
|
|
919
1276
|
|
|
920
1277
|
ListAttemptTaskContainerDetails.member = Shapes::ShapeRef.new(shape: AttemptTaskContainerDetails)
|
|
921
1278
|
|
|
1279
|
+
ListConsumableResourcesFilterList.member = Shapes::ShapeRef.new(shape: KeyValuesPair)
|
|
1280
|
+
|
|
1281
|
+
ListConsumableResourcesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ListConsumableResourcesFilterList, location_name: "filters"))
|
|
1282
|
+
ListConsumableResourcesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "maxResults"))
|
|
1283
|
+
ListConsumableResourcesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1284
|
+
ListConsumableResourcesRequest.struct_class = Types::ListConsumableResourcesRequest
|
|
1285
|
+
|
|
1286
|
+
ListConsumableResourcesResponse.add_member(:consumable_resources, Shapes::ShapeRef.new(shape: ConsumableResourceSummaryList, required: true, location_name: "consumableResources"))
|
|
1287
|
+
ListConsumableResourcesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1288
|
+
ListConsumableResourcesResponse.struct_class = Types::ListConsumableResourcesResponse
|
|
1289
|
+
|
|
922
1290
|
ListEcsTaskDetails.member = Shapes::ShapeRef.new(shape: EcsTaskDetails)
|
|
923
1291
|
|
|
924
1292
|
ListEcsTaskProperties.member = Shapes::ShapeRef.new(shape: EcsTaskProperties)
|
|
925
1293
|
|
|
1294
|
+
ListJobsByConsumableResourceFilterList.member = Shapes::ShapeRef.new(shape: KeyValuesPair)
|
|
1295
|
+
|
|
1296
|
+
ListJobsByConsumableResourceRequest.add_member(:consumable_resource, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResource"))
|
|
1297
|
+
ListJobsByConsumableResourceRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ListJobsByConsumableResourceFilterList, location_name: "filters"))
|
|
1298
|
+
ListJobsByConsumableResourceRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "maxResults"))
|
|
1299
|
+
ListJobsByConsumableResourceRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1300
|
+
ListJobsByConsumableResourceRequest.struct_class = Types::ListJobsByConsumableResourceRequest
|
|
1301
|
+
|
|
1302
|
+
ListJobsByConsumableResourceResponse.add_member(:jobs, Shapes::ShapeRef.new(shape: ListJobsByConsumableResourceSummaryList, required: true, location_name: "jobs"))
|
|
1303
|
+
ListJobsByConsumableResourceResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1304
|
+
ListJobsByConsumableResourceResponse.struct_class = Types::ListJobsByConsumableResourceResponse
|
|
1305
|
+
|
|
1306
|
+
ListJobsByConsumableResourceSummary.add_member(:job_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobArn"))
|
|
1307
|
+
ListJobsByConsumableResourceSummary.add_member(:job_queue_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueueArn"))
|
|
1308
|
+
ListJobsByConsumableResourceSummary.add_member(:job_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobName"))
|
|
1309
|
+
ListJobsByConsumableResourceSummary.add_member(:job_definition_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobDefinitionArn"))
|
|
1310
|
+
ListJobsByConsumableResourceSummary.add_member(:share_identifier, Shapes::ShapeRef.new(shape: String, location_name: "shareIdentifier"))
|
|
1311
|
+
ListJobsByConsumableResourceSummary.add_member(:job_status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobStatus"))
|
|
1312
|
+
ListJobsByConsumableResourceSummary.add_member(:quantity, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "quantity"))
|
|
1313
|
+
ListJobsByConsumableResourceSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1314
|
+
ListJobsByConsumableResourceSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, location_name: "startedAt"))
|
|
1315
|
+
ListJobsByConsumableResourceSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "createdAt"))
|
|
1316
|
+
ListJobsByConsumableResourceSummary.add_member(:consumable_resource_properties, Shapes::ShapeRef.new(shape: ConsumableResourceProperties, required: true, location_name: "consumableResourceProperties"))
|
|
1317
|
+
ListJobsByConsumableResourceSummary.struct_class = Types::ListJobsByConsumableResourceSummary
|
|
1318
|
+
|
|
1319
|
+
ListJobsByConsumableResourceSummaryList.member = Shapes::ShapeRef.new(shape: ListJobsByConsumableResourceSummary)
|
|
1320
|
+
|
|
926
1321
|
ListJobsFilterList.member = Shapes::ShapeRef.new(shape: KeyValuesPair)
|
|
927
1322
|
|
|
928
1323
|
ListJobsRequest.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, location_name: "jobQueue"))
|
|
@@ -938,6 +1333,15 @@ module Aws::Batch
|
|
|
938
1333
|
ListJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
939
1334
|
ListJobsResponse.struct_class = Types::ListJobsResponse
|
|
940
1335
|
|
|
1336
|
+
ListQuotaSharesRequest.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueue"))
|
|
1337
|
+
ListQuotaSharesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "maxResults"))
|
|
1338
|
+
ListQuotaSharesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1339
|
+
ListQuotaSharesRequest.struct_class = Types::ListQuotaSharesRequest
|
|
1340
|
+
|
|
1341
|
+
ListQuotaSharesResponse.add_member(:quota_shares, Shapes::ShapeRef.new(shape: QuotaShareList, location_name: "quotaShares"))
|
|
1342
|
+
ListQuotaSharesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1343
|
+
ListQuotaSharesResponse.struct_class = Types::ListQuotaSharesResponse
|
|
1344
|
+
|
|
941
1345
|
ListSchedulingPoliciesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "maxResults"))
|
|
942
1346
|
ListSchedulingPoliciesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
943
1347
|
ListSchedulingPoliciesRequest.struct_class = Types::ListSchedulingPoliciesRequest
|
|
@@ -946,6 +1350,17 @@ module Aws::Batch
|
|
|
946
1350
|
ListSchedulingPoliciesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
947
1351
|
ListSchedulingPoliciesResponse.struct_class = Types::ListSchedulingPoliciesResponse
|
|
948
1352
|
|
|
1353
|
+
ListServiceJobsRequest.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, location_name: "jobQueue"))
|
|
1354
|
+
ListServiceJobsRequest.add_member(:job_status, Shapes::ShapeRef.new(shape: ServiceJobStatus, location_name: "jobStatus"))
|
|
1355
|
+
ListServiceJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "maxResults"))
|
|
1356
|
+
ListServiceJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1357
|
+
ListServiceJobsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ListJobsFilterList, location_name: "filters"))
|
|
1358
|
+
ListServiceJobsRequest.struct_class = Types::ListServiceJobsRequest
|
|
1359
|
+
|
|
1360
|
+
ListServiceJobsResponse.add_member(:job_summary_list, Shapes::ShapeRef.new(shape: ServiceJobSummaryList, required: true, location_name: "jobSummaryList"))
|
|
1361
|
+
ListServiceJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1362
|
+
ListServiceJobsResponse.struct_class = Types::ListServiceJobsResponse
|
|
1363
|
+
|
|
949
1364
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "resourceArn"))
|
|
950
1365
|
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
|
951
1366
|
|
|
@@ -1008,6 +1423,7 @@ module Aws::Batch
|
|
|
1008
1423
|
NodePropertyOverride.add_member(:ecs_properties_override, Shapes::ShapeRef.new(shape: EcsPropertiesOverride, location_name: "ecsPropertiesOverride"))
|
|
1009
1424
|
NodePropertyOverride.add_member(:instance_types, Shapes::ShapeRef.new(shape: StringList, location_name: "instanceTypes"))
|
|
1010
1425
|
NodePropertyOverride.add_member(:eks_properties_override, Shapes::ShapeRef.new(shape: EksPropertiesOverride, location_name: "eksPropertiesOverride"))
|
|
1426
|
+
NodePropertyOverride.add_member(:consumable_resource_properties_override, Shapes::ShapeRef.new(shape: ConsumableResourceProperties, location_name: "consumableResourcePropertiesOverride"))
|
|
1011
1427
|
NodePropertyOverride.struct_class = Types::NodePropertyOverride
|
|
1012
1428
|
|
|
1013
1429
|
NodePropertyOverrides.member = Shapes::ShapeRef.new(shape: NodePropertyOverride)
|
|
@@ -1019,6 +1435,7 @@ module Aws::Batch
|
|
|
1019
1435
|
NodeRangeProperty.add_member(:instance_types, Shapes::ShapeRef.new(shape: StringList, location_name: "instanceTypes"))
|
|
1020
1436
|
NodeRangeProperty.add_member(:ecs_properties, Shapes::ShapeRef.new(shape: EcsProperties, location_name: "ecsProperties"))
|
|
1021
1437
|
NodeRangeProperty.add_member(:eks_properties, Shapes::ShapeRef.new(shape: EksProperties, location_name: "eksProperties"))
|
|
1438
|
+
NodeRangeProperty.add_member(:consumable_resource_properties, Shapes::ShapeRef.new(shape: ConsumableResourceProperties, location_name: "consumableResourceProperties"))
|
|
1022
1439
|
NodeRangeProperty.struct_class = Types::NodeRangeProperty
|
|
1023
1440
|
|
|
1024
1441
|
ParametersMap.key = Shapes::ShapeRef.new(shape: String)
|
|
@@ -1026,6 +1443,61 @@ module Aws::Batch
|
|
|
1026
1443
|
|
|
1027
1444
|
PlatformCapabilityList.member = Shapes::ShapeRef.new(shape: PlatformCapability)
|
|
1028
1445
|
|
|
1446
|
+
QueueSnapshotCapacityUsage.add_member(:capacity_unit, Shapes::ShapeRef.new(shape: String, location_name: "capacityUnit"))
|
|
1447
|
+
QueueSnapshotCapacityUsage.add_member(:quantity, Shapes::ShapeRef.new(shape: Double, location_name: "quantity"))
|
|
1448
|
+
QueueSnapshotCapacityUsage.struct_class = Types::QueueSnapshotCapacityUsage
|
|
1449
|
+
|
|
1450
|
+
QueueSnapshotCapacityUsageList.member = Shapes::ShapeRef.new(shape: QueueSnapshotCapacityUsage)
|
|
1451
|
+
|
|
1452
|
+
QueueSnapshotUtilizationDetail.add_member(:total_capacity_usage, Shapes::ShapeRef.new(shape: QueueSnapshotCapacityUsageList, location_name: "totalCapacityUsage"))
|
|
1453
|
+
QueueSnapshotUtilizationDetail.add_member(:fairshare_utilization, Shapes::ShapeRef.new(shape: FairshareUtilizationDetail, location_name: "fairshareUtilization"))
|
|
1454
|
+
QueueSnapshotUtilizationDetail.add_member(:quota_share_utilization, Shapes::ShapeRef.new(shape: QuotaShareUtilizationDetail, location_name: "quotaShareUtilization"))
|
|
1455
|
+
QueueSnapshotUtilizationDetail.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Long, location_name: "lastUpdatedAt"))
|
|
1456
|
+
QueueSnapshotUtilizationDetail.struct_class = Types::QueueSnapshotUtilizationDetail
|
|
1457
|
+
|
|
1458
|
+
QuotaShareCapacityLimit.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "maxCapacity"))
|
|
1459
|
+
QuotaShareCapacityLimit.add_member(:capacity_unit, Shapes::ShapeRef.new(shape: String, required: true, location_name: "capacityUnit"))
|
|
1460
|
+
QuotaShareCapacityLimit.struct_class = Types::QuotaShareCapacityLimit
|
|
1461
|
+
|
|
1462
|
+
QuotaShareCapacityLimits.member = Shapes::ShapeRef.new(shape: QuotaShareCapacityLimit)
|
|
1463
|
+
|
|
1464
|
+
QuotaShareCapacityUsage.add_member(:capacity_unit, Shapes::ShapeRef.new(shape: String, location_name: "capacityUnit"))
|
|
1465
|
+
QuotaShareCapacityUsage.add_member(:quantity, Shapes::ShapeRef.new(shape: Double, location_name: "quantity"))
|
|
1466
|
+
QuotaShareCapacityUsage.struct_class = Types::QuotaShareCapacityUsage
|
|
1467
|
+
|
|
1468
|
+
QuotaShareCapacityUsageList.member = Shapes::ShapeRef.new(shape: QuotaShareCapacityUsage)
|
|
1469
|
+
|
|
1470
|
+
QuotaShareCapacityUtilization.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareName"))
|
|
1471
|
+
QuotaShareCapacityUtilization.add_member(:capacity_usage, Shapes::ShapeRef.new(shape: QuotaShareCapacityUsageList, location_name: "capacityUsage"))
|
|
1472
|
+
QuotaShareCapacityUtilization.struct_class = Types::QuotaShareCapacityUtilization
|
|
1473
|
+
|
|
1474
|
+
QuotaShareCapacityUtilizationList.member = Shapes::ShapeRef.new(shape: QuotaShareCapacityUtilization)
|
|
1475
|
+
|
|
1476
|
+
QuotaShareDetail.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareName"))
|
|
1477
|
+
QuotaShareDetail.add_member(:quota_share_arn, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareArn"))
|
|
1478
|
+
QuotaShareDetail.add_member(:job_queue_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobQueueArn"))
|
|
1479
|
+
QuotaShareDetail.add_member(:capacity_limits, Shapes::ShapeRef.new(shape: QuotaShareCapacityLimits, location_name: "capacityLimits"))
|
|
1480
|
+
QuotaShareDetail.add_member(:resource_sharing_configuration, Shapes::ShapeRef.new(shape: QuotaShareResourceSharingConfiguration, location_name: "resourceSharingConfiguration"))
|
|
1481
|
+
QuotaShareDetail.add_member(:preemption_configuration, Shapes::ShapeRef.new(shape: QuotaSharePreemptionConfiguration, location_name: "preemptionConfiguration"))
|
|
1482
|
+
QuotaShareDetail.add_member(:state, Shapes::ShapeRef.new(shape: QuotaShareState, location_name: "state"))
|
|
1483
|
+
QuotaShareDetail.add_member(:status, Shapes::ShapeRef.new(shape: QuotaShareStatus, location_name: "status"))
|
|
1484
|
+
QuotaShareDetail.struct_class = Types::QuotaShareDetail
|
|
1485
|
+
|
|
1486
|
+
QuotaShareList.member = Shapes::ShapeRef.new(shape: QuotaShareDetail)
|
|
1487
|
+
|
|
1488
|
+
QuotaSharePolicy.add_member(:idle_resource_assignment_strategy, Shapes::ShapeRef.new(shape: QuotaShareIdleResourceAssignmentStrategy, required: true, location_name: "idleResourceAssignmentStrategy"))
|
|
1489
|
+
QuotaSharePolicy.struct_class = Types::QuotaSharePolicy
|
|
1490
|
+
|
|
1491
|
+
QuotaSharePreemptionConfiguration.add_member(:in_share_preemption, Shapes::ShapeRef.new(shape: QuotaShareInSharePreemptionState, required: true, location_name: "inSharePreemption"))
|
|
1492
|
+
QuotaSharePreemptionConfiguration.struct_class = Types::QuotaSharePreemptionConfiguration
|
|
1493
|
+
|
|
1494
|
+
QuotaShareResourceSharingConfiguration.add_member(:strategy, Shapes::ShapeRef.new(shape: QuotaShareResourceSharingStrategy, required: true, location_name: "strategy"))
|
|
1495
|
+
QuotaShareResourceSharingConfiguration.add_member(:borrow_limit, Shapes::ShapeRef.new(shape: Integer, location_name: "borrowLimit"))
|
|
1496
|
+
QuotaShareResourceSharingConfiguration.struct_class = Types::QuotaShareResourceSharingConfiguration
|
|
1497
|
+
|
|
1498
|
+
QuotaShareUtilizationDetail.add_member(:top_capacity_utilization, Shapes::ShapeRef.new(shape: QuotaShareCapacityUtilizationList, location_name: "topCapacityUtilization"))
|
|
1499
|
+
QuotaShareUtilizationDetail.struct_class = Types::QuotaShareUtilizationDetail
|
|
1500
|
+
|
|
1029
1501
|
RegisterJobDefinitionRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobDefinitionName"))
|
|
1030
1502
|
RegisterJobDefinitionRequest.add_member(:type, Shapes::ShapeRef.new(shape: JobDefinitionType, required: true, location_name: "type"))
|
|
1031
1503
|
RegisterJobDefinitionRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "parameters"))
|
|
@@ -1039,6 +1511,7 @@ module Aws::Batch
|
|
|
1039
1511
|
RegisterJobDefinitionRequest.add_member(:platform_capabilities, Shapes::ShapeRef.new(shape: PlatformCapabilityList, location_name: "platformCapabilities"))
|
|
1040
1512
|
RegisterJobDefinitionRequest.add_member(:eks_properties, Shapes::ShapeRef.new(shape: EksProperties, location_name: "eksProperties"))
|
|
1041
1513
|
RegisterJobDefinitionRequest.add_member(:ecs_properties, Shapes::ShapeRef.new(shape: EcsProperties, location_name: "ecsProperties"))
|
|
1514
|
+
RegisterJobDefinitionRequest.add_member(:consumable_resource_properties, Shapes::ShapeRef.new(shape: ConsumableResourceProperties, location_name: "consumableResourceProperties"))
|
|
1042
1515
|
RegisterJobDefinitionRequest.struct_class = Types::RegisterJobDefinitionRequest
|
|
1043
1516
|
|
|
1044
1517
|
RegisterJobDefinitionResponse.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobDefinitionName"))
|
|
@@ -1063,8 +1536,15 @@ module Aws::Batch
|
|
|
1063
1536
|
RuntimePlatform.add_member(:cpu_architecture, Shapes::ShapeRef.new(shape: String, location_name: "cpuArchitecture"))
|
|
1064
1537
|
RuntimePlatform.struct_class = Types::RuntimePlatform
|
|
1065
1538
|
|
|
1539
|
+
S3FilesVolumeConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "fileSystemArn"))
|
|
1540
|
+
S3FilesVolumeConfiguration.add_member(:root_directory, Shapes::ShapeRef.new(shape: String, location_name: "rootDirectory"))
|
|
1541
|
+
S3FilesVolumeConfiguration.add_member(:transit_encryption_port, Shapes::ShapeRef.new(shape: Integer, location_name: "transitEncryptionPort"))
|
|
1542
|
+
S3FilesVolumeConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "accessPointArn"))
|
|
1543
|
+
S3FilesVolumeConfiguration.struct_class = Types::S3FilesVolumeConfiguration
|
|
1544
|
+
|
|
1066
1545
|
SchedulingPolicyDetail.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
|
|
1067
1546
|
SchedulingPolicyDetail.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
|
1547
|
+
SchedulingPolicyDetail.add_member(:quota_share_policy, Shapes::ShapeRef.new(shape: QuotaSharePolicy, location_name: "quotaSharePolicy"))
|
|
1068
1548
|
SchedulingPolicyDetail.add_member(:fairshare_policy, Shapes::ShapeRef.new(shape: FairsharePolicy, location_name: "fairsharePolicy"))
|
|
1069
1549
|
SchedulingPolicyDetail.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
1070
1550
|
SchedulingPolicyDetail.struct_class = Types::SchedulingPolicyDetail
|
|
@@ -1085,6 +1565,93 @@ module Aws::Batch
|
|
|
1085
1565
|
ServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
1086
1566
|
ServerException.struct_class = Types::ServerException
|
|
1087
1567
|
|
|
1568
|
+
ServiceEnvironmentDetail.add_member(:service_environment_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironmentName"))
|
|
1569
|
+
ServiceEnvironmentDetail.add_member(:service_environment_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironmentArn"))
|
|
1570
|
+
ServiceEnvironmentDetail.add_member(:service_environment_type, Shapes::ShapeRef.new(shape: ServiceEnvironmentType, required: true, location_name: "serviceEnvironmentType"))
|
|
1571
|
+
ServiceEnvironmentDetail.add_member(:state, Shapes::ShapeRef.new(shape: ServiceEnvironmentState, location_name: "state"))
|
|
1572
|
+
ServiceEnvironmentDetail.add_member(:status, Shapes::ShapeRef.new(shape: ServiceEnvironmentStatus, location_name: "status"))
|
|
1573
|
+
ServiceEnvironmentDetail.add_member(:capacity_limits, Shapes::ShapeRef.new(shape: CapacityLimits, required: true, location_name: "capacityLimits"))
|
|
1574
|
+
ServiceEnvironmentDetail.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
1575
|
+
ServiceEnvironmentDetail.struct_class = Types::ServiceEnvironmentDetail
|
|
1576
|
+
|
|
1577
|
+
ServiceEnvironmentDetailList.member = Shapes::ShapeRef.new(shape: ServiceEnvironmentDetail)
|
|
1578
|
+
|
|
1579
|
+
ServiceEnvironmentOrder.add_member(:order, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "order"))
|
|
1580
|
+
ServiceEnvironmentOrder.add_member(:service_environment, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironment"))
|
|
1581
|
+
ServiceEnvironmentOrder.struct_class = Types::ServiceEnvironmentOrder
|
|
1582
|
+
|
|
1583
|
+
ServiceEnvironmentOrders.member = Shapes::ShapeRef.new(shape: ServiceEnvironmentOrder)
|
|
1584
|
+
|
|
1585
|
+
ServiceJobAttemptDetail.add_member(:service_resource_id, Shapes::ShapeRef.new(shape: ServiceResourceId, location_name: "serviceResourceId"))
|
|
1586
|
+
ServiceJobAttemptDetail.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, location_name: "startedAt"))
|
|
1587
|
+
ServiceJobAttemptDetail.add_member(:stopped_at, Shapes::ShapeRef.new(shape: Long, location_name: "stoppedAt"))
|
|
1588
|
+
ServiceJobAttemptDetail.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1589
|
+
ServiceJobAttemptDetail.struct_class = Types::ServiceJobAttemptDetail
|
|
1590
|
+
|
|
1591
|
+
ServiceJobAttemptDetails.member = Shapes::ShapeRef.new(shape: ServiceJobAttemptDetail)
|
|
1592
|
+
|
|
1593
|
+
ServiceJobCapacityUsageDetail.add_member(:capacity_unit, Shapes::ShapeRef.new(shape: String, location_name: "capacityUnit"))
|
|
1594
|
+
ServiceJobCapacityUsageDetail.add_member(:quantity, Shapes::ShapeRef.new(shape: Double, location_name: "quantity"))
|
|
1595
|
+
ServiceJobCapacityUsageDetail.struct_class = Types::ServiceJobCapacityUsageDetail
|
|
1596
|
+
|
|
1597
|
+
ServiceJobCapacityUsageDetailList.member = Shapes::ShapeRef.new(shape: ServiceJobCapacityUsageDetail)
|
|
1598
|
+
|
|
1599
|
+
ServiceJobCapacityUsageSummary.add_member(:capacity_unit, Shapes::ShapeRef.new(shape: String, location_name: "capacityUnit"))
|
|
1600
|
+
ServiceJobCapacityUsageSummary.add_member(:quantity, Shapes::ShapeRef.new(shape: Double, location_name: "quantity"))
|
|
1601
|
+
ServiceJobCapacityUsageSummary.struct_class = Types::ServiceJobCapacityUsageSummary
|
|
1602
|
+
|
|
1603
|
+
ServiceJobCapacityUsageSummaryList.member = Shapes::ShapeRef.new(shape: ServiceJobCapacityUsageSummary)
|
|
1604
|
+
|
|
1605
|
+
ServiceJobEvaluateOnExit.add_member(:action, Shapes::ShapeRef.new(shape: ServiceJobRetryAction, location_name: "action"))
|
|
1606
|
+
ServiceJobEvaluateOnExit.add_member(:on_status_reason, Shapes::ShapeRef.new(shape: String, location_name: "onStatusReason"))
|
|
1607
|
+
ServiceJobEvaluateOnExit.struct_class = Types::ServiceJobEvaluateOnExit
|
|
1608
|
+
|
|
1609
|
+
ServiceJobEvaluateOnExitList.member = Shapes::ShapeRef.new(shape: ServiceJobEvaluateOnExit)
|
|
1610
|
+
|
|
1611
|
+
ServiceJobPreemptedAttempt.add_member(:service_resource_id, Shapes::ShapeRef.new(shape: ServiceResourceId, location_name: "serviceResourceId"))
|
|
1612
|
+
ServiceJobPreemptedAttempt.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, location_name: "startedAt"))
|
|
1613
|
+
ServiceJobPreemptedAttempt.add_member(:stopped_at, Shapes::ShapeRef.new(shape: Long, location_name: "stoppedAt"))
|
|
1614
|
+
ServiceJobPreemptedAttempt.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1615
|
+
ServiceJobPreemptedAttempt.struct_class = Types::ServiceJobPreemptedAttempt
|
|
1616
|
+
|
|
1617
|
+
ServiceJobPreemptionConfiguration.add_member(:preemption_retries_before_termination, Shapes::ShapeRef.new(shape: Integer, location_name: "preemptionRetriesBeforeTermination"))
|
|
1618
|
+
ServiceJobPreemptionConfiguration.struct_class = Types::ServiceJobPreemptionConfiguration
|
|
1619
|
+
|
|
1620
|
+
ServiceJobPreemptionSummary.add_member(:preempted_attempt_count, Shapes::ShapeRef.new(shape: Integer, location_name: "preemptedAttemptCount"))
|
|
1621
|
+
ServiceJobPreemptionSummary.add_member(:recent_preempted_attempts, Shapes::ShapeRef.new(shape: ServiceJobRecentPreemptedAttemptList, location_name: "recentPreemptedAttempts"))
|
|
1622
|
+
ServiceJobPreemptionSummary.struct_class = Types::ServiceJobPreemptionSummary
|
|
1623
|
+
|
|
1624
|
+
ServiceJobRecentPreemptedAttemptList.member = Shapes::ShapeRef.new(shape: ServiceJobPreemptedAttempt)
|
|
1625
|
+
|
|
1626
|
+
ServiceJobRetryStrategy.add_member(:attempts, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "attempts"))
|
|
1627
|
+
ServiceJobRetryStrategy.add_member(:evaluate_on_exit, Shapes::ShapeRef.new(shape: ServiceJobEvaluateOnExitList, location_name: "evaluateOnExit"))
|
|
1628
|
+
ServiceJobRetryStrategy.struct_class = Types::ServiceJobRetryStrategy
|
|
1629
|
+
|
|
1630
|
+
ServiceJobSummary.add_member(:latest_attempt, Shapes::ShapeRef.new(shape: LatestServiceJobAttempt, location_name: "latestAttempt"))
|
|
1631
|
+
ServiceJobSummary.add_member(:capacity_usage, Shapes::ShapeRef.new(shape: ServiceJobCapacityUsageSummaryList, location_name: "capacityUsage"))
|
|
1632
|
+
ServiceJobSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Long, location_name: "createdAt"))
|
|
1633
|
+
ServiceJobSummary.add_member(:job_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobArn"))
|
|
1634
|
+
ServiceJobSummary.add_member(:job_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobId"))
|
|
1635
|
+
ServiceJobSummary.add_member(:job_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobName"))
|
|
1636
|
+
ServiceJobSummary.add_member(:scheduled_at, Shapes::ShapeRef.new(shape: Long, location_name: "scheduledAt"))
|
|
1637
|
+
ServiceJobSummary.add_member(:service_job_type, Shapes::ShapeRef.new(shape: ServiceJobType, required: true, location_name: "serviceJobType"))
|
|
1638
|
+
ServiceJobSummary.add_member(:share_identifier, Shapes::ShapeRef.new(shape: String, location_name: "shareIdentifier"))
|
|
1639
|
+
ServiceJobSummary.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareName"))
|
|
1640
|
+
ServiceJobSummary.add_member(:status, Shapes::ShapeRef.new(shape: ServiceJobStatus, location_name: "status"))
|
|
1641
|
+
ServiceJobSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1642
|
+
ServiceJobSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, location_name: "startedAt"))
|
|
1643
|
+
ServiceJobSummary.add_member(:stopped_at, Shapes::ShapeRef.new(shape: Long, location_name: "stoppedAt"))
|
|
1644
|
+
ServiceJobSummary.struct_class = Types::ServiceJobSummary
|
|
1645
|
+
|
|
1646
|
+
ServiceJobSummaryList.member = Shapes::ShapeRef.new(shape: ServiceJobSummary)
|
|
1647
|
+
|
|
1648
|
+
ServiceJobTimeout.add_member(:attempt_duration_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "attemptDurationSeconds"))
|
|
1649
|
+
ServiceJobTimeout.struct_class = Types::ServiceJobTimeout
|
|
1650
|
+
|
|
1651
|
+
ServiceResourceId.add_member(:name, Shapes::ShapeRef.new(shape: ServiceResourceIdName, required: true, location_name: "name"))
|
|
1652
|
+
ServiceResourceId.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "value"))
|
|
1653
|
+
ServiceResourceId.struct_class = Types::ServiceResourceId
|
|
1654
|
+
|
|
1088
1655
|
ShareAttributes.add_member(:share_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "shareIdentifier"))
|
|
1089
1656
|
ShareAttributes.add_member(:weight_factor, Shapes::ShapeRef.new(shape: Float, location_name: "weightFactor"))
|
|
1090
1657
|
ShareAttributes.struct_class = Types::ShareAttributes
|
|
@@ -1109,6 +1676,7 @@ module Aws::Batch
|
|
|
1109
1676
|
SubmitJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
1110
1677
|
SubmitJobRequest.add_member(:eks_properties_override, Shapes::ShapeRef.new(shape: EksPropertiesOverride, location_name: "eksPropertiesOverride"))
|
|
1111
1678
|
SubmitJobRequest.add_member(:ecs_properties_override, Shapes::ShapeRef.new(shape: EcsPropertiesOverride, location_name: "ecsPropertiesOverride"))
|
|
1679
|
+
SubmitJobRequest.add_member(:consumable_resource_properties_override, Shapes::ShapeRef.new(shape: ConsumableResourceProperties, location_name: "consumableResourcePropertiesOverride"))
|
|
1112
1680
|
SubmitJobRequest.struct_class = Types::SubmitJobRequest
|
|
1113
1681
|
|
|
1114
1682
|
SubmitJobResponse.add_member(:job_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobArn"))
|
|
@@ -1116,6 +1684,25 @@ module Aws::Batch
|
|
|
1116
1684
|
SubmitJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobId"))
|
|
1117
1685
|
SubmitJobResponse.struct_class = Types::SubmitJobResponse
|
|
1118
1686
|
|
|
1687
|
+
SubmitServiceJobRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobName"))
|
|
1688
|
+
SubmitServiceJobRequest.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueue"))
|
|
1689
|
+
SubmitServiceJobRequest.add_member(:retry_strategy, Shapes::ShapeRef.new(shape: ServiceJobRetryStrategy, location_name: "retryStrategy"))
|
|
1690
|
+
SubmitServiceJobRequest.add_member(:scheduling_priority, Shapes::ShapeRef.new(shape: Integer, location_name: "schedulingPriority"))
|
|
1691
|
+
SubmitServiceJobRequest.add_member(:service_request_payload, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceRequestPayload"))
|
|
1692
|
+
SubmitServiceJobRequest.add_member(:service_job_type, Shapes::ShapeRef.new(shape: ServiceJobType, required: true, location_name: "serviceJobType"))
|
|
1693
|
+
SubmitServiceJobRequest.add_member(:share_identifier, Shapes::ShapeRef.new(shape: String, location_name: "shareIdentifier"))
|
|
1694
|
+
SubmitServiceJobRequest.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareName"))
|
|
1695
|
+
SubmitServiceJobRequest.add_member(:preemption_configuration, Shapes::ShapeRef.new(shape: ServiceJobPreemptionConfiguration, location_name: "preemptionConfiguration"))
|
|
1696
|
+
SubmitServiceJobRequest.add_member(:timeout_config, Shapes::ShapeRef.new(shape: ServiceJobTimeout, location_name: "timeoutConfig"))
|
|
1697
|
+
SubmitServiceJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagrisTagsMap, location_name: "tags"))
|
|
1698
|
+
SubmitServiceJobRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1699
|
+
SubmitServiceJobRequest.struct_class = Types::SubmitServiceJobRequest
|
|
1700
|
+
|
|
1701
|
+
SubmitServiceJobResponse.add_member(:job_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobArn"))
|
|
1702
|
+
SubmitServiceJobResponse.add_member(:job_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobName"))
|
|
1703
|
+
SubmitServiceJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobId"))
|
|
1704
|
+
SubmitServiceJobResponse.struct_class = Types::SubmitServiceJobResponse
|
|
1705
|
+
|
|
1119
1706
|
TagKeysList.member = Shapes::ShapeRef.new(shape: TagKey)
|
|
1120
1707
|
|
|
1121
1708
|
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "resourceArn"))
|
|
@@ -1140,6 +1727,7 @@ module Aws::Batch
|
|
|
1140
1727
|
TaskContainerDetails.add_member(:depends_on, Shapes::ShapeRef.new(shape: TaskContainerDependencyList, location_name: "dependsOn"))
|
|
1141
1728
|
TaskContainerDetails.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environment"))
|
|
1142
1729
|
TaskContainerDetails.add_member(:essential, Shapes::ShapeRef.new(shape: Boolean, location_name: "essential"))
|
|
1730
|
+
TaskContainerDetails.add_member(:firelens_configuration, Shapes::ShapeRef.new(shape: FirelensConfiguration, location_name: "firelensConfiguration"))
|
|
1143
1731
|
TaskContainerDetails.add_member(:image, Shapes::ShapeRef.new(shape: String, location_name: "image"))
|
|
1144
1732
|
TaskContainerDetails.add_member(:linux_parameters, Shapes::ShapeRef.new(shape: LinuxParameters, location_name: "linuxParameters"))
|
|
1145
1733
|
TaskContainerDetails.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "logConfiguration"))
|
|
@@ -1152,6 +1740,8 @@ module Aws::Batch
|
|
|
1152
1740
|
TaskContainerDetails.add_member(:secrets, Shapes::ShapeRef.new(shape: SecretList, location_name: "secrets"))
|
|
1153
1741
|
TaskContainerDetails.add_member(:ulimits, Shapes::ShapeRef.new(shape: Ulimits, location_name: "ulimits"))
|
|
1154
1742
|
TaskContainerDetails.add_member(:user, Shapes::ShapeRef.new(shape: String, location_name: "user"))
|
|
1743
|
+
TaskContainerDetails.add_member(:start_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "startTimeout"))
|
|
1744
|
+
TaskContainerDetails.add_member(:stop_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "stopTimeout"))
|
|
1155
1745
|
TaskContainerDetails.add_member(:exit_code, Shapes::ShapeRef.new(shape: Integer, location_name: "exitCode"))
|
|
1156
1746
|
TaskContainerDetails.add_member(:reason, Shapes::ShapeRef.new(shape: String, location_name: "reason"))
|
|
1157
1747
|
TaskContainerDetails.add_member(:log_stream_name, Shapes::ShapeRef.new(shape: String, location_name: "logStreamName"))
|
|
@@ -1168,6 +1758,7 @@ module Aws::Batch
|
|
|
1168
1758
|
TaskContainerProperties.add_member(:depends_on, Shapes::ShapeRef.new(shape: TaskContainerDependencyList, location_name: "dependsOn"))
|
|
1169
1759
|
TaskContainerProperties.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "environment"))
|
|
1170
1760
|
TaskContainerProperties.add_member(:essential, Shapes::ShapeRef.new(shape: Boolean, location_name: "essential"))
|
|
1761
|
+
TaskContainerProperties.add_member(:firelens_configuration, Shapes::ShapeRef.new(shape: FirelensConfiguration, location_name: "firelensConfiguration"))
|
|
1171
1762
|
TaskContainerProperties.add_member(:image, Shapes::ShapeRef.new(shape: String, required: true, location_name: "image"))
|
|
1172
1763
|
TaskContainerProperties.add_member(:linux_parameters, Shapes::ShapeRef.new(shape: LinuxParameters, location_name: "linuxParameters"))
|
|
1173
1764
|
TaskContainerProperties.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LogConfiguration, location_name: "logConfiguration"))
|
|
@@ -1180,6 +1771,8 @@ module Aws::Batch
|
|
|
1180
1771
|
TaskContainerProperties.add_member(:secrets, Shapes::ShapeRef.new(shape: SecretList, location_name: "secrets"))
|
|
1181
1772
|
TaskContainerProperties.add_member(:ulimits, Shapes::ShapeRef.new(shape: Ulimits, location_name: "ulimits"))
|
|
1182
1773
|
TaskContainerProperties.add_member(:user, Shapes::ShapeRef.new(shape: String, location_name: "user"))
|
|
1774
|
+
TaskContainerProperties.add_member(:start_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "startTimeout"))
|
|
1775
|
+
TaskContainerProperties.add_member(:stop_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "stopTimeout"))
|
|
1183
1776
|
TaskContainerProperties.struct_class = Types::TaskContainerProperties
|
|
1184
1777
|
|
|
1185
1778
|
TaskPropertiesOverride.add_member(:containers, Shapes::ShapeRef.new(shape: ListTaskContainerOverrides, location_name: "containers"))
|
|
@@ -1191,6 +1784,12 @@ module Aws::Batch
|
|
|
1191
1784
|
|
|
1192
1785
|
TerminateJobResponse.struct_class = Types::TerminateJobResponse
|
|
1193
1786
|
|
|
1787
|
+
TerminateServiceJobRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobId"))
|
|
1788
|
+
TerminateServiceJobRequest.add_member(:reason, Shapes::ShapeRef.new(shape: String, required: true, location_name: "reason"))
|
|
1789
|
+
TerminateServiceJobRequest.struct_class = Types::TerminateServiceJobRequest
|
|
1790
|
+
|
|
1791
|
+
TerminateServiceJobResponse.struct_class = Types::TerminateServiceJobResponse
|
|
1792
|
+
|
|
1194
1793
|
Tmpfs.add_member(:container_path, Shapes::ShapeRef.new(shape: String, required: true, location_name: "containerPath"))
|
|
1195
1794
|
Tmpfs.add_member(:size, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "size"))
|
|
1196
1795
|
Tmpfs.add_member(:mount_options, Shapes::ShapeRef.new(shape: StringList, location_name: "mountOptions"))
|
|
@@ -1224,11 +1823,23 @@ module Aws::Batch
|
|
|
1224
1823
|
UpdateComputeEnvironmentResponse.add_member(:compute_environment_arn, Shapes::ShapeRef.new(shape: String, location_name: "computeEnvironmentArn"))
|
|
1225
1824
|
UpdateComputeEnvironmentResponse.struct_class = Types::UpdateComputeEnvironmentResponse
|
|
1226
1825
|
|
|
1826
|
+
UpdateConsumableResourceRequest.add_member(:consumable_resource, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResource"))
|
|
1827
|
+
UpdateConsumableResourceRequest.add_member(:operation, Shapes::ShapeRef.new(shape: String, location_name: "operation"))
|
|
1828
|
+
UpdateConsumableResourceRequest.add_member(:quantity, Shapes::ShapeRef.new(shape: Long, location_name: "quantity"))
|
|
1829
|
+
UpdateConsumableResourceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1830
|
+
UpdateConsumableResourceRequest.struct_class = Types::UpdateConsumableResourceRequest
|
|
1831
|
+
|
|
1832
|
+
UpdateConsumableResourceResponse.add_member(:consumable_resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceName"))
|
|
1833
|
+
UpdateConsumableResourceResponse.add_member(:consumable_resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "consumableResourceArn"))
|
|
1834
|
+
UpdateConsumableResourceResponse.add_member(:total_quantity, Shapes::ShapeRef.new(shape: Long, location_name: "totalQuantity"))
|
|
1835
|
+
UpdateConsumableResourceResponse.struct_class = Types::UpdateConsumableResourceResponse
|
|
1836
|
+
|
|
1227
1837
|
UpdateJobQueueRequest.add_member(:job_queue, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobQueue"))
|
|
1228
1838
|
UpdateJobQueueRequest.add_member(:state, Shapes::ShapeRef.new(shape: JQState, location_name: "state"))
|
|
1229
1839
|
UpdateJobQueueRequest.add_member(:scheduling_policy_arn, Shapes::ShapeRef.new(shape: String, location_name: "schedulingPolicyArn"))
|
|
1230
1840
|
UpdateJobQueueRequest.add_member(:priority, Shapes::ShapeRef.new(shape: Integer, location_name: "priority"))
|
|
1231
1841
|
UpdateJobQueueRequest.add_member(:compute_environment_order, Shapes::ShapeRef.new(shape: ComputeEnvironmentOrders, location_name: "computeEnvironmentOrder"))
|
|
1842
|
+
UpdateJobQueueRequest.add_member(:service_environment_order, Shapes::ShapeRef.new(shape: ServiceEnvironmentOrders, location_name: "serviceEnvironmentOrder"))
|
|
1232
1843
|
UpdateJobQueueRequest.add_member(:job_state_time_limit_actions, Shapes::ShapeRef.new(shape: JobStateTimeLimitActions, location_name: "jobStateTimeLimitActions"))
|
|
1233
1844
|
UpdateJobQueueRequest.struct_class = Types::UpdateJobQueueRequest
|
|
1234
1845
|
|
|
@@ -1240,15 +1851,46 @@ module Aws::Batch
|
|
|
1240
1851
|
UpdatePolicy.add_member(:job_execution_timeout_minutes, Shapes::ShapeRef.new(shape: JobExecutionTimeoutMinutes, location_name: "jobExecutionTimeoutMinutes"))
|
|
1241
1852
|
UpdatePolicy.struct_class = Types::UpdatePolicy
|
|
1242
1853
|
|
|
1854
|
+
UpdateQuotaShareRequest.add_member(:quota_share_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "quotaShareArn"))
|
|
1855
|
+
UpdateQuotaShareRequest.add_member(:capacity_limits, Shapes::ShapeRef.new(shape: QuotaShareCapacityLimits, location_name: "capacityLimits"))
|
|
1856
|
+
UpdateQuotaShareRequest.add_member(:resource_sharing_configuration, Shapes::ShapeRef.new(shape: QuotaShareResourceSharingConfiguration, location_name: "resourceSharingConfiguration"))
|
|
1857
|
+
UpdateQuotaShareRequest.add_member(:preemption_configuration, Shapes::ShapeRef.new(shape: QuotaSharePreemptionConfiguration, location_name: "preemptionConfiguration"))
|
|
1858
|
+
UpdateQuotaShareRequest.add_member(:state, Shapes::ShapeRef.new(shape: QuotaShareState, location_name: "state"))
|
|
1859
|
+
UpdateQuotaShareRequest.struct_class = Types::UpdateQuotaShareRequest
|
|
1860
|
+
|
|
1861
|
+
UpdateQuotaShareResponse.add_member(:quota_share_name, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareName"))
|
|
1862
|
+
UpdateQuotaShareResponse.add_member(:quota_share_arn, Shapes::ShapeRef.new(shape: String, location_name: "quotaShareArn"))
|
|
1863
|
+
UpdateQuotaShareResponse.struct_class = Types::UpdateQuotaShareResponse
|
|
1864
|
+
|
|
1243
1865
|
UpdateSchedulingPolicyRequest.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
|
1866
|
+
UpdateSchedulingPolicyRequest.add_member(:quota_share_policy, Shapes::ShapeRef.new(shape: QuotaSharePolicy, location_name: "quotaSharePolicy"))
|
|
1244
1867
|
UpdateSchedulingPolicyRequest.add_member(:fairshare_policy, Shapes::ShapeRef.new(shape: FairsharePolicy, location_name: "fairsharePolicy"))
|
|
1245
1868
|
UpdateSchedulingPolicyRequest.struct_class = Types::UpdateSchedulingPolicyRequest
|
|
1246
1869
|
|
|
1247
1870
|
UpdateSchedulingPolicyResponse.struct_class = Types::UpdateSchedulingPolicyResponse
|
|
1248
1871
|
|
|
1872
|
+
UpdateServiceEnvironmentRequest.add_member(:service_environment, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironment"))
|
|
1873
|
+
UpdateServiceEnvironmentRequest.add_member(:state, Shapes::ShapeRef.new(shape: ServiceEnvironmentState, location_name: "state"))
|
|
1874
|
+
UpdateServiceEnvironmentRequest.add_member(:capacity_limits, Shapes::ShapeRef.new(shape: CapacityLimits, location_name: "capacityLimits"))
|
|
1875
|
+
UpdateServiceEnvironmentRequest.struct_class = Types::UpdateServiceEnvironmentRequest
|
|
1876
|
+
|
|
1877
|
+
UpdateServiceEnvironmentResponse.add_member(:service_environment_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironmentName"))
|
|
1878
|
+
UpdateServiceEnvironmentResponse.add_member(:service_environment_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceEnvironmentArn"))
|
|
1879
|
+
UpdateServiceEnvironmentResponse.struct_class = Types::UpdateServiceEnvironmentResponse
|
|
1880
|
+
|
|
1881
|
+
UpdateServiceJobRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "jobId"))
|
|
1882
|
+
UpdateServiceJobRequest.add_member(:scheduling_priority, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "schedulingPriority"))
|
|
1883
|
+
UpdateServiceJobRequest.struct_class = Types::UpdateServiceJobRequest
|
|
1884
|
+
|
|
1885
|
+
UpdateServiceJobResponse.add_member(:job_arn, Shapes::ShapeRef.new(shape: String, location_name: "jobArn"))
|
|
1886
|
+
UpdateServiceJobResponse.add_member(:job_name, Shapes::ShapeRef.new(shape: String, location_name: "jobName"))
|
|
1887
|
+
UpdateServiceJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: String, location_name: "jobId"))
|
|
1888
|
+
UpdateServiceJobResponse.struct_class = Types::UpdateServiceJobResponse
|
|
1889
|
+
|
|
1249
1890
|
Volume.add_member(:host, Shapes::ShapeRef.new(shape: Host, location_name: "host"))
|
|
1250
1891
|
Volume.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
1251
1892
|
Volume.add_member(:efs_volume_configuration, Shapes::ShapeRef.new(shape: EFSVolumeConfiguration, location_name: "efsVolumeConfiguration"))
|
|
1893
|
+
Volume.add_member(:s3files_volume_configuration, Shapes::ShapeRef.new(shape: S3FilesVolumeConfiguration, location_name: "s3filesVolumeConfiguration"))
|
|
1252
1894
|
Volume.struct_class = Types::Volume
|
|
1253
1895
|
|
|
1254
1896
|
Volumes.member = Shapes::ShapeRef.new(shape: Volume)
|
|
@@ -1293,6 +1935,16 @@ module Aws::Batch
|
|
|
1293
1935
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1294
1936
|
end)
|
|
1295
1937
|
|
|
1938
|
+
api.add_operation(:create_consumable_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
1939
|
+
o.name = "CreateConsumableResource"
|
|
1940
|
+
o.http_method = "POST"
|
|
1941
|
+
o.http_request_uri = "/v1/createconsumableresource"
|
|
1942
|
+
o.input = Shapes::ShapeRef.new(shape: CreateConsumableResourceRequest)
|
|
1943
|
+
o.output = Shapes::ShapeRef.new(shape: CreateConsumableResourceResponse)
|
|
1944
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
1945
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1946
|
+
end)
|
|
1947
|
+
|
|
1296
1948
|
api.add_operation(:create_job_queue, Seahorse::Model::Operation.new.tap do |o|
|
|
1297
1949
|
o.name = "CreateJobQueue"
|
|
1298
1950
|
o.http_method = "POST"
|
|
@@ -1303,6 +1955,16 @@ module Aws::Batch
|
|
|
1303
1955
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1304
1956
|
end)
|
|
1305
1957
|
|
|
1958
|
+
api.add_operation(:create_quota_share, Seahorse::Model::Operation.new.tap do |o|
|
|
1959
|
+
o.name = "CreateQuotaShare"
|
|
1960
|
+
o.http_method = "POST"
|
|
1961
|
+
o.http_request_uri = "/v1/createquotashare"
|
|
1962
|
+
o.input = Shapes::ShapeRef.new(shape: CreateQuotaShareRequest)
|
|
1963
|
+
o.output = Shapes::ShapeRef.new(shape: CreateQuotaShareResponse)
|
|
1964
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
1965
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1966
|
+
end)
|
|
1967
|
+
|
|
1306
1968
|
api.add_operation(:create_scheduling_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
1307
1969
|
o.name = "CreateSchedulingPolicy"
|
|
1308
1970
|
o.http_method = "POST"
|
|
@@ -1313,6 +1975,16 @@ module Aws::Batch
|
|
|
1313
1975
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1314
1976
|
end)
|
|
1315
1977
|
|
|
1978
|
+
api.add_operation(:create_service_environment, Seahorse::Model::Operation.new.tap do |o|
|
|
1979
|
+
o.name = "CreateServiceEnvironment"
|
|
1980
|
+
o.http_method = "POST"
|
|
1981
|
+
o.http_request_uri = "/v1/createserviceenvironment"
|
|
1982
|
+
o.input = Shapes::ShapeRef.new(shape: CreateServiceEnvironmentRequest)
|
|
1983
|
+
o.output = Shapes::ShapeRef.new(shape: CreateServiceEnvironmentResponse)
|
|
1984
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
1985
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1986
|
+
end)
|
|
1987
|
+
|
|
1316
1988
|
api.add_operation(:delete_compute_environment, Seahorse::Model::Operation.new.tap do |o|
|
|
1317
1989
|
o.name = "DeleteComputeEnvironment"
|
|
1318
1990
|
o.http_method = "POST"
|
|
@@ -1323,6 +1995,16 @@ module Aws::Batch
|
|
|
1323
1995
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1324
1996
|
end)
|
|
1325
1997
|
|
|
1998
|
+
api.add_operation(:delete_consumable_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
1999
|
+
o.name = "DeleteConsumableResource"
|
|
2000
|
+
o.http_method = "POST"
|
|
2001
|
+
o.http_request_uri = "/v1/deleteconsumableresource"
|
|
2002
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteConsumableResourceRequest)
|
|
2003
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteConsumableResourceResponse)
|
|
2004
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2005
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2006
|
+
end)
|
|
2007
|
+
|
|
1326
2008
|
api.add_operation(:delete_job_queue, Seahorse::Model::Operation.new.tap do |o|
|
|
1327
2009
|
o.name = "DeleteJobQueue"
|
|
1328
2010
|
o.http_method = "POST"
|
|
@@ -1333,6 +2015,16 @@ module Aws::Batch
|
|
|
1333
2015
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1334
2016
|
end)
|
|
1335
2017
|
|
|
2018
|
+
api.add_operation(:delete_quota_share, Seahorse::Model::Operation.new.tap do |o|
|
|
2019
|
+
o.name = "DeleteQuotaShare"
|
|
2020
|
+
o.http_method = "POST"
|
|
2021
|
+
o.http_request_uri = "/v1/deletequotashare"
|
|
2022
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteQuotaShareRequest)
|
|
2023
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteQuotaShareResponse)
|
|
2024
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2025
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2026
|
+
end)
|
|
2027
|
+
|
|
1336
2028
|
api.add_operation(:delete_scheduling_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
1337
2029
|
o.name = "DeleteSchedulingPolicy"
|
|
1338
2030
|
o.http_method = "POST"
|
|
@@ -1343,6 +2035,16 @@ module Aws::Batch
|
|
|
1343
2035
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1344
2036
|
end)
|
|
1345
2037
|
|
|
2038
|
+
api.add_operation(:delete_service_environment, Seahorse::Model::Operation.new.tap do |o|
|
|
2039
|
+
o.name = "DeleteServiceEnvironment"
|
|
2040
|
+
o.http_method = "POST"
|
|
2041
|
+
o.http_request_uri = "/v1/deleteserviceenvironment"
|
|
2042
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteServiceEnvironmentRequest)
|
|
2043
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteServiceEnvironmentResponse)
|
|
2044
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2045
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2046
|
+
end)
|
|
2047
|
+
|
|
1346
2048
|
api.add_operation(:deregister_job_definition, Seahorse::Model::Operation.new.tap do |o|
|
|
1347
2049
|
o.name = "DeregisterJobDefinition"
|
|
1348
2050
|
o.http_method = "POST"
|
|
@@ -1369,6 +2071,16 @@ module Aws::Batch
|
|
|
1369
2071
|
)
|
|
1370
2072
|
end)
|
|
1371
2073
|
|
|
2074
|
+
api.add_operation(:describe_consumable_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
2075
|
+
o.name = "DescribeConsumableResource"
|
|
2076
|
+
o.http_method = "POST"
|
|
2077
|
+
o.http_request_uri = "/v1/describeconsumableresource"
|
|
2078
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeConsumableResourceRequest)
|
|
2079
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeConsumableResourceResponse)
|
|
2080
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2081
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2082
|
+
end)
|
|
2083
|
+
|
|
1372
2084
|
api.add_operation(:describe_job_definitions, Seahorse::Model::Operation.new.tap do |o|
|
|
1373
2085
|
o.name = "DescribeJobDefinitions"
|
|
1374
2086
|
o.http_method = "POST"
|
|
@@ -1411,6 +2123,16 @@ module Aws::Batch
|
|
|
1411
2123
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1412
2124
|
end)
|
|
1413
2125
|
|
|
2126
|
+
api.add_operation(:describe_quota_share, Seahorse::Model::Operation.new.tap do |o|
|
|
2127
|
+
o.name = "DescribeQuotaShare"
|
|
2128
|
+
o.http_method = "POST"
|
|
2129
|
+
o.http_request_uri = "/v1/describequotashare"
|
|
2130
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeQuotaShareRequest)
|
|
2131
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeQuotaShareResponse)
|
|
2132
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2133
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2134
|
+
end)
|
|
2135
|
+
|
|
1414
2136
|
api.add_operation(:describe_scheduling_policies, Seahorse::Model::Operation.new.tap do |o|
|
|
1415
2137
|
o.name = "DescribeSchedulingPolicies"
|
|
1416
2138
|
o.http_method = "POST"
|
|
@@ -1421,6 +2143,32 @@ module Aws::Batch
|
|
|
1421
2143
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1422
2144
|
end)
|
|
1423
2145
|
|
|
2146
|
+
api.add_operation(:describe_service_environments, Seahorse::Model::Operation.new.tap do |o|
|
|
2147
|
+
o.name = "DescribeServiceEnvironments"
|
|
2148
|
+
o.http_method = "POST"
|
|
2149
|
+
o.http_request_uri = "/v1/describeserviceenvironments"
|
|
2150
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeServiceEnvironmentsRequest)
|
|
2151
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeServiceEnvironmentsResponse)
|
|
2152
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2153
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2154
|
+
o[:pager] = Aws::Pager.new(
|
|
2155
|
+
limit_key: "max_results",
|
|
2156
|
+
tokens: {
|
|
2157
|
+
"next_token" => "next_token"
|
|
2158
|
+
}
|
|
2159
|
+
)
|
|
2160
|
+
end)
|
|
2161
|
+
|
|
2162
|
+
api.add_operation(:describe_service_job, Seahorse::Model::Operation.new.tap do |o|
|
|
2163
|
+
o.name = "DescribeServiceJob"
|
|
2164
|
+
o.http_method = "POST"
|
|
2165
|
+
o.http_request_uri = "/v1/describeservicejob"
|
|
2166
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeServiceJobRequest)
|
|
2167
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeServiceJobResponse)
|
|
2168
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2169
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2170
|
+
end)
|
|
2171
|
+
|
|
1424
2172
|
api.add_operation(:get_job_queue_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
|
1425
2173
|
o.name = "GetJobQueueSnapshot"
|
|
1426
2174
|
o.http_method = "POST"
|
|
@@ -1431,6 +2179,22 @@ module Aws::Batch
|
|
|
1431
2179
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1432
2180
|
end)
|
|
1433
2181
|
|
|
2182
|
+
api.add_operation(:list_consumable_resources, Seahorse::Model::Operation.new.tap do |o|
|
|
2183
|
+
o.name = "ListConsumableResources"
|
|
2184
|
+
o.http_method = "POST"
|
|
2185
|
+
o.http_request_uri = "/v1/listconsumableresources"
|
|
2186
|
+
o.input = Shapes::ShapeRef.new(shape: ListConsumableResourcesRequest)
|
|
2187
|
+
o.output = Shapes::ShapeRef.new(shape: ListConsumableResourcesResponse)
|
|
2188
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2189
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2190
|
+
o[:pager] = Aws::Pager.new(
|
|
2191
|
+
limit_key: "max_results",
|
|
2192
|
+
tokens: {
|
|
2193
|
+
"next_token" => "next_token"
|
|
2194
|
+
}
|
|
2195
|
+
)
|
|
2196
|
+
end)
|
|
2197
|
+
|
|
1434
2198
|
api.add_operation(:list_jobs, Seahorse::Model::Operation.new.tap do |o|
|
|
1435
2199
|
o.name = "ListJobs"
|
|
1436
2200
|
o.http_method = "POST"
|
|
@@ -1447,6 +2211,38 @@ module Aws::Batch
|
|
|
1447
2211
|
)
|
|
1448
2212
|
end)
|
|
1449
2213
|
|
|
2214
|
+
api.add_operation(:list_jobs_by_consumable_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
2215
|
+
o.name = "ListJobsByConsumableResource"
|
|
2216
|
+
o.http_method = "POST"
|
|
2217
|
+
o.http_request_uri = "/v1/listjobsbyconsumableresource"
|
|
2218
|
+
o.input = Shapes::ShapeRef.new(shape: ListJobsByConsumableResourceRequest)
|
|
2219
|
+
o.output = Shapes::ShapeRef.new(shape: ListJobsByConsumableResourceResponse)
|
|
2220
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2221
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2222
|
+
o[:pager] = Aws::Pager.new(
|
|
2223
|
+
limit_key: "max_results",
|
|
2224
|
+
tokens: {
|
|
2225
|
+
"next_token" => "next_token"
|
|
2226
|
+
}
|
|
2227
|
+
)
|
|
2228
|
+
end)
|
|
2229
|
+
|
|
2230
|
+
api.add_operation(:list_quota_shares, Seahorse::Model::Operation.new.tap do |o|
|
|
2231
|
+
o.name = "ListQuotaShares"
|
|
2232
|
+
o.http_method = "POST"
|
|
2233
|
+
o.http_request_uri = "/v1/listquotashares"
|
|
2234
|
+
o.input = Shapes::ShapeRef.new(shape: ListQuotaSharesRequest)
|
|
2235
|
+
o.output = Shapes::ShapeRef.new(shape: ListQuotaSharesResponse)
|
|
2236
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2237
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2238
|
+
o[:pager] = Aws::Pager.new(
|
|
2239
|
+
limit_key: "max_results",
|
|
2240
|
+
tokens: {
|
|
2241
|
+
"next_token" => "next_token"
|
|
2242
|
+
}
|
|
2243
|
+
)
|
|
2244
|
+
end)
|
|
2245
|
+
|
|
1450
2246
|
api.add_operation(:list_scheduling_policies, Seahorse::Model::Operation.new.tap do |o|
|
|
1451
2247
|
o.name = "ListSchedulingPolicies"
|
|
1452
2248
|
o.http_method = "POST"
|
|
@@ -1463,6 +2259,22 @@ module Aws::Batch
|
|
|
1463
2259
|
)
|
|
1464
2260
|
end)
|
|
1465
2261
|
|
|
2262
|
+
api.add_operation(:list_service_jobs, Seahorse::Model::Operation.new.tap do |o|
|
|
2263
|
+
o.name = "ListServiceJobs"
|
|
2264
|
+
o.http_method = "POST"
|
|
2265
|
+
o.http_request_uri = "/v1/listservicejobs"
|
|
2266
|
+
o.input = Shapes::ShapeRef.new(shape: ListServiceJobsRequest)
|
|
2267
|
+
o.output = Shapes::ShapeRef.new(shape: ListServiceJobsResponse)
|
|
2268
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2269
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2270
|
+
o[:pager] = Aws::Pager.new(
|
|
2271
|
+
limit_key: "max_results",
|
|
2272
|
+
tokens: {
|
|
2273
|
+
"next_token" => "next_token"
|
|
2274
|
+
}
|
|
2275
|
+
)
|
|
2276
|
+
end)
|
|
2277
|
+
|
|
1466
2278
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
1467
2279
|
o.name = "ListTagsForResource"
|
|
1468
2280
|
o.http_method = "GET"
|
|
@@ -1493,6 +2305,16 @@ module Aws::Batch
|
|
|
1493
2305
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1494
2306
|
end)
|
|
1495
2307
|
|
|
2308
|
+
api.add_operation(:submit_service_job, Seahorse::Model::Operation.new.tap do |o|
|
|
2309
|
+
o.name = "SubmitServiceJob"
|
|
2310
|
+
o.http_method = "POST"
|
|
2311
|
+
o.http_request_uri = "/v1/submitservicejob"
|
|
2312
|
+
o.input = Shapes::ShapeRef.new(shape: SubmitServiceJobRequest)
|
|
2313
|
+
o.output = Shapes::ShapeRef.new(shape: SubmitServiceJobResponse)
|
|
2314
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2315
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2316
|
+
end)
|
|
2317
|
+
|
|
1496
2318
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
1497
2319
|
o.name = "TagResource"
|
|
1498
2320
|
o.http_method = "POST"
|
|
@@ -1513,6 +2335,16 @@ module Aws::Batch
|
|
|
1513
2335
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1514
2336
|
end)
|
|
1515
2337
|
|
|
2338
|
+
api.add_operation(:terminate_service_job, Seahorse::Model::Operation.new.tap do |o|
|
|
2339
|
+
o.name = "TerminateServiceJob"
|
|
2340
|
+
o.http_method = "POST"
|
|
2341
|
+
o.http_request_uri = "/v1/terminateservicejob"
|
|
2342
|
+
o.input = Shapes::ShapeRef.new(shape: TerminateServiceJobRequest)
|
|
2343
|
+
o.output = Shapes::ShapeRef.new(shape: TerminateServiceJobResponse)
|
|
2344
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2345
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2346
|
+
end)
|
|
2347
|
+
|
|
1516
2348
|
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
1517
2349
|
o.name = "UntagResource"
|
|
1518
2350
|
o.http_method = "DELETE"
|
|
@@ -1533,6 +2365,16 @@ module Aws::Batch
|
|
|
1533
2365
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1534
2366
|
end)
|
|
1535
2367
|
|
|
2368
|
+
api.add_operation(:update_consumable_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
2369
|
+
o.name = "UpdateConsumableResource"
|
|
2370
|
+
o.http_method = "POST"
|
|
2371
|
+
o.http_request_uri = "/v1/updateconsumableresource"
|
|
2372
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateConsumableResourceRequest)
|
|
2373
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateConsumableResourceResponse)
|
|
2374
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2375
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2376
|
+
end)
|
|
2377
|
+
|
|
1536
2378
|
api.add_operation(:update_job_queue, Seahorse::Model::Operation.new.tap do |o|
|
|
1537
2379
|
o.name = "UpdateJobQueue"
|
|
1538
2380
|
o.http_method = "POST"
|
|
@@ -1543,6 +2385,16 @@ module Aws::Batch
|
|
|
1543
2385
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1544
2386
|
end)
|
|
1545
2387
|
|
|
2388
|
+
api.add_operation(:update_quota_share, Seahorse::Model::Operation.new.tap do |o|
|
|
2389
|
+
o.name = "UpdateQuotaShare"
|
|
2390
|
+
o.http_method = "POST"
|
|
2391
|
+
o.http_request_uri = "/v1/updatequotashare"
|
|
2392
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateQuotaShareRequest)
|
|
2393
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateQuotaShareResponse)
|
|
2394
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2395
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2396
|
+
end)
|
|
2397
|
+
|
|
1546
2398
|
api.add_operation(:update_scheduling_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
1547
2399
|
o.name = "UpdateSchedulingPolicy"
|
|
1548
2400
|
o.http_method = "POST"
|
|
@@ -1552,6 +2404,26 @@ module Aws::Batch
|
|
|
1552
2404
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
1553
2405
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
1554
2406
|
end)
|
|
2407
|
+
|
|
2408
|
+
api.add_operation(:update_service_environment, Seahorse::Model::Operation.new.tap do |o|
|
|
2409
|
+
o.name = "UpdateServiceEnvironment"
|
|
2410
|
+
o.http_method = "POST"
|
|
2411
|
+
o.http_request_uri = "/v1/updateserviceenvironment"
|
|
2412
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateServiceEnvironmentRequest)
|
|
2413
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateServiceEnvironmentResponse)
|
|
2414
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2415
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2416
|
+
end)
|
|
2417
|
+
|
|
2418
|
+
api.add_operation(:update_service_job, Seahorse::Model::Operation.new.tap do |o|
|
|
2419
|
+
o.name = "UpdateServiceJob"
|
|
2420
|
+
o.http_method = "POST"
|
|
2421
|
+
o.http_request_uri = "/v1/updateservicejob"
|
|
2422
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateServiceJobRequest)
|
|
2423
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateServiceJobResponse)
|
|
2424
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2425
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
2426
|
+
end)
|
|
1555
2427
|
end
|
|
1556
2428
|
|
|
1557
2429
|
end
|