aws-sdk-batch 1.27.0 → 1.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-batch.rb +1 -1
- data/lib/aws-sdk-batch/client.rb +7 -5
- data/lib/aws-sdk-batch/types.rb +21 -15
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d0a39d1cfabe8956da58e469e52e9c1327a7591
|
4
|
+
data.tar.gz: eabc40b01e69bfb224d933f355051cbb3926bec9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e1d0603531d7f0d654622d1d1dfafa7fa3a83c7b23e1c7535fb27d5697da1cd6063b33b1d9d46e27b118fdeda2cc82b541597f439aed7933674cf17d79e7989
|
7
|
+
data.tar.gz: 889e039fe10868b9fa381a53c80040da4005f3139823aac39f14d4adf890767b9adf90286ba2184f6d99ff4dc19da63f4cd47055cd30c8110de2440f069c89a6
|
data/lib/aws-sdk-batch.rb
CHANGED
data/lib/aws-sdk-batch/client.rb
CHANGED
@@ -734,7 +734,8 @@ module Aws::Batch
|
|
734
734
|
req.send_request(options)
|
735
735
|
end
|
736
736
|
|
737
|
-
# Deregisters an AWS Batch job definition.
|
737
|
+
# Deregisters an AWS Batch job definition. Job definitions will be
|
738
|
+
# permanently deleted after 180 days.
|
738
739
|
#
|
739
740
|
# @option params [required, String] :job_definition
|
740
741
|
# The name and revision (`name:revision`) or full Amazon Resource Name
|
@@ -1781,9 +1782,10 @@ module Aws::Batch
|
|
1781
1782
|
# child of each dependency to complete before it can begin.
|
1782
1783
|
#
|
1783
1784
|
# @option params [required, String] :job_definition
|
1784
|
-
# The job definition used by this job. This value can be
|
1785
|
-
# `name:revision
|
1786
|
-
# definition.
|
1785
|
+
# The job definition used by this job. This value can be one of `name`,
|
1786
|
+
# `name:revision`, or the Amazon Resource Name (ARN) for the job
|
1787
|
+
# definition. If `name` is specified without a revision then the latest
|
1788
|
+
# active revision is used.
|
1787
1789
|
#
|
1788
1790
|
# @option params [Hash<String,String>] :parameters
|
1789
1791
|
# Additional parameters passed to the job that replace parameter
|
@@ -2141,7 +2143,7 @@ module Aws::Batch
|
|
2141
2143
|
params: params,
|
2142
2144
|
config: config)
|
2143
2145
|
context[:gem_name] = 'aws-sdk-batch'
|
2144
|
-
context[:gem_version] = '1.
|
2146
|
+
context[:gem_version] = '1.28.0'
|
2145
2147
|
Seahorse::Client::Request.new(handlers, context)
|
2146
2148
|
end
|
2147
2149
|
|
data/lib/aws-sdk-batch/types.rb
CHANGED
@@ -342,19 +342,22 @@ module Aws::Batch
|
|
342
342
|
# or [Amazon EC2 service limits][1]. If this is not specified, the
|
343
343
|
# default is `BEST_FIT`, which will use only the best fitting instance
|
344
344
|
# type, waiting for additional capacity if it's not available. This
|
345
|
-
# allocation strategy keeps costs lower but can limit scaling.
|
346
|
-
# `
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
345
|
+
# allocation strategy keeps costs lower but can limit scaling. If you
|
346
|
+
# are using Spot Fleets with `BEST_FIT` then the Spot Fleet IAM Role
|
347
|
+
# must be specified. `BEST_FIT_PROGRESSIVE` will select additional
|
348
|
+
# instance types that are large enough to meet the requirements of the
|
349
|
+
# jobs in the queue, with a preference for instance types with a lower
|
350
|
+
# cost per vCPU. `SPOT_CAPACITY_OPTIMIZED` is only available for Spot
|
351
|
+
# Instance compute resources and will select additional instance types
|
352
|
+
# that are large enough to meet the requirements of the jobs in the
|
353
|
+
# queue, with a preference for instance types that are less likely to
|
354
|
+
# be interrupted. For more information, see [Allocation Strategies][2]
|
355
|
+
# in the *AWS Batch User Guide*.
|
354
356
|
#
|
355
357
|
#
|
356
358
|
#
|
357
359
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-resource-limits.html
|
360
|
+
# [2]: https://docs.aws.amazon.com/batch/latest/userguide/allocation-strategies.html
|
358
361
|
# @return [String]
|
359
362
|
#
|
360
363
|
# @!attribute [rw] minv_cpus
|
@@ -459,8 +462,10 @@ module Aws::Batch
|
|
459
462
|
#
|
460
463
|
# @!attribute [rw] spot_iam_fleet_role
|
461
464
|
# The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role
|
462
|
-
# applied to a `SPOT` compute environment.
|
463
|
-
#
|
465
|
+
# applied to a `SPOT` compute environment. This role is required if
|
466
|
+
# the allocation strategy set to `BEST_FIT` or if the allocation
|
467
|
+
# strategy is not specified. For more information, see [Amazon EC2
|
468
|
+
# Spot Fleet Role][1] in the *AWS Batch User Guide*.
|
464
469
|
#
|
465
470
|
#
|
466
471
|
#
|
@@ -1762,7 +1767,7 @@ module Aws::Batch
|
|
1762
1767
|
# @return [Integer]
|
1763
1768
|
#
|
1764
1769
|
# @!attribute [rw] depends_on
|
1765
|
-
# A list of job
|
1770
|
+
# A list of job IDs on which this job depends.
|
1766
1771
|
# @return [Array<Types::JobDependency>]
|
1767
1772
|
#
|
1768
1773
|
# @!attribute [rw] job_definition
|
@@ -2944,9 +2949,10 @@ module Aws::Batch
|
|
2944
2949
|
# @return [Array<Types::JobDependency>]
|
2945
2950
|
#
|
2946
2951
|
# @!attribute [rw] job_definition
|
2947
|
-
# The job definition used by this job. This value can be
|
2948
|
-
# `name:revision
|
2949
|
-
# definition.
|
2952
|
+
# The job definition used by this job. This value can be one of
|
2953
|
+
# `name`, `name:revision`, or the Amazon Resource Name (ARN) for the
|
2954
|
+
# job definition. If `name` is specified without a revision then the
|
2955
|
+
# latest active revision is used.
|
2950
2956
|
# @return [String]
|
2951
2957
|
#
|
2952
2958
|
# @!attribute [rw] parameters
|
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.28.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:
|
11
|
+
date: 2020-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|