aws-sdk-route53 1.80.0 → 1.82.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: 7017c530de04b48a9ce2725f4c1fce879a14b6ae91aee17db43393156a0fb306
4
- data.tar.gz: fa6c159b990388e4121c587f25387523593f6708d4271ae59a5ba05ce19feac6
3
+ metadata.gz: 896afeed2186c25bc3650b60df0c9413ba066b4c3a8b325b3d570e1be9089773
4
+ data.tar.gz: ab2f9acd82df9ce4148e346b3750a8766fed7014988346d069c18ba59572fce1
5
5
  SHA512:
6
- metadata.gz: 27ae098c6fbcffb04eda8e5c00cf07dd77d3c887eecfb231ddae3f3e6e8a3274723ac40f70fcef1231fe86485845d5f362244ea186978d3828e580a8509baf41
7
- data.tar.gz: 2bf634b904034ffb0b775c254923259400ef1f7ce76b8d71907f17f81058000a570a1e8db474c18da0a48ecabd08be3f1786303dab953fac5d0286a7b4939648
6
+ metadata.gz: 02047ad2cd40ed79cd8cb29a3c9445ae09767d5e481b839b8e8e8a256b0317c2b232595021a74234763ee785b83411e58db82e0e81fa2013b7b06ea9b6df5719
7
+ data.tar.gz: 9673eed4f20a601aba53df48ca1faae56bf639bf8a52ae0dbb9a626767878bb3301aa58f4cc0eaf47ec8ccba07bac5c2d26a30195bcf91265629146aff0c9124
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2023-11-22)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.81.0 (2023-11-06)
10
+ ------------------
11
+
12
+ * Feature - Add partitional endpoints for iso-e and iso-f.
13
+
4
14
  1.80.0 (2023-10-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.82.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.82.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.82.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.82.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-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.184.0
22
+ version: 3.188.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.184.0
32
+ version: 3.188.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -82,7 +82,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="
84
84
  - !ruby/object:Gem::Version
85
- version: '2.3'
85
+ version: '2.5'
86
86
  required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - ">="