aws-sdk-appconfigdata 1.16.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: adb9cdce14f81fca84d3eb2e03fca5569e89bcbb89cd75a955b55952210775a0
|
|
4
|
+
data.tar.gz: 611a8a8d02726fecc80fc5036202e516f1564463559455073ea92136b8487333
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1765c16cf6c5fb997935df86717b4bd79bd3c1025e4beabe25fea108b936a4b0207f918b9359a78b3b542d08e13b585dd780f3cf267e0536d9109315ba1a5753
|
|
7
|
+
data.tar.gz: fbf39511d4a7e2e5db735b00fb51b0bb09ff62bb136cd174715481f5045017c50747e2ef7f252fad7dc9a9cdf9faeca82560e07312141721d7299217ddb51f67
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.18.0 (2024-01-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Fix FIPS Endpoints in aws-us-gov.
|
|
8
|
+
|
|
9
|
+
1.17.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.16.0 (2023-11-22)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.18.0
|
|
@@ -518,7 +518,7 @@ module Aws::AppConfigData
|
|
|
518
518
|
params: params,
|
|
519
519
|
config: config)
|
|
520
520
|
context[:gem_name] = 'aws-sdk-appconfigdata'
|
|
521
|
-
context[:gem_version] = '1.
|
|
521
|
+
context[:gem_version] = '1.18.0'
|
|
522
522
|
Seahorse::Client::Request.new(handlers, context)
|
|
523
523
|
end
|
|
524
524
|
|
|
@@ -32,7 +32,10 @@ module Aws::AppConfigData
|
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
33
|
end
|
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
|
37
|
+
return Aws::Endpoints::Endpoint.new(url: "https://appconfigdata.#{region}.amazonaws.com", headers: {}, properties: {})
|
|
38
|
+
end
|
|
36
39
|
return Aws::Endpoints::Endpoint.new(url: "https://appconfigdata-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
40
|
end
|
|
38
41
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
@@ -25,16 +25,17 @@ module Aws::AppConfigData
|
|
|
25
25
|
# @api private
|
|
26
26
|
class Handler < Seahorse::Client::Handler
|
|
27
27
|
def call(context)
|
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
|
29
28
|
unless context[:discovered_endpoint]
|
|
30
29
|
params = parameters_for_operation(context)
|
|
31
30
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
|
32
31
|
|
|
33
32
|
context.http_request.endpoint = endpoint.url
|
|
34
33
|
apply_endpoint_headers(context, endpoint.headers)
|
|
34
|
+
|
|
35
|
+
context[:endpoint_params] = params
|
|
36
|
+
context[:endpoint_properties] = endpoint.properties
|
|
35
37
|
end
|
|
36
38
|
|
|
37
|
-
context[:endpoint_params] = params
|
|
38
39
|
context[:auth_scheme] =
|
|
39
40
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
|
40
41
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-appconfigdata
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.18.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -72,7 +72,7 @@ licenses:
|
|
|
72
72
|
metadata:
|
|
73
73
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appconfigdata
|
|
74
74
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appconfigdata/CHANGELOG.md
|
|
75
|
-
post_install_message:
|
|
75
|
+
post_install_message:
|
|
76
76
|
rdoc_options: []
|
|
77
77
|
require_paths:
|
|
78
78
|
- lib
|
|
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: '0'
|
|
89
89
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
90
|
+
rubygems_version: 3.4.10
|
|
91
|
+
signing_key:
|
|
92
92
|
specification_version: 4
|
|
93
93
|
summary: AWS SDK for Ruby - AWS AppConfig Data
|
|
94
94
|
test_files: []
|