aws-sdk-batch 1.143.0 → 1.144.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-batch/client.rb +15 -11
- data/lib/aws-sdk-batch/types.rb +15 -3
- data/lib/aws-sdk-batch.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e1769208c8e8bc916b45290e42bebf9e59ccec70353136bc3d4698c1a711470
|
|
4
|
+
data.tar.gz: 46e8f337808ac430dcdcb7a2d3cfb8a5dbe0b649e9f0d9d573e9c59842886dcb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1563f29b6bcc2f97537573a881169c0684ad8566661459dc88b2074e7b436c4738c8d75248477d0c21488dc40698e68dd18835b8838b71f5fdb6ef1ae1e4c651
|
|
7
|
+
data.tar.gz: 2990fa9c0bdcdfcdb75b902c6bd2d64d07e037715e41e336a6786763ceb5a248278004626ea1166eeb74055b1bba23aa144d91851fc9df0f4fb1a827043c4bc4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.144.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Clarified CreateComputeEnvironment parameter requirements - serviceRole is required for UNMANAGED compute environments, allocationStrategy is required for EKS compute environments, and compute environments must be created in the ENABLED state.
|
|
8
|
+
|
|
4
9
|
1.143.0 (2026-05-19)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.144.0
|
data/lib/aws-sdk-batch/client.rb
CHANGED
|
@@ -199,7 +199,7 @@ module Aws::Batch
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::Batch
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -594,9 +592,11 @@ module Aws::Batch
|
|
|
594
592
|
# [1]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html
|
|
595
593
|
#
|
|
596
594
|
# @option params [String] :state
|
|
597
|
-
# The state of the compute environment.
|
|
598
|
-
#
|
|
599
|
-
#
|
|
595
|
+
# The state of the compute environment. A compute environment must be
|
|
596
|
+
# created in the `ENABLED` state.
|
|
597
|
+
#
|
|
598
|
+
# If the state is `ENABLED`, then the compute environment accepts jobs
|
|
599
|
+
# from a queue and can scale out automatically based on queues.
|
|
600
600
|
#
|
|
601
601
|
# If the state is `ENABLED`, then the Batch scheduler can attempt to
|
|
602
602
|
# place jobs from an associated job queue on the compute resources
|
|
@@ -657,6 +657,10 @@ module Aws::Batch
|
|
|
657
657
|
# service attempts to create the Batch service-linked role in your
|
|
658
658
|
# account.
|
|
659
659
|
#
|
|
660
|
+
# This automatic service-linked role creation only applies to `MANAGED`
|
|
661
|
+
# compute environments. For `UNMANAGED` compute environments, you must
|
|
662
|
+
# explicitly specify a `serviceRole`.
|
|
663
|
+
#
|
|
660
664
|
# If your specified role has a path other than `/`, then you must
|
|
661
665
|
# specify either the full role ARN (recommended) or prefix the role name
|
|
662
666
|
# with the path. For example, if a role with the name `bar` has a path
|
|
@@ -6660,7 +6664,7 @@ module Aws::Batch
|
|
|
6660
6664
|
tracer: tracer
|
|
6661
6665
|
)
|
|
6662
6666
|
context[:gem_name] = 'aws-sdk-batch'
|
|
6663
|
-
context[:gem_version] = '1.
|
|
6667
|
+
context[:gem_version] = '1.144.0'
|
|
6664
6668
|
Seahorse::Client::Request.new(handlers, context)
|
|
6665
6669
|
end
|
|
6666
6670
|
|
data/lib/aws-sdk-batch/types.rb
CHANGED
|
@@ -552,6 +552,12 @@ module Aws::Batch
|
|
|
552
552
|
#
|
|
553
553
|
# </note>
|
|
554
554
|
#
|
|
555
|
+
# <note markdown="1"> This parameter is required for Amazon EKS compute environments. For
|
|
556
|
+
# Amazon ECS compute environments, if this parameter isn't specified,
|
|
557
|
+
# the `BEST_FIT` allocation strategy is used by default.
|
|
558
|
+
#
|
|
559
|
+
# </note>
|
|
560
|
+
#
|
|
555
561
|
# BEST\_FIT (default)
|
|
556
562
|
#
|
|
557
563
|
# : Batch selects an instance type that best fits the needs of the
|
|
@@ -2394,9 +2400,11 @@ module Aws::Batch
|
|
|
2394
2400
|
# @return [String]
|
|
2395
2401
|
#
|
|
2396
2402
|
# @!attribute [rw] state
|
|
2397
|
-
# The state of the compute environment.
|
|
2398
|
-
#
|
|
2399
|
-
#
|
|
2403
|
+
# The state of the compute environment. A compute environment must be
|
|
2404
|
+
# created in the `ENABLED` state.
|
|
2405
|
+
#
|
|
2406
|
+
# If the state is `ENABLED`, then the compute environment accepts jobs
|
|
2407
|
+
# from a queue and can scale out automatically based on queues.
|
|
2400
2408
|
#
|
|
2401
2409
|
# If the state is `ENABLED`, then the Batch scheduler can attempt to
|
|
2402
2410
|
# place jobs from an associated job queue on the compute resources
|
|
@@ -2460,6 +2468,10 @@ module Aws::Batch
|
|
|
2460
2468
|
# service attempts to create the Batch service-linked role in your
|
|
2461
2469
|
# account.
|
|
2462
2470
|
#
|
|
2471
|
+
# This automatic service-linked role creation only applies to
|
|
2472
|
+
# `MANAGED` compute environments. For `UNMANAGED` compute
|
|
2473
|
+
# environments, you must explicitly specify a `serviceRole`.
|
|
2474
|
+
#
|
|
2463
2475
|
# If your specified role has a path other than `/`, then you must
|
|
2464
2476
|
# specify either the full role ARN (recommended) or prefix the role
|
|
2465
2477
|
# name with the path. For example, if a role with the name `bar` has a
|
data/lib/aws-sdk-batch.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.144.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|