aws-sdk-neptunedata 1.6.0 → 1.8.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: 65e4890ae5baf062d23e748905296638814a435e3e17c43f03fed9d9db716263
4
- data.tar.gz: '096239e2fd7ac2628a49cd7f8cadf4ecd43fea8983e9a905dbf05b940fb529cd'
3
+ metadata.gz: d7473638ef2c6c9cff4f054d3ef8959c0928bce0ca5f6c1220888838428b29e8
4
+ data.tar.gz: c25cbb57f9230dd2a3cc1afe0af50dc5df332357c79d8af897b6cd579dd771de
5
5
  SHA512:
6
- metadata.gz: 998928e4a027acff9cd62760a6cebbcb75adad1ead80f7de96d233e8b4a899df8160ab8d00accae47956f7120e09f80e770b3bcbd7ea32c9577b61dafd0c85e6
7
- data.tar.gz: 95ec1aa33a526f11c00e29240c87c56f87158997e43e0809e95a1a1b0537f52511ef47cbf63fc90c09f32ab865fef7e44e6c41674d6133fdf8f06c82cc6edd9a
6
+ metadata.gz: 3fd9abbb78d80d78c0d03e78ae81cfb43f1ebc36e2206239792d55f28f832d748ac7f45873f83978345f5c4ee19742fc4ada01ec84376f3db1fb3fcb911d5053
7
+ data.tar.gz: 94a145a4a1ea8e511a068c2cefb1c2d627a4c7ec536a010881ed9347b2078785dad6b548da7f454e17ef6348c2cd13ce192cacb92d8ea0570e4e4bec874faad1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.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.7.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.6.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.8.0
@@ -3334,7 +3334,7 @@ module Aws::Neptunedata
3334
3334
  params: params,
3335
3335
  config: config)
3336
3336
  context[:gem_name] = 'aws-sdk-neptunedata'
3337
- context[:gem_version] = '1.6.0'
3337
+ context[:gem_version] = '1.8.0'
3338
3338
  Seahorse::Client::Request.new(handlers, context)
3339
3339
  end
3340
3340
 
@@ -14,6 +14,7 @@ module Aws::Neptunedata
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Neptunedata::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::Neptunedata
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-neptunedata/customizations'
52
52
  # @!group service
53
53
  module Aws::Neptunedata
54
54
 
55
- GEM_VERSION = '1.6.0'
55
+ GEM_VERSION = '1.8.0'
56
56
 
57
57
  end