aws-sdk-batch 1.78.0 → 1.80.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ecd0ff8fb7f88c4b1a6a7f6ac9ddcd432704da60c1cc8725dda274b6e7be7dbf
4
- data.tar.gz: e9c4c1ab1ecd032a537bd3f96f070b6ba385389fa718d23f0c063c892912c450
3
+ metadata.gz: 02ff3a4f1bfb1d3be1f5e4e0d6e07bb216de6540dd51735962e90e1b4316c0ec
4
+ data.tar.gz: 0c3759a732b4d16a10d078c8cc736eeb18db622b44fa82115c32a823572d436f
5
5
  SHA512:
6
- metadata.gz: 6efea6d281767ed699d39f23d3b4555c63d557551f77481e1a513e8b3c5eabf9eb7cb76b5ccdad4e2a5ad9f477550355e15540e8333db30521d922a17595cfc1
7
- data.tar.gz: 675e577d7b93e595f8f11b32096fc0ce8fb8ba940f493efc386449f9c793b61fa8ffb655ec6c2e86212c162e63d8449308dc29f68d9c1425829aa190d1a4fd3d
6
+ metadata.gz: 59e56f68b42117100957efa3f2001b7d42a01252697cc7b518f27303226ecd0db1ea5e549918026dab709ac6c10f43273c393cd1becdc6af828efea9d8b0ff01
7
+ data.tar.gz: 2acb01ea76367a45bdf38b9ad45fe44cd4b58bb3dde28752c1a345b419ad1a2b577cf44aa337ee61f173b27a47be2c0baa3164b78eb754ab3527d1cda897b3ab
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.79.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.78.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.80.0
@@ -3710,7 +3710,7 @@ module Aws::Batch
3710
3710
  params: params,
3711
3711
  config: config)
3712
3712
  context[:gem_name] = 'aws-sdk-batch'
3713
- context[:gem_version] = '1.78.0'
3713
+ context[:gem_version] = '1.80.0'
3714
3714
  Seahorse::Client::Request.new(handlers, context)
3715
3715
  end
3716
3716
 
@@ -14,6 +14,7 @@ module Aws::Batch
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Batch::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -25,16 +26,17 @@ module Aws::Batch
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
data/lib/aws-sdk-batch.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-batch/customizations'
52
52
  # @!group service
53
53
  module Aws::Batch
54
54
 
55
- GEM_VERSION = '1.78.0'
55
+ GEM_VERSION = '1.80.0'
56
56
 
57
57
  end