aws-sdk-appmesh 1.58.0 → 1.60.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: 9954eb0aa5c19f3c4aa31d2695819046095f9b6cbbf3a33af37ae915c1a6b58f
4
- data.tar.gz: 33e5633d636808703925511014d49ce9db2c3c4b4f0daf19c50314ef3338f66e
3
+ metadata.gz: 175674ef0172d2bcb8e030e145573c9be2dfcaef17820d17d08f1beb80772f60
4
+ data.tar.gz: ba0fed334155b2ffa7328a57d332200fcfb35d9e443a8c30b62aa1b8fec20c0d
5
5
  SHA512:
6
- metadata.gz: c5ee70d02f21e8303a5b31f0974471e986637b9c766a1b98fdb96cfa9a085680f88514a189f98c9315bdd0fa692dd476f6a1430f305f8277a91de15b3853eda0
7
- data.tar.gz: feaf020df893f5167950d835936a79f5e0b07925991a42ff3dd89360904837834671e4da16dd31789d6a98842d0e012e44a8ed8da3161bb4cc414073a5a442f0
6
+ metadata.gz: 4f75d68168f979afe97a6c38bce46f092f7290da14ed729b217d5e7b158f0a670d62bc731690e17709afd8c082b89fcc0a27a3085a34e1878e64bf3cf5536fcd
7
+ data.tar.gz: '0095201dc66801c5c9884ac474f774dfad5ad73a057ff044454fb573a587ddbc5867474281820786377e98d7b413bc253251bffbd7ed420d68442747dbd07904'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.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.59.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.58.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.60.0
@@ -5498,7 +5498,7 @@ module Aws::AppMesh
5498
5498
  params: params,
5499
5499
  config: config)
5500
5500
  context[:gem_name] = 'aws-sdk-appmesh'
5501
- context[:gem_version] = '1.58.0'
5501
+ context[:gem_version] = '1.60.0'
5502
5502
  Seahorse::Client::Request.new(handlers, context)
5503
5503
  end
5504
5504
 
@@ -14,6 +14,7 @@ module Aws::AppMesh
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::AppMesh::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::AppMesh
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-appmesh/customizations'
52
52
  # @!group service
53
53
  module Aws::AppMesh
54
54
 
55
- GEM_VERSION = '1.58.0'
55
+ GEM_VERSION = '1.60.0'
56
56
 
57
57
  end