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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5ffe21c6509fd6312593582f45f08e57c46c81e5946bccab4f88b234106070d
4
- data.tar.gz: 25a30854e54949c8b359444ff4cac760e6dec5a3e085e48ea86cc34d89db8aa5
3
+ metadata.gz: 6e1769208c8e8bc916b45290e42bebf9e59ccec70353136bc3d4698c1a711470
4
+ data.tar.gz: 46e8f337808ac430dcdcb7a2d3cfb8a5dbe0b649e9f0d9d573e9c59842886dcb
5
5
  SHA512:
6
- metadata.gz: 739ef10df2eafadfdcd36724f2d8f9b4227ff1ee823d910f4e21bc47cf092aee7cc89769b7d74eb588928a91c9137e42a2d017ae7af48c2ad80c4528eeb32705
7
- data.tar.gz: 39d99e535c9c9fb77bed99dbb81b67f4160aac3a196ff02a4a03d08aa91e8b3cfb533fcb79c9e72c2ed1cd6dbbb97cc8f35157ea38b272e78526f8fafef824dd
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.143.0
1
+ 1.144.0
@@ -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. This is default value if
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` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
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. If the state is `ENABLED`, then
598
- # the compute environment accepts jobs from a queue and can scale out
599
- # automatically based on queues.
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.143.0'
6667
+ context[:gem_version] = '1.144.0'
6664
6668
  Seahorse::Client::Request.new(handlers, context)
6665
6669
  end
6666
6670
 
@@ -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. If the state is `ENABLED`,
2398
- # then the compute environment accepts jobs from a queue and can scale
2399
- # out automatically based on queues.
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
@@ -54,7 +54,7 @@ module Aws::Batch
54
54
  autoload :EndpointProvider, 'aws-sdk-batch/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-batch/endpoints'
56
56
 
57
- GEM_VERSION = '1.143.0'
57
+ GEM_VERSION = '1.144.0'
58
58
 
59
59
  end
60
60
 
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.143.0
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.247.0
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.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement