aws-sdk-batch 1.119.0 → 1.121.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-batch/client.rb +10 -13
- data/lib/aws-sdk-batch/types.rb +10 -10
- 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: e977eee222dd2d5c0845c688474e96555f2961dfb41f3a535a310fc1930bdd27
|
4
|
+
data.tar.gz: 948bd98edf17eefd71203104e05b81fef51f5ed0391ce361fd6f1b491ebec0cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efbd0274b260212c76474f806c0c1af22acf94a78482675aaac4eb642e646135b5640b655de4583c02a55dc53701265d4eae755363506fd27106e5408ed98cec
|
7
|
+
data.tar.gz: b93f08569d39b50864a361b81d35be591d199135d2a5100d54c7bdf1ea57a13289572c3fa0d06f8521c65d6b2797eb13be91427a6653c898f52594bbfdd8fc9b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.121.0 (2025-08-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This feature allows customers to use AWS Batch with Linux with ARM64 CPU Architecture with Fargate Spot compute support.
|
8
|
+
|
9
|
+
1.120.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.119.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.121.0
|
data/lib/aws-sdk-batch/client.rb
CHANGED
@@ -95,8 +95,8 @@ module Aws::Batch
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::Batch
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::Batch
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -377,8 +374,8 @@ module Aws::Batch
|
|
377
374
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
378
375
|
#
|
379
376
|
# @option options [Aws::TokenProvider] :token_provider
|
380
|
-
# Your Bearer token used for authentication. This can be
|
381
|
-
# following classes:
|
377
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
378
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
382
379
|
#
|
383
380
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
384
381
|
# tokens.
|
@@ -6178,7 +6175,7 @@ module Aws::Batch
|
|
6178
6175
|
tracer: tracer
|
6179
6176
|
)
|
6180
6177
|
context[:gem_name] = 'aws-sdk-batch'
|
6181
|
-
context[:gem_version] = '1.
|
6178
|
+
context[:gem_version] = '1.121.0'
|
6182
6179
|
Seahorse::Client::Request.new(handlers, context)
|
6183
6180
|
end
|
6184
6181
|
|
data/lib/aws-sdk-batch/types.rb
CHANGED
@@ -8013,11 +8013,11 @@ module Aws::Batch
|
|
8013
8013
|
#
|
8014
8014
|
# </note>
|
8015
8015
|
#
|
8016
|
-
# <note markdown="1"> Fargate Spot is not supported
|
8017
|
-
#
|
8018
|
-
#
|
8019
|
-
#
|
8020
|
-
#
|
8016
|
+
# <note markdown="1"> Fargate Spot is not supported on Windows-based containers on
|
8017
|
+
# Fargate. A job queue will be blocked if a Windows job is submitted
|
8018
|
+
# to a job queue with only Fargate Spot compute environments. However,
|
8019
|
+
# you can attach both `FARGATE` and `FARGATE_SPOT` compute
|
8020
|
+
# environments to the same job queue.
|
8021
8021
|
#
|
8022
8022
|
# </note>
|
8023
8023
|
# @return [String]
|
@@ -8030,11 +8030,11 @@ module Aws::Batch
|
|
8030
8030
|
#
|
8031
8031
|
# </note>
|
8032
8032
|
#
|
8033
|
-
# <note markdown="1"> Fargate Spot is not supported
|
8034
|
-
#
|
8035
|
-
#
|
8036
|
-
#
|
8037
|
-
#
|
8033
|
+
# <note markdown="1"> Fargate Spot is not supported on Windows-based containers on
|
8034
|
+
# Fargate. A job queue will be blocked if a Windows job is submitted
|
8035
|
+
# to a job queue with only Fargate Spot compute environments. However,
|
8036
|
+
# you can attach both `FARGATE` and `FARGATE_SPOT` compute
|
8037
|
+
# environments to the same job queue.
|
8038
8038
|
#
|
8039
8039
|
# </note>
|
8040
8040
|
# @return [String]
|
data/lib/aws-sdk-batch.rb
CHANGED