aws-sdk-batch 1.27.0 → 1.28.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74f1ad4c961b4542e95cc22cd4b8ea94d16cdf5d
4
- data.tar.gz: 7dec2b7045ac10d9a01b3c80b9199170be8f6395
3
+ metadata.gz: 5d0a39d1cfabe8956da58e469e52e9c1327a7591
4
+ data.tar.gz: eabc40b01e69bfb224d933f355051cbb3926bec9
5
5
  SHA512:
6
- metadata.gz: 1cd314e5b33797e40fcb68dc3b0a858f0083425895337e1e437def3dafa378857780e00793a1bcd4a679f0b2c922f5f3cf9f7c74151b1a39f0b89e8fd5d78f00
7
- data.tar.gz: 6a302ba3dfda466117064e30d35293eae8b94e74d3ddf4f2289abf2799089dc023466b02e78ca682aaf5c8c8a77550f59b06c426bc0006235dc9a08d2f2c1fde
6
+ metadata.gz: 4e1d0603531d7f0d654622d1d1dfafa7fa3a83c7b23e1c7535fb27d5697da1cd6063b33b1d9d46e27b118fdeda2cc82b541597f439aed7933674cf17d79e7989
7
+ data.tar.gz: 889e039fe10868b9fa381a53c80040da4005f3139823aac39f14d4adf890767b9adf90286ba2184f6d99ff4dc19da63f4cd47055cd30c8110de2440f069c89a6
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-batch/customizations'
42
42
  # @service
43
43
  module Aws::Batch
44
44
 
45
- GEM_VERSION = '1.27.0'
45
+ GEM_VERSION = '1.28.0'
46
46
 
47
47
  end
@@ -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 either a
1785
- # `name:revision` or the Amazon Resource Name (ARN) for the job
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.27.0'
2146
+ context[:gem_version] = '1.28.0'
2145
2147
  Seahorse::Client::Request.new(handlers, context)
2146
2148
  end
2147
2149
 
@@ -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
- # `BEST_FIT_PROGRESSIVE` will select an additional instance type that
347
- # is large enough to meet the requirements of the jobs in the queue,
348
- # with a preference for an instance type with a lower cost.
349
- # `SPOT_CAPACITY_OPTIMIZED` is only available for Spot Instance
350
- # compute resources and will select an additional instance type that
351
- # is large enough to meet the requirements of the jobs in the queue,
352
- # with a preference for an instance type that is less likely to be
353
- # interrupted.
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. For more information, see
463
- # [Amazon EC2 Spot Fleet Role][1] in the *AWS Batch User Guide*.
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 names or IDs on which this job depends.
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 either a
2948
- # `name:revision` or the Amazon Resource Name (ARN) for the job
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.27.0
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: 2019-10-23 00:00:00.000000000 Z
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