aws-sdk-fms 1.65.0 → 1.67.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: 6ea1cdb4435679484768b90f43add97c0450a16775d224a7d47ba3cd24508274
4
- data.tar.gz: d1cc511a75f440ac2c689d5c62290e0a8dde9fd34dd79fcedbec125b4901c802
3
+ metadata.gz: cf2d5af6618ce490d558824f816a2ece54b221e0ace6b18fd1372c9ca06a976b
4
+ data.tar.gz: 017a6898a6b59f501b673cb89b255b31c0c7f24f52aba73c659ce893944d6bdd
5
5
  SHA512:
6
- metadata.gz: 07ca3cfb9fe8227710aed3e9d24c234e738150f0886489baa2a38f1d785f8854f78ecd8e26353604ae63952abe9293db3fa84d7b617daf1ffc735803b22654fd
7
- data.tar.gz: fb92f81551cf6ec47482587adabb250911a8a72104710c72a4b6e848d6d28ce2c2de6c9a60d1835a33e5d7837050fdd5abe922fab9f95f471feef07e05337d5b
6
+ metadata.gz: 8093c4c50d849663a541cb0d511c02f79418a0e4bc57141a6bb0008169d102b17e47b2809590619a881a63a8f6e8fc3067dc40c865df6e75079f3c60232ba066
7
+ data.tar.gz: a107132b42638152bdf4c482bed8a7a72b2f17cd5267796306a246ec082c145448662fdaf736a8c11f7315b7ddd9ccf1515da7833bf8a6521e376047b3335e29
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.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.66.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.65.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.67.0
@@ -2720,7 +2720,7 @@ module Aws::FMS
2720
2720
  params: params,
2721
2721
  config: config)
2722
2722
  context[:gem_name] = 'aws-sdk-fms'
2723
- context[:gem_version] = '1.65.0'
2723
+ context[:gem_version] = '1.67.0'
2724
2724
  Seahorse::Client::Request.new(handlers, context)
2725
2725
  end
2726
2726
 
@@ -14,6 +14,7 @@ module Aws::FMS
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::FMS::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::FMS
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-fms.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-fms/customizations'
52
52
  # @!group service
53
53
  module Aws::FMS
54
54
 
55
- GEM_VERSION = '1.65.0'
55
+ GEM_VERSION = '1.67.0'
56
56
 
57
57
  end