aws-sdk-groundstation 1.42.0 → 1.44.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: 74dfb1099652dbe8c4509604a49c6bf4cbf1c395780d12c9b291cd7c92550f58
4
- data.tar.gz: 47083c962b8d158ce198b5b6990cc83db095597839636fa520ff269a70ce23f9
3
+ metadata.gz: ab3e48a42b3f0f385563f26b5f52cccabf496c8003e8a938c4ba309204f5300e
4
+ data.tar.gz: 3b8617fae5ee95d3e03c571c1fbf88da198bcd7b4e15f2f725b05f4c21ed1dab
5
5
  SHA512:
6
- metadata.gz: 38e123b760c984487ada9af3e6018af7393453c110c1462bc10928d48db584aae4973d9f9295ba9f981a7f11d4eaa13236d341f11122ef3b38fef82d810c46fb
7
- data.tar.gz: 5b3f22233ab447317d1a6e7b1202bb7dc41a58d358effd69eb8bc9ddc95c3fe2c50c5e2b0ea5fc527bf097b48dce7803101a5540bb0c173f00d9360c5436a488
6
+ metadata.gz: 915671021b67065b90b8d078acdda1f483c3641030c125f4002483a9561b2cbb03e4976c654fb101e48ad6c81c8f0ee7ab18b2c6fb7cd459a44ac32ea5ff1957
7
+ data.tar.gz: 9415fe962953bc665e03e643e251913b0a2a6ccfbeb80b0895297dc50d2fe49fd735deaf66c45b073f60601f788f7a75d9948b3478c26c52e0703738fafeb667
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.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.43.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.42.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.44.0
@@ -2232,7 +2232,7 @@ module Aws::GroundStation
2232
2232
  params: params,
2233
2233
  config: config)
2234
2234
  context[:gem_name] = 'aws-sdk-groundstation'
2235
- context[:gem_version] = '1.42.0'
2235
+ context[:gem_version] = '1.44.0'
2236
2236
  Seahorse::Client::Request.new(handlers, context)
2237
2237
  end
2238
2238
 
@@ -14,6 +14,7 @@ module Aws::GroundStation
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::GroundStation::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::GroundStation
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-groundstation/customizations'
53
53
  # @!group service
54
54
  module Aws::GroundStation
55
55
 
56
- GEM_VERSION = '1.42.0'
56
+ GEM_VERSION = '1.44.0'
57
57
 
58
58
  end