aws-sdk-gluedatabrew 1.33.0 → 1.35.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: 1cfb22043cc318b15377e99fde51b7cb624a8a9446102e28943009bccd75f843
4
- data.tar.gz: ecbaab1ed3af2558f3aec12f7cf75b874373fd3956b7cb556605eebf11218e57
3
+ metadata.gz: a867cf017718c53a0484b5248acafcc46dbeaf38cbf1f7bb15b3cb499530602c
4
+ data.tar.gz: 9ef9add2e64f3ba0624eabf487a973b1f3a6aa2464deae6016fa0613d5e3cf42
5
5
  SHA512:
6
- metadata.gz: ee6136c3d010727194a0af8a9e5ebd67c9e9437653c3a5a81be71e3c9f215b840e4aab30b33744c96f6f897cff0645706f3f7ae4088242856a788d1b1080932c
7
- data.tar.gz: 59a428944c4f911a8d744b379d6f2364b8e284112ff27d4a881554740d92b1e2c4c501a48b130bb0956c27e0b89ced28b704f3e0cb192b1fc96e96b86feacf01
6
+ metadata.gz: be8373d5e1f5196182d8fa754180faf99aedb85f20fd8ec6f2e223a67a404a548d8abcd5d073b5697ef45841f1b95c20bd0366eb6b25c21134c281e575cc7f99
7
+ data.tar.gz: f5eb8b5ed59619467db8174a245a95344e5110d8fa2a94c914facfb92fc4d639520e65f29d9dcead08916110d171129f30a654ca549ac5bf76393daf6fb6fb93
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.35.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.34.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.33.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.35.0
@@ -3354,7 +3354,7 @@ module Aws::GlueDataBrew
3354
3354
  params: params,
3355
3355
  config: config)
3356
3356
  context[:gem_name] = 'aws-sdk-gluedatabrew'
3357
- context[:gem_version] = '1.33.0'
3357
+ context[:gem_version] = '1.35.0'
3358
3358
  Seahorse::Client::Request.new(handlers, context)
3359
3359
  end
3360
3360
 
@@ -14,6 +14,7 @@ module Aws::GlueDataBrew
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::GlueDataBrew::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::GlueDataBrew
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
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-gluedatabrew/customizations'
52
52
  # @!group service
53
53
  module Aws::GlueDataBrew
54
54
 
55
- GEM_VERSION = '1.33.0'
55
+ GEM_VERSION = '1.35.0'
56
56
 
57
57
  end