aws-sdk-route53 1.80.0 → 1.81.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: 7017c530de04b48a9ce2725f4c1fce879a14b6ae91aee17db43393156a0fb306
4
- data.tar.gz: fa6c159b990388e4121c587f25387523593f6708d4271ae59a5ba05ce19feac6
3
+ metadata.gz: cb6ed27394c0168d6a1405342cd1e62e6b71364276f4443db15dffda9e4dd65e
4
+ data.tar.gz: 665eafbf143ae098584a76f42f37dbe59710830bccdb246d59d1fb37fa8c4215
5
5
  SHA512:
6
- metadata.gz: 27ae098c6fbcffb04eda8e5c00cf07dd77d3c887eecfb231ddae3f3e6e8a3274723ac40f70fcef1231fe86485845d5f362244ea186978d3828e580a8509baf41
7
- data.tar.gz: 2bf634b904034ffb0b775c254923259400ef1f7ce76b8d71907f17f81058000a570a1e8db474c18da0a48ecabd08be3f1786303dab953fac5d0286a7b4939648
6
+ metadata.gz: 319d409f66b18f44f49c1ab63f767037eb3f156df62c518e401bc3a491999c5754753b7902c107578d6c2b26c7c1dab58ea6684bd3d3133cf836cebcd914b78f
7
+ data.tar.gz: a0c459f3fb37623e0cf37c57bca0166d466d4af8dc758a153aecf57eeccff1712ba9bf2a5110ec1626663e6187d5de71de8c1d4a8cb16679166096aff1b40cc6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2023-11-06)
5
+ ------------------
6
+
7
+ * Feature - Add partitional endpoints for iso-e and iso-f.
8
+
4
9
  1.80.0 (2023-10-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.81.0
@@ -6124,7 +6124,7 @@ module Aws::Route53
6124
6124
  params: params,
6125
6125
  config: config)
6126
6126
  context[:gem_name] = 'aws-sdk-route53'
6127
- context[:gem_version] = '1.80.0'
6127
+ context[:gem_version] = '1.81.0'
6128
6128
  Seahorse::Client::Request.new(handlers, context)
6129
6129
  end
6130
6130
 
@@ -46,6 +46,12 @@ module Aws::Route53
46
46
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
47
47
  return Aws::Endpoints::Endpoint.new(url: "https://route53.sc2s.sgov.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"us-isob-east-1"}]})
48
48
  end
49
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-e") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
50
+ return Aws::Endpoints::Endpoint.new(url: "https://route53.cloud.adc-e.uk", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"eu-isoe-west-1"}]})
51
+ end
52
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
53
+ return Aws::Endpoints::Endpoint.new(url: "https://route53.csp.hci.ic.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"us-isof-south-1"}]})
54
+ end
49
55
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
50
56
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
51
57
  return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
@@ -53,7 +59,7 @@ module Aws::Route53
53
59
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
54
60
  end
55
61
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
56
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
62
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
57
63
  return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
58
64
  end
59
65
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-route53/customizations'
53
53
  # @!group service
54
54
  module Aws::Route53
55
55
 
56
- GEM_VERSION = '1.80.0'
56
+ GEM_VERSION = '1.81.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.80.0
4
+ version: 1.81.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-05 00:00:00.000000000 Z
11
+ date: 2023-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core