aws-sdk-batch 1.92.0 → 1.94.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-batch/client.rb +304 -1
- data/lib/aws-sdk-batch/client_api.rb +3 -0
- data/lib/aws-sdk-batch/types.rb +19 -2
- data/lib/aws-sdk-batch.rb +1 -1
- data/sig/client.rbs +145 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +3 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be2c65973ba6bb1311b822a87991734a0f39f105a4ddbd6437dab05083a350c7
|
4
|
+
data.tar.gz: 619eedd6e90db8d448810bead00fd07482054bf79dbcdbff6e657c86da4acdf6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad5a899da8320a9d9f57b58d3a7eefbe47d6ddb419e2722528eba28cb27b12b2a7a22e3517c1fe966bce670d87bbb358ff7149977ca37c8c8e337dfe8f809e29
|
7
|
+
data.tar.gz: da1982ed690a1e9a8cdccb622ec6d8150e1865bbb606312d19dd81a91ccda6af26a2f665c0d17f11e66ca54dcee250fb74c1cb7a8cf0917413d0ebbc50fd36cc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.94.0 (2024-07-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This feature allows AWS Batch Jobs with EKS container orchestration type to be run as Multi-Node Parallel Jobs.
|
8
|
+
|
9
|
+
1.93.0 (2024-07-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.92.0 (2024-06-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.94.0
|
data/lib/aws-sdk-batch/client.rb
CHANGED
@@ -312,6 +312,15 @@ module Aws::Batch
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -1713,6 +1722,71 @@ module Aws::Batch
|
|
1713
1722
|
# resp.job_definitions[0].node_properties.node_range_properties[0].ecs_properties.task_properties[0].volumes[0].efs_volume_configuration.transit_encryption_port #=> Integer
|
1714
1723
|
# resp.job_definitions[0].node_properties.node_range_properties[0].ecs_properties.task_properties[0].volumes[0].efs_volume_configuration.authorization_config.access_point_id #=> String
|
1715
1724
|
# resp.job_definitions[0].node_properties.node_range_properties[0].ecs_properties.task_properties[0].volumes[0].efs_volume_configuration.authorization_config.iam #=> String, one of "ENABLED", "DISABLED"
|
1725
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.service_account_name #=> String
|
1726
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.host_network #=> Boolean
|
1727
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.dns_policy #=> String
|
1728
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.image_pull_secrets #=> Array
|
1729
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.image_pull_secrets[0].name #=> String
|
1730
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers #=> Array
|
1731
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].name #=> String
|
1732
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].image #=> String
|
1733
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].image_pull_policy #=> String
|
1734
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].command #=> Array
|
1735
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].command[0] #=> String
|
1736
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].args #=> Array
|
1737
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].args[0] #=> String
|
1738
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].env #=> Array
|
1739
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].env[0].name #=> String
|
1740
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].env[0].value #=> String
|
1741
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].resources.limits #=> Hash
|
1742
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].resources.limits["String"] #=> String
|
1743
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].resources.requests #=> Hash
|
1744
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].resources.requests["String"] #=> String
|
1745
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].volume_mounts #=> Array
|
1746
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].volume_mounts[0].name #=> String
|
1747
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].volume_mounts[0].mount_path #=> String
|
1748
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].volume_mounts[0].read_only #=> Boolean
|
1749
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.run_as_user #=> Integer
|
1750
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.run_as_group #=> Integer
|
1751
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.privileged #=> Boolean
|
1752
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.allow_privilege_escalation #=> Boolean
|
1753
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.read_only_root_filesystem #=> Boolean
|
1754
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.run_as_non_root #=> Boolean
|
1755
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers #=> Array
|
1756
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].name #=> String
|
1757
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].image #=> String
|
1758
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].image_pull_policy #=> String
|
1759
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].command #=> Array
|
1760
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].command[0] #=> String
|
1761
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].args #=> Array
|
1762
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].args[0] #=> String
|
1763
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].env #=> Array
|
1764
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].env[0].name #=> String
|
1765
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].env[0].value #=> String
|
1766
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].resources.limits #=> Hash
|
1767
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].resources.limits["String"] #=> String
|
1768
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].resources.requests #=> Hash
|
1769
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].resources.requests["String"] #=> String
|
1770
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].volume_mounts #=> Array
|
1771
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].volume_mounts[0].name #=> String
|
1772
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].volume_mounts[0].mount_path #=> String
|
1773
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].volume_mounts[0].read_only #=> Boolean
|
1774
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.run_as_user #=> Integer
|
1775
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.run_as_group #=> Integer
|
1776
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.privileged #=> Boolean
|
1777
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.allow_privilege_escalation #=> Boolean
|
1778
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.read_only_root_filesystem #=> Boolean
|
1779
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.run_as_non_root #=> Boolean
|
1780
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes #=> Array
|
1781
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].name #=> String
|
1782
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].host_path.path #=> String
|
1783
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].empty_dir.medium #=> String
|
1784
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].empty_dir.size_limit #=> String
|
1785
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].secret.secret_name #=> String
|
1786
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].secret.optional #=> Boolean
|
1787
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.metadata.labels #=> Hash
|
1788
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.metadata.labels["String"] #=> String
|
1789
|
+
# resp.job_definitions[0].node_properties.node_range_properties[0].eks_properties.pod_properties.share_process_namespace #=> Boolean
|
1716
1790
|
# resp.job_definitions[0].tags #=> Hash
|
1717
1791
|
# resp.job_definitions[0].tags["TagKey"] #=> String
|
1718
1792
|
# resp.job_definitions[0].propagate_tags #=> Boolean
|
@@ -2297,6 +2371,71 @@ module Aws::Batch
|
|
2297
2371
|
# resp.jobs[0].node_properties.node_range_properties[0].ecs_properties.task_properties[0].volumes[0].efs_volume_configuration.transit_encryption_port #=> Integer
|
2298
2372
|
# resp.jobs[0].node_properties.node_range_properties[0].ecs_properties.task_properties[0].volumes[0].efs_volume_configuration.authorization_config.access_point_id #=> String
|
2299
2373
|
# resp.jobs[0].node_properties.node_range_properties[0].ecs_properties.task_properties[0].volumes[0].efs_volume_configuration.authorization_config.iam #=> String, one of "ENABLED", "DISABLED"
|
2374
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.service_account_name #=> String
|
2375
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.host_network #=> Boolean
|
2376
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.dns_policy #=> String
|
2377
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.image_pull_secrets #=> Array
|
2378
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.image_pull_secrets[0].name #=> String
|
2379
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers #=> Array
|
2380
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].name #=> String
|
2381
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].image #=> String
|
2382
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].image_pull_policy #=> String
|
2383
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].command #=> Array
|
2384
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].command[0] #=> String
|
2385
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].args #=> Array
|
2386
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].args[0] #=> String
|
2387
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].env #=> Array
|
2388
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].env[0].name #=> String
|
2389
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].env[0].value #=> String
|
2390
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].resources.limits #=> Hash
|
2391
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].resources.limits["String"] #=> String
|
2392
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].resources.requests #=> Hash
|
2393
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].resources.requests["String"] #=> String
|
2394
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].volume_mounts #=> Array
|
2395
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].volume_mounts[0].name #=> String
|
2396
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].volume_mounts[0].mount_path #=> String
|
2397
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].volume_mounts[0].read_only #=> Boolean
|
2398
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.run_as_user #=> Integer
|
2399
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.run_as_group #=> Integer
|
2400
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.privileged #=> Boolean
|
2401
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.allow_privilege_escalation #=> Boolean
|
2402
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.read_only_root_filesystem #=> Boolean
|
2403
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.containers[0].security_context.run_as_non_root #=> Boolean
|
2404
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers #=> Array
|
2405
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].name #=> String
|
2406
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].image #=> String
|
2407
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].image_pull_policy #=> String
|
2408
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].command #=> Array
|
2409
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].command[0] #=> String
|
2410
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].args #=> Array
|
2411
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].args[0] #=> String
|
2412
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].env #=> Array
|
2413
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].env[0].name #=> String
|
2414
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].env[0].value #=> String
|
2415
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].resources.limits #=> Hash
|
2416
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].resources.limits["String"] #=> String
|
2417
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].resources.requests #=> Hash
|
2418
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].resources.requests["String"] #=> String
|
2419
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].volume_mounts #=> Array
|
2420
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].volume_mounts[0].name #=> String
|
2421
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].volume_mounts[0].mount_path #=> String
|
2422
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].volume_mounts[0].read_only #=> Boolean
|
2423
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.run_as_user #=> Integer
|
2424
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.run_as_group #=> Integer
|
2425
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.privileged #=> Boolean
|
2426
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.allow_privilege_escalation #=> Boolean
|
2427
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.read_only_root_filesystem #=> Boolean
|
2428
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.init_containers[0].security_context.run_as_non_root #=> Boolean
|
2429
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes #=> Array
|
2430
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].name #=> String
|
2431
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].host_path.path #=> String
|
2432
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].empty_dir.medium #=> String
|
2433
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].empty_dir.size_limit #=> String
|
2434
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].secret.secret_name #=> String
|
2435
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.volumes[0].secret.optional #=> Boolean
|
2436
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.metadata.labels #=> Hash
|
2437
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.metadata.labels["String"] #=> String
|
2438
|
+
# resp.jobs[0].node_properties.node_range_properties[0].eks_properties.pod_properties.share_process_namespace #=> Boolean
|
2300
2439
|
# resp.jobs[0].array_properties.status_summary #=> Hash
|
2301
2440
|
# resp.jobs[0].array_properties.status_summary["String"] #=> Integer
|
2302
2441
|
# resp.jobs[0].array_properties.size #=> Integer
|
@@ -2387,6 +2526,7 @@ module Aws::Batch
|
|
2387
2526
|
# resp.jobs[0].eks_attempts[0].init_containers[0].name #=> String
|
2388
2527
|
# resp.jobs[0].eks_attempts[0].init_containers[0].exit_code #=> Integer
|
2389
2528
|
# resp.jobs[0].eks_attempts[0].init_containers[0].reason #=> String
|
2529
|
+
# resp.jobs[0].eks_attempts[0].eks_cluster_arn #=> String
|
2390
2530
|
# resp.jobs[0].eks_attempts[0].pod_name #=> String
|
2391
2531
|
# resp.jobs[0].eks_attempts[0].node_name #=> String
|
2392
2532
|
# resp.jobs[0].eks_attempts[0].started_at #=> Integer
|
@@ -3435,6 +3575,116 @@ module Aws::Batch
|
|
3435
3575
|
# },
|
3436
3576
|
# ],
|
3437
3577
|
# },
|
3578
|
+
# eks_properties: {
|
3579
|
+
# pod_properties: {
|
3580
|
+
# service_account_name: "String",
|
3581
|
+
# host_network: false,
|
3582
|
+
# dns_policy: "String",
|
3583
|
+
# image_pull_secrets: [
|
3584
|
+
# {
|
3585
|
+
# name: "String", # required
|
3586
|
+
# },
|
3587
|
+
# ],
|
3588
|
+
# containers: [
|
3589
|
+
# {
|
3590
|
+
# name: "String",
|
3591
|
+
# image: "String", # required
|
3592
|
+
# image_pull_policy: "String",
|
3593
|
+
# command: ["String"],
|
3594
|
+
# args: ["String"],
|
3595
|
+
# env: [
|
3596
|
+
# {
|
3597
|
+
# name: "String", # required
|
3598
|
+
# value: "String",
|
3599
|
+
# },
|
3600
|
+
# ],
|
3601
|
+
# resources: {
|
3602
|
+
# limits: {
|
3603
|
+
# "String" => "Quantity",
|
3604
|
+
# },
|
3605
|
+
# requests: {
|
3606
|
+
# "String" => "Quantity",
|
3607
|
+
# },
|
3608
|
+
# },
|
3609
|
+
# volume_mounts: [
|
3610
|
+
# {
|
3611
|
+
# name: "String",
|
3612
|
+
# mount_path: "String",
|
3613
|
+
# read_only: false,
|
3614
|
+
# },
|
3615
|
+
# ],
|
3616
|
+
# security_context: {
|
3617
|
+
# run_as_user: 1,
|
3618
|
+
# run_as_group: 1,
|
3619
|
+
# privileged: false,
|
3620
|
+
# allow_privilege_escalation: false,
|
3621
|
+
# read_only_root_filesystem: false,
|
3622
|
+
# run_as_non_root: false,
|
3623
|
+
# },
|
3624
|
+
# },
|
3625
|
+
# ],
|
3626
|
+
# init_containers: [
|
3627
|
+
# {
|
3628
|
+
# name: "String",
|
3629
|
+
# image: "String", # required
|
3630
|
+
# image_pull_policy: "String",
|
3631
|
+
# command: ["String"],
|
3632
|
+
# args: ["String"],
|
3633
|
+
# env: [
|
3634
|
+
# {
|
3635
|
+
# name: "String", # required
|
3636
|
+
# value: "String",
|
3637
|
+
# },
|
3638
|
+
# ],
|
3639
|
+
# resources: {
|
3640
|
+
# limits: {
|
3641
|
+
# "String" => "Quantity",
|
3642
|
+
# },
|
3643
|
+
# requests: {
|
3644
|
+
# "String" => "Quantity",
|
3645
|
+
# },
|
3646
|
+
# },
|
3647
|
+
# volume_mounts: [
|
3648
|
+
# {
|
3649
|
+
# name: "String",
|
3650
|
+
# mount_path: "String",
|
3651
|
+
# read_only: false,
|
3652
|
+
# },
|
3653
|
+
# ],
|
3654
|
+
# security_context: {
|
3655
|
+
# run_as_user: 1,
|
3656
|
+
# run_as_group: 1,
|
3657
|
+
# privileged: false,
|
3658
|
+
# allow_privilege_escalation: false,
|
3659
|
+
# read_only_root_filesystem: false,
|
3660
|
+
# run_as_non_root: false,
|
3661
|
+
# },
|
3662
|
+
# },
|
3663
|
+
# ],
|
3664
|
+
# volumes: [
|
3665
|
+
# {
|
3666
|
+
# name: "String", # required
|
3667
|
+
# host_path: {
|
3668
|
+
# path: "String",
|
3669
|
+
# },
|
3670
|
+
# empty_dir: {
|
3671
|
+
# medium: "String",
|
3672
|
+
# size_limit: "Quantity",
|
3673
|
+
# },
|
3674
|
+
# secret: {
|
3675
|
+
# secret_name: "String", # required
|
3676
|
+
# optional: false,
|
3677
|
+
# },
|
3678
|
+
# },
|
3679
|
+
# ],
|
3680
|
+
# metadata: {
|
3681
|
+
# labels: {
|
3682
|
+
# "String" => "String",
|
3683
|
+
# },
|
3684
|
+
# },
|
3685
|
+
# share_process_namespace: false,
|
3686
|
+
# },
|
3687
|
+
# },
|
3438
3688
|
# },
|
3439
3689
|
# ],
|
3440
3690
|
# },
|
@@ -3965,6 +4215,59 @@ module Aws::Batch
|
|
3965
4215
|
# ],
|
3966
4216
|
# },
|
3967
4217
|
# instance_types: ["String"],
|
4218
|
+
# eks_properties_override: {
|
4219
|
+
# pod_properties: {
|
4220
|
+
# containers: [
|
4221
|
+
# {
|
4222
|
+
# name: "String",
|
4223
|
+
# image: "String",
|
4224
|
+
# command: ["String"],
|
4225
|
+
# args: ["String"],
|
4226
|
+
# env: [
|
4227
|
+
# {
|
4228
|
+
# name: "String", # required
|
4229
|
+
# value: "String",
|
4230
|
+
# },
|
4231
|
+
# ],
|
4232
|
+
# resources: {
|
4233
|
+
# limits: {
|
4234
|
+
# "String" => "Quantity",
|
4235
|
+
# },
|
4236
|
+
# requests: {
|
4237
|
+
# "String" => "Quantity",
|
4238
|
+
# },
|
4239
|
+
# },
|
4240
|
+
# },
|
4241
|
+
# ],
|
4242
|
+
# init_containers: [
|
4243
|
+
# {
|
4244
|
+
# name: "String",
|
4245
|
+
# image: "String",
|
4246
|
+
# command: ["String"],
|
4247
|
+
# args: ["String"],
|
4248
|
+
# env: [
|
4249
|
+
# {
|
4250
|
+
# name: "String", # required
|
4251
|
+
# value: "String",
|
4252
|
+
# },
|
4253
|
+
# ],
|
4254
|
+
# resources: {
|
4255
|
+
# limits: {
|
4256
|
+
# "String" => "Quantity",
|
4257
|
+
# },
|
4258
|
+
# requests: {
|
4259
|
+
# "String" => "Quantity",
|
4260
|
+
# },
|
4261
|
+
# },
|
4262
|
+
# },
|
4263
|
+
# ],
|
4264
|
+
# metadata: {
|
4265
|
+
# labels: {
|
4266
|
+
# "String" => "String",
|
4267
|
+
# },
|
4268
|
+
# },
|
4269
|
+
# },
|
4270
|
+
# },
|
3968
4271
|
# },
|
3969
4272
|
# ],
|
3970
4273
|
# },
|
@@ -4564,7 +4867,7 @@ module Aws::Batch
|
|
4564
4867
|
params: params,
|
4565
4868
|
config: config)
|
4566
4869
|
context[:gem_name] = 'aws-sdk-batch'
|
4567
|
-
context[:gem_version] = '1.
|
4870
|
+
context[:gem_version] = '1.94.0'
|
4568
4871
|
Seahorse::Client::Request.new(handlers, context)
|
4569
4872
|
end
|
4570
4873
|
|
@@ -600,6 +600,7 @@ module Aws::Batch
|
|
600
600
|
|
601
601
|
EksAttemptDetail.add_member(:containers, Shapes::ShapeRef.new(shape: EksAttemptContainerDetails, location_name: "containers"))
|
602
602
|
EksAttemptDetail.add_member(:init_containers, Shapes::ShapeRef.new(shape: EksAttemptContainerDetails, location_name: "initContainers"))
|
603
|
+
EksAttemptDetail.add_member(:eks_cluster_arn, Shapes::ShapeRef.new(shape: String, location_name: "eksClusterArn"))
|
603
604
|
EksAttemptDetail.add_member(:pod_name, Shapes::ShapeRef.new(shape: String, location_name: "podName"))
|
604
605
|
EksAttemptDetail.add_member(:node_name, Shapes::ShapeRef.new(shape: String, location_name: "nodeName"))
|
605
606
|
EksAttemptDetail.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, location_name: "startedAt"))
|
@@ -1004,6 +1005,7 @@ module Aws::Batch
|
|
1004
1005
|
NodePropertyOverride.add_member(:container_overrides, Shapes::ShapeRef.new(shape: ContainerOverrides, location_name: "containerOverrides"))
|
1005
1006
|
NodePropertyOverride.add_member(:ecs_properties_override, Shapes::ShapeRef.new(shape: EcsPropertiesOverride, location_name: "ecsPropertiesOverride"))
|
1006
1007
|
NodePropertyOverride.add_member(:instance_types, Shapes::ShapeRef.new(shape: StringList, location_name: "instanceTypes"))
|
1008
|
+
NodePropertyOverride.add_member(:eks_properties_override, Shapes::ShapeRef.new(shape: EksPropertiesOverride, location_name: "eksPropertiesOverride"))
|
1007
1009
|
NodePropertyOverride.struct_class = Types::NodePropertyOverride
|
1008
1010
|
|
1009
1011
|
NodePropertyOverrides.member = Shapes::ShapeRef.new(shape: NodePropertyOverride)
|
@@ -1014,6 +1016,7 @@ module Aws::Batch
|
|
1014
1016
|
NodeRangeProperty.add_member(:container, Shapes::ShapeRef.new(shape: ContainerProperties, location_name: "container"))
|
1015
1017
|
NodeRangeProperty.add_member(:instance_types, Shapes::ShapeRef.new(shape: StringList, location_name: "instanceTypes"))
|
1016
1018
|
NodeRangeProperty.add_member(:ecs_properties, Shapes::ShapeRef.new(shape: EcsProperties, location_name: "ecsProperties"))
|
1019
|
+
NodeRangeProperty.add_member(:eks_properties, Shapes::ShapeRef.new(shape: EksProperties, location_name: "eksProperties"))
|
1017
1020
|
NodeRangeProperty.struct_class = Types::NodeRangeProperty
|
1018
1021
|
|
1019
1022
|
ParametersMap.key = Shapes::ShapeRef.new(shape: String)
|
data/lib/aws-sdk-batch/types.rb
CHANGED
@@ -3318,6 +3318,10 @@ module Aws::Batch
|
|
3318
3318
|
# The details for the init containers.
|
3319
3319
|
# @return [Array<Types::EksAttemptContainerDetail>]
|
3320
3320
|
#
|
3321
|
+
# @!attribute [rw] eks_cluster_arn
|
3322
|
+
# The Amazon Resource Name (ARN) of the Amazon EKS cluster.
|
3323
|
+
# @return [String]
|
3324
|
+
#
|
3321
3325
|
# @!attribute [rw] pod_name
|
3322
3326
|
# The name of the pod for this job attempt.
|
3323
3327
|
# @return [String]
|
@@ -3349,6 +3353,7 @@ module Aws::Batch
|
|
3349
3353
|
class EksAttemptDetail < Struct.new(
|
3350
3354
|
:containers,
|
3351
3355
|
:init_containers,
|
3356
|
+
:eks_cluster_arn,
|
3352
3357
|
:pod_name,
|
3353
3358
|
:node_name,
|
3354
3359
|
:started_at,
|
@@ -6180,13 +6185,19 @@ module Aws::Batch
|
|
6180
6185
|
# for the existing resources of a job.
|
6181
6186
|
# @return [Array<String>]
|
6182
6187
|
#
|
6188
|
+
# @!attribute [rw] eks_properties_override
|
6189
|
+
# An object that contains the properties that you want to replace for
|
6190
|
+
# the existing Amazon EKS resources of a job.
|
6191
|
+
# @return [Types::EksPropertiesOverride]
|
6192
|
+
#
|
6183
6193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/NodePropertyOverride AWS API Documentation
|
6184
6194
|
#
|
6185
6195
|
class NodePropertyOverride < Struct.new(
|
6186
6196
|
:target_nodes,
|
6187
6197
|
:container_overrides,
|
6188
6198
|
:ecs_properties_override,
|
6189
|
-
:instance_types
|
6199
|
+
:instance_types,
|
6200
|
+
:eks_properties_override)
|
6190
6201
|
SENSITIVE = []
|
6191
6202
|
include Aws::Structure
|
6192
6203
|
end
|
@@ -6226,13 +6237,19 @@ module Aws::Batch
|
|
6226
6237
|
# for a multi-node parallel job.
|
6227
6238
|
# @return [Types::EcsProperties]
|
6228
6239
|
#
|
6240
|
+
# @!attribute [rw] eks_properties
|
6241
|
+
# This is an object that represents the properties of the node range
|
6242
|
+
# for a multi-node parallel job.
|
6243
|
+
# @return [Types::EksProperties]
|
6244
|
+
#
|
6229
6245
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/NodeRangeProperty AWS API Documentation
|
6230
6246
|
#
|
6231
6247
|
class NodeRangeProperty < Struct.new(
|
6232
6248
|
:target_nodes,
|
6233
6249
|
:container,
|
6234
6250
|
:instance_types,
|
6235
|
-
:ecs_properties
|
6251
|
+
:ecs_properties,
|
6252
|
+
:eks_properties)
|
6236
6253
|
SENSITIVE = []
|
6237
6254
|
include Aws::Structure
|
6238
6255
|
end
|
data/lib/aws-sdk-batch.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -688,6 +689,106 @@ module Aws
|
|
688
689
|
]?
|
689
690
|
},
|
690
691
|
]
|
692
|
+
}?,
|
693
|
+
eks_properties: {
|
694
|
+
pod_properties: {
|
695
|
+
service_account_name: ::String?,
|
696
|
+
host_network: bool?,
|
697
|
+
dns_policy: ::String?,
|
698
|
+
image_pull_secrets: Array[
|
699
|
+
{
|
700
|
+
name: ::String
|
701
|
+
},
|
702
|
+
]?,
|
703
|
+
containers: Array[
|
704
|
+
{
|
705
|
+
name: ::String?,
|
706
|
+
image: ::String,
|
707
|
+
image_pull_policy: ::String?,
|
708
|
+
command: Array[::String]?,
|
709
|
+
args: Array[::String]?,
|
710
|
+
env: Array[
|
711
|
+
{
|
712
|
+
name: ::String,
|
713
|
+
value: ::String?
|
714
|
+
},
|
715
|
+
]?,
|
716
|
+
resources: {
|
717
|
+
limits: Hash[::String, ::String]?,
|
718
|
+
requests: Hash[::String, ::String]?
|
719
|
+
}?,
|
720
|
+
volume_mounts: Array[
|
721
|
+
{
|
722
|
+
name: ::String?,
|
723
|
+
mount_path: ::String?,
|
724
|
+
read_only: bool?
|
725
|
+
},
|
726
|
+
]?,
|
727
|
+
security_context: {
|
728
|
+
run_as_user: ::Integer?,
|
729
|
+
run_as_group: ::Integer?,
|
730
|
+
privileged: bool?,
|
731
|
+
allow_privilege_escalation: bool?,
|
732
|
+
read_only_root_filesystem: bool?,
|
733
|
+
run_as_non_root: bool?
|
734
|
+
}?
|
735
|
+
},
|
736
|
+
]?,
|
737
|
+
init_containers: Array[
|
738
|
+
{
|
739
|
+
name: ::String?,
|
740
|
+
image: ::String,
|
741
|
+
image_pull_policy: ::String?,
|
742
|
+
command: Array[::String]?,
|
743
|
+
args: Array[::String]?,
|
744
|
+
env: Array[
|
745
|
+
{
|
746
|
+
name: ::String,
|
747
|
+
value: ::String?
|
748
|
+
},
|
749
|
+
]?,
|
750
|
+
resources: {
|
751
|
+
limits: Hash[::String, ::String]?,
|
752
|
+
requests: Hash[::String, ::String]?
|
753
|
+
}?,
|
754
|
+
volume_mounts: Array[
|
755
|
+
{
|
756
|
+
name: ::String?,
|
757
|
+
mount_path: ::String?,
|
758
|
+
read_only: bool?
|
759
|
+
},
|
760
|
+
]?,
|
761
|
+
security_context: {
|
762
|
+
run_as_user: ::Integer?,
|
763
|
+
run_as_group: ::Integer?,
|
764
|
+
privileged: bool?,
|
765
|
+
allow_privilege_escalation: bool?,
|
766
|
+
read_only_root_filesystem: bool?,
|
767
|
+
run_as_non_root: bool?
|
768
|
+
}?
|
769
|
+
},
|
770
|
+
]?,
|
771
|
+
volumes: Array[
|
772
|
+
{
|
773
|
+
name: ::String,
|
774
|
+
host_path: {
|
775
|
+
path: ::String?
|
776
|
+
}?,
|
777
|
+
empty_dir: {
|
778
|
+
medium: ::String?,
|
779
|
+
size_limit: ::String?
|
780
|
+
}?,
|
781
|
+
secret: {
|
782
|
+
secret_name: ::String,
|
783
|
+
optional: bool?
|
784
|
+
}?
|
785
|
+
},
|
786
|
+
]?,
|
787
|
+
metadata: {
|
788
|
+
labels: Hash[::String, ::String]?
|
789
|
+
}?,
|
790
|
+
share_process_namespace: bool?
|
791
|
+
}?
|
691
792
|
}?
|
692
793
|
},
|
693
794
|
]
|
@@ -1021,7 +1122,50 @@ module Aws
|
|
1021
1122
|
},
|
1022
1123
|
]?
|
1023
1124
|
}?,
|
1024
|
-
instance_types: Array[::String]
|
1125
|
+
instance_types: Array[::String]?,
|
1126
|
+
eks_properties_override: {
|
1127
|
+
pod_properties: {
|
1128
|
+
containers: Array[
|
1129
|
+
{
|
1130
|
+
name: ::String?,
|
1131
|
+
image: ::String?,
|
1132
|
+
command: Array[::String]?,
|
1133
|
+
args: Array[::String]?,
|
1134
|
+
env: Array[
|
1135
|
+
{
|
1136
|
+
name: ::String,
|
1137
|
+
value: ::String?
|
1138
|
+
},
|
1139
|
+
]?,
|
1140
|
+
resources: {
|
1141
|
+
limits: Hash[::String, ::String]?,
|
1142
|
+
requests: Hash[::String, ::String]?
|
1143
|
+
}?
|
1144
|
+
},
|
1145
|
+
]?,
|
1146
|
+
init_containers: Array[
|
1147
|
+
{
|
1148
|
+
name: ::String?,
|
1149
|
+
image: ::String?,
|
1150
|
+
command: Array[::String]?,
|
1151
|
+
args: Array[::String]?,
|
1152
|
+
env: Array[
|
1153
|
+
{
|
1154
|
+
name: ::String,
|
1155
|
+
value: ::String?
|
1156
|
+
},
|
1157
|
+
]?,
|
1158
|
+
resources: {
|
1159
|
+
limits: Hash[::String, ::String]?,
|
1160
|
+
requests: Hash[::String, ::String]?
|
1161
|
+
}?
|
1162
|
+
},
|
1163
|
+
]?,
|
1164
|
+
metadata: {
|
1165
|
+
labels: Hash[::String, ::String]?
|
1166
|
+
}?
|
1167
|
+
}?
|
1168
|
+
}?
|
1025
1169
|
},
|
1026
1170
|
]?
|
1027
1171
|
},
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -443,6 +443,7 @@ module Aws::Batch
|
|
443
443
|
class EksAttemptDetail
|
444
444
|
attr_accessor containers: ::Array[Types::EksAttemptContainerDetail]
|
445
445
|
attr_accessor init_containers: ::Array[Types::EksAttemptContainerDetail]
|
446
|
+
attr_accessor eks_cluster_arn: ::String
|
446
447
|
attr_accessor pod_name: ::String
|
447
448
|
attr_accessor node_name: ::String
|
448
449
|
attr_accessor started_at: ::Integer
|
@@ -889,6 +890,7 @@ module Aws::Batch
|
|
889
890
|
attr_accessor container_overrides: Types::ContainerOverrides
|
890
891
|
attr_accessor ecs_properties_override: Types::EcsPropertiesOverride
|
891
892
|
attr_accessor instance_types: ::Array[::String]
|
893
|
+
attr_accessor eks_properties_override: Types::EksPropertiesOverride
|
892
894
|
SENSITIVE: []
|
893
895
|
end
|
894
896
|
|
@@ -897,6 +899,7 @@ module Aws::Batch
|
|
897
899
|
attr_accessor container: Types::ContainerProperties
|
898
900
|
attr_accessor instance_types: ::Array[::String]
|
899
901
|
attr_accessor ecs_properties: Types::EcsProperties
|
902
|
+
attr_accessor eks_properties: Types::EksProperties
|
900
903
|
SENSITIVE: []
|
901
904
|
end
|
902
905
|
|
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.94.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: 2024-
|
11
|
+
date: 2024-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS Batch. This gem is part of the AWS SDK
|
48
48
|
for Ruby.
|
49
49
|
email:
|