aws-sdk-codecatalyst 1.14.0 → 1.16.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: 5f9b54c68458e186daeb7f123b6f6e076aa5da41e97f2df99342a9b841665b09
4
- data.tar.gz: ec49e7a76fa9340c137ec7d250986c95bccba9a5870de85fb99a64bc3c604987
3
+ metadata.gz: c7204455805817d276732feacedda71fcc5e2656ca1984e607e740415279f152
4
+ data.tar.gz: 5b05b248877c0e27d6b26b5756514d58cc5a98f78e65107e6a726ffa228ba2ff
5
5
  SHA512:
6
- metadata.gz: 7a900bdeee529e52c32859754f5bf421c7f80d6e2e69dae7b4ac904068e2dad758a2ca5ebdff4e17546f4890ee1cd32fd56c349ffbff0e8923e5f15b09682cdf
7
- data.tar.gz: 6b789af4d9f7d6cecbeabcfdd0546ce3801249128199a5fba579235359dd8ee86b774c75d50cbc8e973bf3cc91764dd4d95bcbb01cad169ebc5369e1e099d31b
6
+ metadata.gz: b2db70eec203e7bc198e23659b7ad293b1b4b425fd1ce2b178ab5d8eb288e9579d63f80de049c5b71820edd439862bcf19bffdb0d601a0b22e6c32f36aedb224
7
+ data.tar.gz: a2a3aca59a3c36598a9e3dfb4fd603786ec7f02f792de0bf52e8de1bf74fde284c3fb77e98544bb591433fefb63bcc9ab336b75248b3524e04ac4d37f349ad8e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.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.15.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.14.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.0
@@ -2392,7 +2392,7 @@ module Aws::CodeCatalyst
2392
2392
  params: params,
2393
2393
  config: config)
2394
2394
  context[:gem_name] = 'aws-sdk-codecatalyst'
2395
- context[:gem_version] = '1.14.0'
2395
+ context[:gem_version] = '1.16.0'
2396
2396
  Seahorse::Client::Request.new(handlers, context)
2397
2397
  end
2398
2398
 
@@ -14,6 +14,7 @@ module Aws::CodeCatalyst
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::CodeCatalyst::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::CodeCatalyst
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-codecatalyst/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeCatalyst
54
54
 
55
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.16.0'
56
56
 
57
57
  end