aws-sdk-batch 1.110.0 → 1.112.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-batch/client.rb +610 -13
- data/lib/aws-sdk-batch/client_api.rb +211 -0
- data/lib/aws-sdk-batch/types.rb +697 -37
- data/lib/aws-sdk-batch.rb +1 -1
- data/sig/client.rbs +142 -6
- data/sig/types.rbs +135 -1
- metadata +2 -2
data/lib/aws-sdk-batch.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -145,6 +145,20 @@ module Aws
|
|
145
145
|
) -> _CreateComputeEnvironmentResponseSuccess
|
146
146
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateComputeEnvironmentResponseSuccess
|
147
147
|
|
148
|
+
interface _CreateConsumableResourceResponseSuccess
|
149
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConsumableResourceResponse]
|
150
|
+
def consumable_resource_name: () -> ::String
|
151
|
+
def consumable_resource_arn: () -> ::String
|
152
|
+
end
|
153
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Batch/Client.html#create_consumable_resource-instance_method
|
154
|
+
def create_consumable_resource: (
|
155
|
+
consumable_resource_name: ::String,
|
156
|
+
?total_quantity: ::Integer,
|
157
|
+
?resource_type: ::String,
|
158
|
+
?tags: Hash[::String, ::String]
|
159
|
+
) -> _CreateConsumableResourceResponseSuccess
|
160
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConsumableResourceResponseSuccess
|
161
|
+
|
148
162
|
interface _CreateJobQueueResponseSuccess
|
149
163
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateJobQueueResponse]
|
150
164
|
def job_queue_name: () -> ::String
|
@@ -205,6 +219,15 @@ module Aws
|
|
205
219
|
) -> _DeleteComputeEnvironmentResponseSuccess
|
206
220
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteComputeEnvironmentResponseSuccess
|
207
221
|
|
222
|
+
interface _DeleteConsumableResourceResponseSuccess
|
223
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConsumableResourceResponse]
|
224
|
+
end
|
225
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Batch/Client.html#delete_consumable_resource-instance_method
|
226
|
+
def delete_consumable_resource: (
|
227
|
+
consumable_resource: ::String
|
228
|
+
) -> _DeleteConsumableResourceResponseSuccess
|
229
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConsumableResourceResponseSuccess
|
230
|
+
|
208
231
|
interface _DeleteJobQueueResponseSuccess
|
209
232
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteJobQueueResponse]
|
210
233
|
end
|
@@ -245,6 +268,23 @@ module Aws
|
|
245
268
|
) -> _DescribeComputeEnvironmentsResponseSuccess
|
246
269
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeComputeEnvironmentsResponseSuccess
|
247
270
|
|
271
|
+
interface _DescribeConsumableResourceResponseSuccess
|
272
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConsumableResourceResponse]
|
273
|
+
def consumable_resource_name: () -> ::String
|
274
|
+
def consumable_resource_arn: () -> ::String
|
275
|
+
def total_quantity: () -> ::Integer
|
276
|
+
def in_use_quantity: () -> ::Integer
|
277
|
+
def available_quantity: () -> ::Integer
|
278
|
+
def resource_type: () -> ::String
|
279
|
+
def created_at: () -> ::Integer
|
280
|
+
def tags: () -> ::Hash[::String, ::String]
|
281
|
+
end
|
282
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Batch/Client.html#describe_consumable_resource-instance_method
|
283
|
+
def describe_consumable_resource: (
|
284
|
+
consumable_resource: ::String
|
285
|
+
) -> _DescribeConsumableResourceResponseSuccess
|
286
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConsumableResourceResponseSuccess
|
287
|
+
|
248
288
|
interface _DescribeJobDefinitionsResponseSuccess
|
249
289
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobDefinitionsResponse]
|
250
290
|
def job_definitions: () -> ::Array[Types::JobDefinition]
|
@@ -303,6 +343,24 @@ module Aws
|
|
303
343
|
) -> _GetJobQueueSnapshotResponseSuccess
|
304
344
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetJobQueueSnapshotResponseSuccess
|
305
345
|
|
346
|
+
interface _ListConsumableResourcesResponseSuccess
|
347
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConsumableResourcesResponse]
|
348
|
+
def consumable_resources: () -> ::Array[Types::ConsumableResourceSummary]
|
349
|
+
def next_token: () -> ::String
|
350
|
+
end
|
351
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Batch/Client.html#list_consumable_resources-instance_method
|
352
|
+
def list_consumable_resources: (
|
353
|
+
?filters: Array[
|
354
|
+
{
|
355
|
+
name: ::String?,
|
356
|
+
values: Array[::String]?
|
357
|
+
},
|
358
|
+
],
|
359
|
+
?max_results: ::Integer,
|
360
|
+
?next_token: ::String
|
361
|
+
) -> _ListConsumableResourcesResponseSuccess
|
362
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConsumableResourcesResponseSuccess
|
363
|
+
|
306
364
|
interface _ListJobsResponseSuccess
|
307
365
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsResponse]
|
308
366
|
def job_summary_list: () -> ::Array[Types::JobSummary]
|
@@ -325,6 +383,25 @@ module Aws
|
|
325
383
|
) -> _ListJobsResponseSuccess
|
326
384
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsResponseSuccess
|
327
385
|
|
386
|
+
interface _ListJobsByConsumableResourceResponseSuccess
|
387
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsByConsumableResourceResponse]
|
388
|
+
def jobs: () -> ::Array[Types::ListJobsByConsumableResourceSummary]
|
389
|
+
def next_token: () -> ::String
|
390
|
+
end
|
391
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Batch/Client.html#list_jobs_by_consumable_resource-instance_method
|
392
|
+
def list_jobs_by_consumable_resource: (
|
393
|
+
consumable_resource: ::String,
|
394
|
+
?filters: Array[
|
395
|
+
{
|
396
|
+
name: ::String?,
|
397
|
+
values: Array[::String]?
|
398
|
+
},
|
399
|
+
],
|
400
|
+
?max_results: ::Integer,
|
401
|
+
?next_token: ::String
|
402
|
+
) -> _ListJobsByConsumableResourceResponseSuccess
|
403
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsByConsumableResourceResponseSuccess
|
404
|
+
|
328
405
|
interface _ListSchedulingPoliciesResponseSuccess
|
329
406
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListSchedulingPoliciesResponse]
|
330
407
|
def scheduling_policies: () -> ::Array[Types::SchedulingPolicyListingDetail]
|
@@ -435,7 +512,7 @@ module Aws
|
|
435
512
|
swappiness: ::Integer?
|
436
513
|
}?,
|
437
514
|
log_configuration: {
|
438
|
-
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
|
515
|
+
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
|
439
516
|
options: Hash[::String, ::String]?,
|
440
517
|
secret_options: Array[
|
441
518
|
{
|
@@ -456,6 +533,7 @@ module Aws
|
|
456
533
|
fargate_platform_configuration: {
|
457
534
|
platform_version: ::String?
|
458
535
|
}?,
|
536
|
+
enable_execute_command: bool?,
|
459
537
|
ephemeral_storage: {
|
460
538
|
size_in_gi_b: ::Integer
|
461
539
|
}?,
|
@@ -549,7 +627,7 @@ module Aws
|
|
549
627
|
swappiness: ::Integer?
|
550
628
|
}?,
|
551
629
|
log_configuration: {
|
552
|
-
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
|
630
|
+
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
|
553
631
|
options: Hash[::String, ::String]?,
|
554
632
|
secret_options: Array[
|
555
633
|
{
|
@@ -570,6 +648,7 @@ module Aws
|
|
570
648
|
fargate_platform_configuration: {
|
571
649
|
platform_version: ::String?
|
572
650
|
}?,
|
651
|
+
enable_execute_command: bool?,
|
573
652
|
ephemeral_storage: {
|
574
653
|
size_in_gi_b: ::Integer
|
575
654
|
}?,
|
@@ -601,6 +680,10 @@ module Aws
|
|
601
680
|
},
|
602
681
|
]?,
|
603
682
|
essential: bool?,
|
683
|
+
firelens_configuration: {
|
684
|
+
type: ("fluentd" | "fluentbit"),
|
685
|
+
options: Hash[::String, ::String]?
|
686
|
+
}?,
|
604
687
|
image: ::String,
|
605
688
|
linux_parameters: {
|
606
689
|
devices: Array[
|
@@ -623,7 +706,7 @@ module Aws
|
|
623
706
|
swappiness: ::Integer?
|
624
707
|
}?,
|
625
708
|
log_configuration: {
|
626
|
-
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
|
709
|
+
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
|
627
710
|
options: Hash[::String, ::String]?,
|
628
711
|
secret_options: Array[
|
629
712
|
{
|
@@ -699,7 +782,8 @@ module Aws
|
|
699
782
|
}?
|
700
783
|
}?
|
701
784
|
},
|
702
|
-
]
|
785
|
+
]?,
|
786
|
+
enable_execute_command: bool?
|
703
787
|
},
|
704
788
|
]
|
705
789
|
}?,
|
@@ -810,6 +894,14 @@ module Aws
|
|
810
894
|
}?,
|
811
895
|
share_process_namespace: bool?
|
812
896
|
}?
|
897
|
+
}?,
|
898
|
+
consumable_resource_properties: {
|
899
|
+
consumable_resource_list: Array[
|
900
|
+
{
|
901
|
+
consumable_resource: ::String?,
|
902
|
+
quantity: ::Integer?
|
903
|
+
},
|
904
|
+
]?
|
813
905
|
}?
|
814
906
|
},
|
815
907
|
]
|
@@ -958,6 +1050,10 @@ module Aws
|
|
958
1050
|
},
|
959
1051
|
]?,
|
960
1052
|
essential: bool?,
|
1053
|
+
firelens_configuration: {
|
1054
|
+
type: ("fluentd" | "fluentbit"),
|
1055
|
+
options: Hash[::String, ::String]?
|
1056
|
+
}?,
|
961
1057
|
image: ::String,
|
962
1058
|
linux_parameters: {
|
963
1059
|
devices: Array[
|
@@ -980,7 +1076,7 @@ module Aws
|
|
980
1076
|
swappiness: ::Integer?
|
981
1077
|
}?,
|
982
1078
|
log_configuration: {
|
983
|
-
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
|
1079
|
+
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
|
984
1080
|
options: Hash[::String, ::String]?,
|
985
1081
|
secret_options: Array[
|
986
1082
|
{
|
@@ -1056,9 +1152,18 @@ module Aws
|
|
1056
1152
|
}?
|
1057
1153
|
}?
|
1058
1154
|
},
|
1059
|
-
]
|
1155
|
+
]?,
|
1156
|
+
enable_execute_command: bool?
|
1060
1157
|
},
|
1061
1158
|
]
|
1159
|
+
},
|
1160
|
+
?consumable_resource_properties: {
|
1161
|
+
consumable_resource_list: Array[
|
1162
|
+
{
|
1163
|
+
consumable_resource: ::String?,
|
1164
|
+
quantity: ::Integer?
|
1165
|
+
},
|
1166
|
+
]?
|
1062
1167
|
}
|
1063
1168
|
) -> _RegisterJobDefinitionResponseSuccess
|
1064
1169
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterJobDefinitionResponseSuccess
|
@@ -1196,6 +1301,14 @@ module Aws
|
|
1196
1301
|
namespace: ::String?
|
1197
1302
|
}?
|
1198
1303
|
}?
|
1304
|
+
}?,
|
1305
|
+
consumable_resource_properties_override: {
|
1306
|
+
consumable_resource_list: Array[
|
1307
|
+
{
|
1308
|
+
consumable_resource: ::String?,
|
1309
|
+
quantity: ::Integer?
|
1310
|
+
},
|
1311
|
+
]?
|
1199
1312
|
}?
|
1200
1313
|
},
|
1201
1314
|
]?
|
@@ -1284,6 +1397,14 @@ module Aws
|
|
1284
1397
|
]?
|
1285
1398
|
},
|
1286
1399
|
]?
|
1400
|
+
},
|
1401
|
+
?consumable_resource_properties_override: {
|
1402
|
+
consumable_resource_list: Array[
|
1403
|
+
{
|
1404
|
+
consumable_resource: ::String?,
|
1405
|
+
quantity: ::Integer?
|
1406
|
+
},
|
1407
|
+
]?
|
1287
1408
|
}
|
1288
1409
|
) -> _SubmitJobResponseSuccess
|
1289
1410
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SubmitJobResponseSuccess
|
@@ -1374,6 +1495,21 @@ module Aws
|
|
1374
1495
|
) -> _UpdateComputeEnvironmentResponseSuccess
|
1375
1496
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateComputeEnvironmentResponseSuccess
|
1376
1497
|
|
1498
|
+
interface _UpdateConsumableResourceResponseSuccess
|
1499
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConsumableResourceResponse]
|
1500
|
+
def consumable_resource_name: () -> ::String
|
1501
|
+
def consumable_resource_arn: () -> ::String
|
1502
|
+
def total_quantity: () -> ::Integer
|
1503
|
+
end
|
1504
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Batch/Client.html#update_consumable_resource-instance_method
|
1505
|
+
def update_consumable_resource: (
|
1506
|
+
consumable_resource: ::String,
|
1507
|
+
?operation: ::String,
|
1508
|
+
?quantity: ::Integer,
|
1509
|
+
?client_token: ::String
|
1510
|
+
) -> _UpdateConsumableResourceResponseSuccess
|
1511
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConsumableResourceResponseSuccess
|
1512
|
+
|
1377
1513
|
interface _UpdateJobQueueResponseSuccess
|
1378
1514
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateJobQueueResponse]
|
1379
1515
|
def job_queue_name: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -143,6 +143,26 @@ module Aws::Batch
|
|
143
143
|
SENSITIVE: []
|
144
144
|
end
|
145
145
|
|
146
|
+
class ConsumableResourceProperties
|
147
|
+
attr_accessor consumable_resource_list: ::Array[Types::ConsumableResourceRequirement]
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class ConsumableResourceRequirement
|
152
|
+
attr_accessor consumable_resource: ::String
|
153
|
+
attr_accessor quantity: ::Integer
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class ConsumableResourceSummary
|
158
|
+
attr_accessor consumable_resource_arn: ::String
|
159
|
+
attr_accessor consumable_resource_name: ::String
|
160
|
+
attr_accessor total_quantity: ::Integer
|
161
|
+
attr_accessor in_use_quantity: ::Integer
|
162
|
+
attr_accessor resource_type: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
146
166
|
class ContainerDetail
|
147
167
|
attr_accessor image: ::String
|
148
168
|
attr_accessor vcpus: ::Integer
|
@@ -173,6 +193,7 @@ module Aws::Batch
|
|
173
193
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
174
194
|
attr_accessor runtime_platform: Types::RuntimePlatform
|
175
195
|
attr_accessor repository_credentials: Types::RepositoryCredentials
|
196
|
+
attr_accessor enable_execute_command: bool
|
176
197
|
SENSITIVE: []
|
177
198
|
end
|
178
199
|
|
@@ -207,6 +228,7 @@ module Aws::Batch
|
|
207
228
|
attr_accessor secrets: ::Array[Types::Secret]
|
208
229
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
209
230
|
attr_accessor fargate_platform_configuration: Types::FargatePlatformConfiguration
|
231
|
+
attr_accessor enable_execute_command: bool
|
210
232
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
211
233
|
attr_accessor runtime_platform: Types::RuntimePlatform
|
212
234
|
attr_accessor repository_credentials: Types::RepositoryCredentials
|
@@ -238,6 +260,20 @@ module Aws::Batch
|
|
238
260
|
SENSITIVE: []
|
239
261
|
end
|
240
262
|
|
263
|
+
class CreateConsumableResourceRequest
|
264
|
+
attr_accessor consumable_resource_name: ::String
|
265
|
+
attr_accessor total_quantity: ::Integer
|
266
|
+
attr_accessor resource_type: ::String
|
267
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class CreateConsumableResourceResponse
|
272
|
+
attr_accessor consumable_resource_name: ::String
|
273
|
+
attr_accessor consumable_resource_arn: ::String
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
241
277
|
class CreateJobQueueRequest
|
242
278
|
attr_accessor job_queue_name: ::String
|
243
279
|
attr_accessor state: ("ENABLED" | "DISABLED")
|
@@ -276,6 +312,14 @@ module Aws::Batch
|
|
276
312
|
class DeleteComputeEnvironmentResponse < Aws::EmptyStructure
|
277
313
|
end
|
278
314
|
|
315
|
+
class DeleteConsumableResourceRequest
|
316
|
+
attr_accessor consumable_resource: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class DeleteConsumableResourceResponse < Aws::EmptyStructure
|
321
|
+
end
|
322
|
+
|
279
323
|
class DeleteJobQueueRequest
|
280
324
|
attr_accessor job_queue: ::String
|
281
325
|
SENSITIVE: []
|
@@ -313,6 +357,23 @@ module Aws::Batch
|
|
313
357
|
SENSITIVE: []
|
314
358
|
end
|
315
359
|
|
360
|
+
class DescribeConsumableResourceRequest
|
361
|
+
attr_accessor consumable_resource: ::String
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class DescribeConsumableResourceResponse
|
366
|
+
attr_accessor consumable_resource_name: ::String
|
367
|
+
attr_accessor consumable_resource_arn: ::String
|
368
|
+
attr_accessor total_quantity: ::Integer
|
369
|
+
attr_accessor in_use_quantity: ::Integer
|
370
|
+
attr_accessor available_quantity: ::Integer
|
371
|
+
attr_accessor resource_type: ::String
|
372
|
+
attr_accessor created_at: ::Integer
|
373
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
316
377
|
class DescribeJobDefinitionsRequest
|
317
378
|
attr_accessor job_definitions: ::Array[::String]
|
318
379
|
attr_accessor max_results: ::Integer
|
@@ -418,6 +479,7 @@ module Aws::Batch
|
|
418
479
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
419
480
|
attr_accessor runtime_platform: Types::RuntimePlatform
|
420
481
|
attr_accessor volumes: ::Array[Types::Volume]
|
482
|
+
attr_accessor enable_execute_command: bool
|
421
483
|
SENSITIVE: []
|
422
484
|
end
|
423
485
|
|
@@ -432,6 +494,7 @@ module Aws::Batch
|
|
432
494
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
433
495
|
attr_accessor runtime_platform: Types::RuntimePlatform
|
434
496
|
attr_accessor volumes: ::Array[Types::Volume]
|
497
|
+
attr_accessor enable_execute_command: bool
|
435
498
|
SENSITIVE: []
|
436
499
|
end
|
437
500
|
|
@@ -644,6 +707,12 @@ module Aws::Batch
|
|
644
707
|
SENSITIVE: []
|
645
708
|
end
|
646
709
|
|
710
|
+
class FirelensConfiguration
|
711
|
+
attr_accessor type: ("fluentd" | "fluentbit")
|
712
|
+
attr_accessor options: ::Hash[::String, ::String]
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
647
716
|
class FrontOfQueueDetail
|
648
717
|
attr_accessor jobs: ::Array[Types::FrontOfQueueJobSummary]
|
649
718
|
attr_accessor last_updated_at: ::Integer
|
@@ -694,6 +763,7 @@ module Aws::Batch
|
|
694
763
|
attr_accessor ecs_properties: Types::EcsProperties
|
695
764
|
attr_accessor eks_properties: Types::EksProperties
|
696
765
|
attr_accessor container_orchestration_type: ("ECS" | "EKS")
|
766
|
+
attr_accessor consumable_resource_properties: Types::ConsumableResourceProperties
|
697
767
|
SENSITIVE: []
|
698
768
|
end
|
699
769
|
|
@@ -733,6 +803,7 @@ module Aws::Batch
|
|
733
803
|
attr_accessor ecs_properties: Types::EcsPropertiesDetail
|
734
804
|
attr_accessor is_cancelled: bool
|
735
805
|
attr_accessor is_terminated: bool
|
806
|
+
attr_accessor consumable_resource_properties: Types::ConsumableResourceProperties
|
736
807
|
SENSITIVE: []
|
737
808
|
end
|
738
809
|
|
@@ -817,6 +888,48 @@ module Aws::Batch
|
|
817
888
|
SENSITIVE: []
|
818
889
|
end
|
819
890
|
|
891
|
+
class ListConsumableResourcesRequest
|
892
|
+
attr_accessor filters: ::Array[Types::KeyValuesPair]
|
893
|
+
attr_accessor max_results: ::Integer
|
894
|
+
attr_accessor next_token: ::String
|
895
|
+
SENSITIVE: []
|
896
|
+
end
|
897
|
+
|
898
|
+
class ListConsumableResourcesResponse
|
899
|
+
attr_accessor consumable_resources: ::Array[Types::ConsumableResourceSummary]
|
900
|
+
attr_accessor next_token: ::String
|
901
|
+
SENSITIVE: []
|
902
|
+
end
|
903
|
+
|
904
|
+
class ListJobsByConsumableResourceRequest
|
905
|
+
attr_accessor consumable_resource: ::String
|
906
|
+
attr_accessor filters: ::Array[Types::KeyValuesPair]
|
907
|
+
attr_accessor max_results: ::Integer
|
908
|
+
attr_accessor next_token: ::String
|
909
|
+
SENSITIVE: []
|
910
|
+
end
|
911
|
+
|
912
|
+
class ListJobsByConsumableResourceResponse
|
913
|
+
attr_accessor jobs: ::Array[Types::ListJobsByConsumableResourceSummary]
|
914
|
+
attr_accessor next_token: ::String
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class ListJobsByConsumableResourceSummary
|
919
|
+
attr_accessor job_arn: ::String
|
920
|
+
attr_accessor job_queue_arn: ::String
|
921
|
+
attr_accessor job_name: ::String
|
922
|
+
attr_accessor job_definition_arn: ::String
|
923
|
+
attr_accessor share_identifier: ::String
|
924
|
+
attr_accessor job_status: ::String
|
925
|
+
attr_accessor quantity: ::Integer
|
926
|
+
attr_accessor status_reason: ::String
|
927
|
+
attr_accessor started_at: ::Integer
|
928
|
+
attr_accessor created_at: ::Integer
|
929
|
+
attr_accessor consumable_resource_properties: Types::ConsumableResourceProperties
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
820
933
|
class ListJobsRequest
|
821
934
|
attr_accessor job_queue: ::String
|
822
935
|
attr_accessor array_job_id: ::String
|
@@ -857,7 +970,7 @@ module Aws::Batch
|
|
857
970
|
end
|
858
971
|
|
859
972
|
class LogConfiguration
|
860
|
-
attr_accessor log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk")
|
973
|
+
attr_accessor log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens")
|
861
974
|
attr_accessor options: ::Hash[::String, ::String]
|
862
975
|
attr_accessor secret_options: ::Array[Types::Secret]
|
863
976
|
SENSITIVE: []
|
@@ -914,6 +1027,7 @@ module Aws::Batch
|
|
914
1027
|
attr_accessor ecs_properties_override: Types::EcsPropertiesOverride
|
915
1028
|
attr_accessor instance_types: ::Array[::String]
|
916
1029
|
attr_accessor eks_properties_override: Types::EksPropertiesOverride
|
1030
|
+
attr_accessor consumable_resource_properties_override: Types::ConsumableResourceProperties
|
917
1031
|
SENSITIVE: []
|
918
1032
|
end
|
919
1033
|
|
@@ -923,6 +1037,7 @@ module Aws::Batch
|
|
923
1037
|
attr_accessor instance_types: ::Array[::String]
|
924
1038
|
attr_accessor ecs_properties: Types::EcsProperties
|
925
1039
|
attr_accessor eks_properties: Types::EksProperties
|
1040
|
+
attr_accessor consumable_resource_properties: Types::ConsumableResourceProperties
|
926
1041
|
SENSITIVE: []
|
927
1042
|
end
|
928
1043
|
|
@@ -940,6 +1055,7 @@ module Aws::Batch
|
|
940
1055
|
attr_accessor platform_capabilities: ::Array[("EC2" | "FARGATE")]
|
941
1056
|
attr_accessor eks_properties: Types::EksProperties
|
942
1057
|
attr_accessor ecs_properties: Types::EcsProperties
|
1058
|
+
attr_accessor consumable_resource_properties: Types::ConsumableResourceProperties
|
943
1059
|
SENSITIVE: []
|
944
1060
|
end
|
945
1061
|
|
@@ -1020,6 +1136,7 @@ module Aws::Batch
|
|
1020
1136
|
attr_accessor tags: ::Hash[::String, ::String]
|
1021
1137
|
attr_accessor eks_properties_override: Types::EksPropertiesOverride
|
1022
1138
|
attr_accessor ecs_properties_override: Types::EcsPropertiesOverride
|
1139
|
+
attr_accessor consumable_resource_properties_override: Types::ConsumableResourceProperties
|
1023
1140
|
SENSITIVE: []
|
1024
1141
|
end
|
1025
1142
|
|
@@ -1050,6 +1167,7 @@ module Aws::Batch
|
|
1050
1167
|
attr_accessor depends_on: ::Array[Types::TaskContainerDependency]
|
1051
1168
|
attr_accessor environment: ::Array[Types::KeyValuePair]
|
1052
1169
|
attr_accessor essential: bool
|
1170
|
+
attr_accessor firelens_configuration: Types::FirelensConfiguration
|
1053
1171
|
attr_accessor image: ::String
|
1054
1172
|
attr_accessor linux_parameters: Types::LinuxParameters
|
1055
1173
|
attr_accessor log_configuration: Types::LogConfiguration
|
@@ -1082,6 +1200,7 @@ module Aws::Batch
|
|
1082
1200
|
attr_accessor depends_on: ::Array[Types::TaskContainerDependency]
|
1083
1201
|
attr_accessor environment: ::Array[Types::KeyValuePair]
|
1084
1202
|
attr_accessor essential: bool
|
1203
|
+
attr_accessor firelens_configuration: Types::FirelensConfiguration
|
1085
1204
|
attr_accessor image: ::String
|
1086
1205
|
attr_accessor linux_parameters: Types::LinuxParameters
|
1087
1206
|
attr_accessor log_configuration: Types::LogConfiguration
|
@@ -1151,6 +1270,21 @@ module Aws::Batch
|
|
1151
1270
|
SENSITIVE: []
|
1152
1271
|
end
|
1153
1272
|
|
1273
|
+
class UpdateConsumableResourceRequest
|
1274
|
+
attr_accessor consumable_resource: ::String
|
1275
|
+
attr_accessor operation: ::String
|
1276
|
+
attr_accessor quantity: ::Integer
|
1277
|
+
attr_accessor client_token: ::String
|
1278
|
+
SENSITIVE: []
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
class UpdateConsumableResourceResponse
|
1282
|
+
attr_accessor consumable_resource_name: ::String
|
1283
|
+
attr_accessor consumable_resource_arn: ::String
|
1284
|
+
attr_accessor total_quantity: ::Integer
|
1285
|
+
SENSITIVE: []
|
1286
|
+
end
|
1287
|
+
|
1154
1288
|
class UpdateJobQueueRequest
|
1155
1289
|
attr_accessor job_queue: ::String
|
1156
1290
|
attr_accessor state: ("ENABLED" | "DISABLED")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-batch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.112.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|