aws-sdk-nimblestudio 1.26.0 → 1.28.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: 9d3fda622e53cf755bdab193c7052da13ebde14ad11decc55ad55ee17f268643
4
- data.tar.gz: b143985083697d3d676de7b5d42a05d81ce08703d6393c848f08cb79426141cf
3
+ metadata.gz: 6069b9212c7b82b97a6a80ff7471097774a78acce7726ed26949a45e63d7d029
4
+ data.tar.gz: 6d570d48ad0a359a08102d54215470917951cca26de92799ae72c8a31e9191c5
5
5
  SHA512:
6
- metadata.gz: ea7a97a5d546328757eaa0fc5df4ad5bddedc187e39a788cf8258c340dda5652bfda071978a8d00feab264dcb523a576f4e999841d083f081f6b37dc123b1a1b
7
- data.tar.gz: ce10a31aa0961da0440d2fc52af4d39dea6a2be92571ff84742a02fb8d376a4c935e6e7033f6211bf37677737cfcb29d8a2f606784e5f08da2ca8ab038f95740
6
+ metadata.gz: edc2f968be38a2fa0b975519302f095c8cdece56501367361de61fb0783a37e83ee8f903d9f6a024cf040af6aaf97d703fdba5f23f0e3f0353502f9e8a5575a7
7
+ data.tar.gz: a469929884918a6201afaa4788588e52f6a7294519a3a24d7c101e3795cd8a85266321500e59288c18200c3492ffad5b7e06bcddc1b97efe0b69ff9a0d748faf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.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.27.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.26.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.28.0
@@ -3754,7 +3754,7 @@ module Aws::NimbleStudio
3754
3754
  params: params,
3755
3755
  config: config)
3756
3756
  context[:gem_name] = 'aws-sdk-nimblestudio'
3757
- context[:gem_version] = '1.26.0'
3757
+ context[:gem_version] = '1.28.0'
3758
3758
  Seahorse::Client::Request.new(handlers, context)
3759
3759
  end
3760
3760
 
@@ -14,6 +14,7 @@ module Aws::NimbleStudio
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::NimbleStudio::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::NimbleStudio
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
 
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-nimblestudio/customizations'
53
53
  # @!group service
54
54
  module Aws::NimbleStudio
55
55
 
56
- GEM_VERSION = '1.26.0'
56
+ GEM_VERSION = '1.28.0'
57
57
 
58
58
  end