aws-sdk-greengrass 1.61.0 → 1.63.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: 0ac2121d73767eeeac572aa777b27147fe58e74428f2154ece3494451fe981aa
4
- data.tar.gz: 1a7448b9a9ed071090d9493b561496cec6ad8c5c17d4593341c206163bbe933b
3
+ metadata.gz: ba03ed0aeb6824aea601f65ba64a4b741c6013bac2d83742f0fd631732759731
4
+ data.tar.gz: 0cb976e37a4cd88acce101b4b377f9c9aeda73033bace93ca247fec1a81a5cf4
5
5
  SHA512:
6
- metadata.gz: dc873a72222c8845196090b88cd58bf00471988696ecb01611b3c2dd95de0f45730700febc53ddd64bb9583e5eb6ecc87be14e9bb68932be88e5331d30168650
7
- data.tar.gz: 806a9937f8f9fe63fcb5e14b58eb0eaaa90e4408049ea6b52e80a3478c6490277debd6d05f3d3d4765d931356da9d536ec9cffacc38f29902af0d8da0ca7ebdc
6
+ metadata.gz: b47f2ad226e0b8a78ea02ee4bf507f239d8b4b8e7c202ac3bfc457e4a63eb7bad2844b35b2146e441c8fdb9c7ba2c575399e7c3d36363d1db059392af1ab9ff2
7
+ data.tar.gz: 72cdba9aa6c2aa9400ad65f8e415ac01fd99066415be989f6d80f3f50bf6f4d4632cbc78b3136651e9a4ce703d4c1e77c731fb13f1d048df1de36568ab0984e5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.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.62.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.61.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.63.0
@@ -4158,7 +4158,7 @@ module Aws::Greengrass
4158
4158
  params: params,
4159
4159
  config: config)
4160
4160
  context[:gem_name] = 'aws-sdk-greengrass'
4161
- context[:gem_version] = '1.61.0'
4161
+ context[:gem_version] = '1.63.0'
4162
4162
  Seahorse::Client::Request.new(handlers, context)
4163
4163
  end
4164
4164
 
@@ -14,6 +14,7 @@ module Aws::Greengrass
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Greengrass::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::Greengrass
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-greengrass/customizations'
52
52
  # @!group service
53
53
  module Aws::Greengrass
54
54
 
55
- GEM_VERSION = '1.61.0'
55
+ GEM_VERSION = '1.63.0'
56
56
 
57
57
  end