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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-batch/client.rb +1 -1
- data/lib/aws-sdk-batch/types.rb +13 -13
- data/lib/aws-sdk-batch.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dea26924b55ce9813129cf5c4ef1a6494263b41104c662ed4711255307c65157
|
|
4
|
+
data.tar.gz: '0808491d3d03e0506a60377338c4762ae6748b2be81958a16f0b38003eaae316'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
1
|
+
1.145.0
|
data/lib/aws-sdk-batch/client.rb
CHANGED
data/lib/aws-sdk-batch/types.rb
CHANGED
|
@@ -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
|
-
#
|
|
671
|
-
#
|
|
672
|
-
#
|
|
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