aws-sdk-batch 1.144.0 → 1.145.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: 6e1769208c8e8bc916b45290e42bebf9e59ccec70353136bc3d4698c1a711470
4
- data.tar.gz: 46e8f337808ac430dcdcb7a2d3cfb8a5dbe0b649e9f0d9d573e9c59842886dcb
3
+ metadata.gz: dea26924b55ce9813129cf5c4ef1a6494263b41104c662ed4711255307c65157
4
+ data.tar.gz: '0808491d3d03e0506a60377338c4762ae6748b2be81958a16f0b38003eaae316'
5
5
  SHA512:
6
- metadata.gz: 1563f29b6bcc2f97537573a881169c0684ad8566661459dc88b2074e7b436c4738c8d75248477d0c21488dc40698e68dd18835b8838b71f5fdb6ef1ae1e4c651
7
- data.tar.gz: 2990fa9c0bdcdfcdb75b902c6bd2d64d07e037715e41e336a6786763ceb5a248278004626ea1166eeb74055b1bba23aa144d91851fc9df0f4fb1a827043c4bc4
6
+ metadata.gz: 91274da26408757b9e93cbed14c102698b832d541af7bc1f16c8b32a8cdcfbf6beda73da61cd7823a94356846ffa3e6fd1d441c2d9788b3e6b5512c267f2061e
7
+ data.tar.gz: a850e9bf6408820b7214cdaab6f973216469624a4f7ee352123dbcc1c5d5975bb94ac6fa1160b21dad4db534243b2c5b509ecec451d47063d1fda3a3e73066b8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.145.0 (2026-05-26)
5
+ ------------------
6
+
7
+ * Feature - Increase the maximum value of jobExecutionTimeoutMinutes to support longer job timeouts during compute environment infrastructure updates.
8
+
4
9
  1.144.0 (2026-05-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.144.0
1
+ 1.145.0
@@ -6664,7 +6664,7 @@ module Aws::Batch
6664
6664
  tracer: tracer
6665
6665
  )
6666
6666
  context[:gem_name] = 'aws-sdk-batch'
6667
- context[:gem_version] = '1.144.0'
6667
+ context[:gem_version] = '1.145.0'
6668
6668
  Seahorse::Client::Request.new(handlers, context)
6669
6669
  end
6670
6670
 
@@ -655,10 +655,6 @@ module Aws::Batch
655
655
  # Batch can select the instance type for you if you choose one of the
656
656
  # following:
657
657
  #
658
- # * `optimal` to select instance types (from the `c4`, `m4`, `r4`,
659
- # `c5`, `m5`, and `r5` instance families) that match the demand of
660
- # your job queues.
661
- #
662
658
  # * `default_x86_64` to choose x86 based instance types (from the
663
659
  # `m6i`, `c6i`, `r6i`, and `c7i` instance families) that matches the
664
660
  # resource demands of the job queue.
@@ -667,14 +663,9 @@ module Aws::Batch
667
663
  # `m6g`, `c6g`, `r6g`, and `c7g` instance families) that matches the
668
664
  # resource demands of the job queue.
669
665
  #
670
- # <note markdown="1"> Starting on 11/01/2025 the behavior of `optimal` is going to be
671
- # changed to match `default_x86_64`. During the change your instance
672
- # families could be updated to a newer generation. You do not need to
673
- # perform any actions for the upgrade to happen. For more information
674
- # about change, see [Optimal instance type configuration to receive
675
- # automatic instance family updates][1].
676
- #
677
- # </note>
666
+ # * `optimal` Semantically equivalent to `default_x86_64`, see
667
+ # [Optimal instance type configuration to receive automatic instance
668
+ # family updates][1] for details.
678
669
  #
679
670
  # <note markdown="1"> Instance family availability varies by Amazon Web Services Region.
680
671
  # For example, some Amazon Web Services Regions may not have any
@@ -11282,7 +11273,16 @@ module Aws::Batch
11282
11273
  #
11283
11274
  # @!attribute [rw] job_execution_timeout_minutes
11284
11275
  # Specifies the job timeout (in minutes) when the compute environment
11285
- # infrastructure is updated. The default value is 30.
11276
+ # infrastructure is updated. The default value is 30. The maximum
11277
+ # value is 7200.
11278
+ #
11279
+ # <note markdown="1"> Increasing `jobExecutionTimeoutMinutes` during infrastructure
11280
+ # updates delays the replacement of instances with new instances that
11281
+ # include updates such as security patches, but provides more time for
11282
+ # jobs to execute. Consider the security implications of this tradeoff
11283
+ # when setting timeout values.
11284
+ #
11285
+ # </note>
11286
11286
  # @return [Integer]
11287
11287
  #
11288
11288
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/UpdatePolicy AWS API Documentation
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.144.0'
57
+ GEM_VERSION = '1.145.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.144.0
4
+ version: 1.145.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services