aws-sdk-appconfigdata 1.17.0 → 1.18.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: 180e446ec01f0c59766c1c7079d98856b5a97a71cdf57caca4952e59b69fd1c0
4
- data.tar.gz: bcfa9b5a4e4a9b20892aba3e2d2cb4431e262fdbbd888136dfd56baeffd665d5
3
+ metadata.gz: adb9cdce14f81fca84d3eb2e03fca5569e89bcbb89cd75a955b55952210775a0
4
+ data.tar.gz: 611a8a8d02726fecc80fc5036202e516f1564463559455073ea92136b8487333
5
5
  SHA512:
6
- metadata.gz: 10eaabcb88627d31855df2062a5fd6542a4e6d8391fb0097893a3a0f8ff1ba576faef50620ee194aa30aa67710641deb9d2117457435b8d0a7150bb0f197b9e1
7
- data.tar.gz: 84e2de30b281d6766ec4b09699108cf968ec8c2c62eb093e81c2687278945ce51ebd96af733960f8ab642f987e774fac671fd052227c0665c08a77c79147cb4f
6
+ metadata.gz: 1765c16cf6c5fb997935df86717b4bd79bd3c1025e4beabe25fea108b936a4b0207f918b9359a78b3b542d08e13b585dd780f3cf267e0536d9109315ba1a5753
7
+ data.tar.gz: fbf39511d4a7e2e5db735b00fb51b0bb09ff62bb136cd174715481f5045017c50747e2ef7f252fad7dc9a9cdf9faeca82560e07312141721d7299217ddb51f67
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.17.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
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.17.0'
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?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
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"
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appconfigdata/customizations'
52
52
  # @!group service
53
53
  module Aws::AppConfigData
54
54
 
55
- GEM_VERSION = '1.17.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end
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.17.0
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: 2023-11-28 00:00:00.000000000 Z
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.1.6
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: []