aws-sdk-route53 1.76.0 → 1.78.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53/client.rb +40 -26
- data/lib/aws-sdk-route53/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-route53/endpoint_provider.rb +30 -108
- data/lib/aws-sdk-route53/types.rb +6 -0
- data/lib/aws-sdk-route53.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4405e18871d9808870f3299b10d0bfa8cb4cf960aa822fa019ac5d6c052cfdc
|
|
4
|
+
data.tar.gz: 9ae337aa0e92f6ca572560b4506aa6a1a1c6d2ace0746431d14cebadeed38151
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f41a63a18c5025393d6cc1277319054d9bc6e4935dfea3fa1dbef252e3163a02e0f3943d29ced196cd036729a83bb1f178db70f825f852d1ab8cce31d86df85a
|
|
7
|
+
data.tar.gz: 26b3083c87cdc6fa8b95a26617722877722ee5b23550361bdb42bd399095a738c17bdfb3013093e24be2c540c12ab8a9b118d3b27c0240d16efc4e19ef74c194
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.78.0 (2023-07-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
|
|
8
|
+
|
|
9
|
+
1.77.0 (2023-07-26)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Update that corrects the documents for received feedback.
|
|
13
|
+
|
|
4
14
|
1.76.0 (2023-07-11)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.78.0
|
|
@@ -511,7 +511,7 @@ module Aws::Route53
|
|
|
511
511
|
# resp = client.associate_vpc_with_hosted_zone({
|
|
512
512
|
# hosted_zone_id: "ResourceId", # required
|
|
513
513
|
# vpc: { # required
|
|
514
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4
|
|
514
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4, il-central-1
|
|
515
515
|
# vpc_id: "VPCId",
|
|
516
516
|
# },
|
|
517
517
|
# comment: "AssociateVPCComment",
|
|
@@ -690,10 +690,11 @@ module Aws::Route53
|
|
|
690
690
|
#
|
|
691
691
|
# When you submit a `ChangeResourceRecordSets` request, Route 53
|
|
692
692
|
# propagates your changes to all of the Route 53 authoritative DNS
|
|
693
|
-
# servers. While your changes are propagating,
|
|
694
|
-
# status of `PENDING`. When propagation is
|
|
695
|
-
# a status of `INSYNC`. Changes generally
|
|
696
|
-
#
|
|
693
|
+
# servers managing the hosted zone. While your changes are propagating,
|
|
694
|
+
# `GetChange` returns a status of `PENDING`. When propagation is
|
|
695
|
+
# complete, `GetChange` returns a status of `INSYNC`. Changes generally
|
|
696
|
+
# propagate to all Route 53 name servers managing the hosted zone within
|
|
697
|
+
# 60 seconds. For more information, see [GetChange][2].
|
|
697
698
|
#
|
|
698
699
|
# **Limits on ChangeResourceRecordSets Requests**
|
|
699
700
|
#
|
|
@@ -1316,7 +1317,7 @@ module Aws::Route53
|
|
|
1316
1317
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
|
1317
1318
|
# set_identifier: "ResourceRecordSetIdentifier",
|
|
1318
1319
|
# weight: 1,
|
|
1319
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-south-2, af-south-1, eu-south-1, eu-south-2, ap-southeast-4
|
|
1320
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-south-2, af-south-1, eu-south-1, eu-south-2, ap-southeast-4, il-central-1
|
|
1320
1321
|
# geo_location: {
|
|
1321
1322
|
# continent_code: "GeoLocationContinentCode",
|
|
1322
1323
|
# country_code: "GeoLocationCountryCode",
|
|
@@ -1580,7 +1581,7 @@ module Aws::Route53
|
|
|
1580
1581
|
# enable_sni: false,
|
|
1581
1582
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
|
1582
1583
|
# alarm_identifier: {
|
|
1583
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-central-2, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-south-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-4
|
|
1584
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-central-2, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-south-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-4, il-central-1
|
|
1584
1585
|
# name: "AlarmName", # required
|
|
1585
1586
|
# },
|
|
1586
1587
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
|
@@ -1611,7 +1612,7 @@ module Aws::Route53
|
|
|
1611
1612
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
|
1612
1613
|
# resp.health_check.health_check_config.regions #=> Array
|
|
1613
1614
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
|
1614
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-4"
|
|
1615
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-4", "il-central-1"
|
|
1615
1616
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
|
1616
1617
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
|
1617
1618
|
# resp.health_check.health_check_config.routing_control_arn #=> String
|
|
@@ -1759,6 +1760,12 @@ module Aws::Route53
|
|
|
1759
1760
|
# set when you created it. For more information about reusable
|
|
1760
1761
|
# delegation sets, see [CreateReusableDelegationSet][1].
|
|
1761
1762
|
#
|
|
1763
|
+
# If you are using a reusable delegation set to create a public hosted
|
|
1764
|
+
# zone for a subdomain, make sure that the parent hosted zone doesn't
|
|
1765
|
+
# use one or more of the same name servers. If you have overlapping
|
|
1766
|
+
# nameservers, the operation will cause a `ConflictingDomainsExist`
|
|
1767
|
+
# error.
|
|
1768
|
+
#
|
|
1762
1769
|
#
|
|
1763
1770
|
#
|
|
1764
1771
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html
|
|
@@ -1776,7 +1783,7 @@ module Aws::Route53
|
|
|
1776
1783
|
# resp = client.create_hosted_zone({
|
|
1777
1784
|
# name: "DNSName", # required
|
|
1778
1785
|
# vpc: {
|
|
1779
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4
|
|
1786
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4, il-central-1
|
|
1780
1787
|
# vpc_id: "VPCId",
|
|
1781
1788
|
# },
|
|
1782
1789
|
# caller_reference: "Nonce", # required
|
|
@@ -1805,7 +1812,7 @@ module Aws::Route53
|
|
|
1805
1812
|
# resp.delegation_set.caller_reference #=> String
|
|
1806
1813
|
# resp.delegation_set.name_servers #=> Array
|
|
1807
1814
|
# resp.delegation_set.name_servers[0] #=> String
|
|
1808
|
-
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "me-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-south-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4"
|
|
1815
|
+
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "me-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-south-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4", "il-central-1"
|
|
1809
1816
|
# resp.vpc.vpc_id #=> String
|
|
1810
1817
|
# resp.location #=> String
|
|
1811
1818
|
#
|
|
@@ -2433,7 +2440,7 @@ module Aws::Route53
|
|
|
2433
2440
|
# resp = client.create_vpc_association_authorization({
|
|
2434
2441
|
# hosted_zone_id: "ResourceId", # required
|
|
2435
2442
|
# vpc: { # required
|
|
2436
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4
|
|
2443
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4, il-central-1
|
|
2437
2444
|
# vpc_id: "VPCId",
|
|
2438
2445
|
# },
|
|
2439
2446
|
# })
|
|
@@ -2441,7 +2448,7 @@ module Aws::Route53
|
|
|
2441
2448
|
# @example Response structure
|
|
2442
2449
|
#
|
|
2443
2450
|
# resp.hosted_zone_id #=> String
|
|
2444
|
-
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "me-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-south-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4"
|
|
2451
|
+
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "me-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-south-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4", "il-central-1"
|
|
2445
2452
|
# resp.vpc.vpc_id #=> String
|
|
2446
2453
|
#
|
|
2447
2454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
|
|
@@ -2859,7 +2866,7 @@ module Aws::Route53
|
|
|
2859
2866
|
# resp = client.delete_vpc_association_authorization({
|
|
2860
2867
|
# hosted_zone_id: "ResourceId", # required
|
|
2861
2868
|
# vpc: { # required
|
|
2862
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4
|
|
2869
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4, il-central-1
|
|
2863
2870
|
# vpc_id: "VPCId",
|
|
2864
2871
|
# },
|
|
2865
2872
|
# })
|
|
@@ -2972,7 +2979,7 @@ module Aws::Route53
|
|
|
2972
2979
|
# resp = client.disassociate_vpc_from_hosted_zone({
|
|
2973
2980
|
# hosted_zone_id: "ResourceId", # required
|
|
2974
2981
|
# vpc: { # required
|
|
2975
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4
|
|
2982
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4, il-central-1
|
|
2976
2983
|
# vpc_id: "VPCId",
|
|
2977
2984
|
# },
|
|
2978
2985
|
# comment: "DisassociateVPCComment",
|
|
@@ -3096,11 +3103,11 @@ module Aws::Route53
|
|
|
3096
3103
|
# one of the following values:
|
|
3097
3104
|
#
|
|
3098
3105
|
# * `PENDING` indicates that the changes in this request have not
|
|
3099
|
-
# propagated to all Amazon Route 53 DNS servers
|
|
3100
|
-
# status of all change batch requests.
|
|
3106
|
+
# propagated to all Amazon Route 53 DNS servers managing the hosted
|
|
3107
|
+
# zone. This is the initial status of all change batch requests.
|
|
3101
3108
|
#
|
|
3102
3109
|
# * `INSYNC` indicates that the changes have propagated to all Route 53
|
|
3103
|
-
# DNS servers.
|
|
3110
|
+
# DNS servers managing the hosted zone.
|
|
3104
3111
|
#
|
|
3105
3112
|
# @option params [required, String] :id
|
|
3106
3113
|
# The ID of the change batch request. The value that you specify here is
|
|
@@ -3349,7 +3356,7 @@ module Aws::Route53
|
|
|
3349
3356
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
|
3350
3357
|
# resp.health_check.health_check_config.regions #=> Array
|
|
3351
3358
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
|
3352
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-4"
|
|
3359
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-4", "il-central-1"
|
|
3353
3360
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
|
3354
3361
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
|
3355
3362
|
# resp.health_check.health_check_config.routing_control_arn #=> String
|
|
@@ -3543,7 +3550,7 @@ module Aws::Route53
|
|
|
3543
3550
|
# resp.delegation_set.name_servers #=> Array
|
|
3544
3551
|
# resp.delegation_set.name_servers[0] #=> String
|
|
3545
3552
|
# resp.vp_cs #=> Array
|
|
3546
|
-
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "me-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-south-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4"
|
|
3553
|
+
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "me-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-south-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4", "il-central-1"
|
|
3547
3554
|
# resp.vp_cs[0].vpc_id #=> String
|
|
3548
3555
|
#
|
|
3549
3556
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
|
|
@@ -4157,7 +4164,7 @@ module Aws::Route53
|
|
|
4157
4164
|
# resp.health_checks[0].health_check_config.enable_sni #=> Boolean
|
|
4158
4165
|
# resp.health_checks[0].health_check_config.regions #=> Array
|
|
4159
4166
|
# resp.health_checks[0].health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
|
4160
|
-
# resp.health_checks[0].health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-4"
|
|
4167
|
+
# resp.health_checks[0].health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-4", "il-central-1"
|
|
4161
4168
|
# resp.health_checks[0].health_check_config.alarm_identifier.name #=> String
|
|
4162
4169
|
# resp.health_checks[0].health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
|
4163
4170
|
# resp.health_checks[0].health_check_config.routing_control_arn #=> String
|
|
@@ -4467,7 +4474,7 @@ module Aws::Route53
|
|
|
4467
4474
|
#
|
|
4468
4475
|
# resp = client.list_hosted_zones_by_vpc({
|
|
4469
4476
|
# vpc_id: "VPCId", # required
|
|
4470
|
-
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4
|
|
4477
|
+
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-central-2, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-south-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, ap-southeast-4, il-central-1
|
|
4471
4478
|
# max_items: 1,
|
|
4472
4479
|
# next_token: "PaginationToken",
|
|
4473
4480
|
# })
|
|
@@ -4725,7 +4732,7 @@ module Aws::Route53
|
|
|
4725
4732
|
# resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
|
4726
4733
|
# resp.resource_record_sets[0].set_identifier #=> String
|
|
4727
4734
|
# resp.resource_record_sets[0].weight #=> Integer
|
|
4728
|
-
# resp.resource_record_sets[0].region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-north-1", "cn-northwest-1", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4"
|
|
4735
|
+
# resp.resource_record_sets[0].region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-north-1", "cn-northwest-1", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4", "il-central-1"
|
|
4729
4736
|
# resp.resource_record_sets[0].geo_location.continent_code #=> String
|
|
4730
4737
|
# resp.resource_record_sets[0].geo_location.country_code #=> String
|
|
4731
4738
|
# resp.resource_record_sets[0].geo_location.subdivision_code #=> String
|
|
@@ -5405,7 +5412,7 @@ module Aws::Route53
|
|
|
5405
5412
|
# resp.hosted_zone_id #=> String
|
|
5406
5413
|
# resp.next_token #=> String
|
|
5407
5414
|
# resp.vp_cs #=> Array
|
|
5408
|
-
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "me-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-south-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4"
|
|
5415
|
+
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-central-2", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "me-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-south-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "ap-southeast-4", "il-central-1"
|
|
5409
5416
|
# resp.vp_cs[0].vpc_id #=> String
|
|
5410
5417
|
#
|
|
5411
5418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
|
|
@@ -5424,6 +5431,13 @@ module Aws::Route53
|
|
|
5424
5431
|
#
|
|
5425
5432
|
# This call only supports querying public hosted zones.
|
|
5426
5433
|
#
|
|
5434
|
+
# <note markdown="1"> The `TestDnsAnswer ` returns information similar to what you would
|
|
5435
|
+
# expect from the answer section of the `dig` command. Therefore, if you
|
|
5436
|
+
# query for the name servers of a subdomain that point to the parent
|
|
5437
|
+
# name servers, those will not be returned.
|
|
5438
|
+
#
|
|
5439
|
+
# </note>
|
|
5440
|
+
#
|
|
5427
5441
|
# @option params [required, String] :hosted_zone_id
|
|
5428
5442
|
# The ID of the hosted zone that you want Amazon Route 53 to simulate a
|
|
5429
5443
|
# query for.
|
|
@@ -5857,7 +5871,7 @@ module Aws::Route53
|
|
|
5857
5871
|
# enable_sni: false,
|
|
5858
5872
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
|
5859
5873
|
# alarm_identifier: {
|
|
5860
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-central-2, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-south-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-4
|
|
5874
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-central-2, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-south-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, eu-south-2, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-4, il-central-1
|
|
5861
5875
|
# name: "AlarmName", # required
|
|
5862
5876
|
# },
|
|
5863
5877
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
|
@@ -5887,7 +5901,7 @@ module Aws::Route53
|
|
|
5887
5901
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
|
5888
5902
|
# resp.health_check.health_check_config.regions #=> Array
|
|
5889
5903
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
|
5890
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-4"
|
|
5904
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "me-central-1", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "eu-south-2", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-4", "il-central-1"
|
|
5891
5905
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
|
5892
5906
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
|
5893
5907
|
# resp.health_check.health_check_config.routing_control_arn #=> String
|
|
@@ -6080,7 +6094,7 @@ module Aws::Route53
|
|
|
6080
6094
|
params: params,
|
|
6081
6095
|
config: config)
|
|
6082
6096
|
context[:gem_name] = 'aws-sdk-route53'
|
|
6083
|
-
context[:gem_version] = '1.
|
|
6097
|
+
context[:gem_version] = '1.78.0'
|
|
6084
6098
|
Seahorse::Client::Request.new(handlers, context)
|
|
6085
6099
|
end
|
|
6086
6100
|
|
|
@@ -50,9 +50,6 @@ module Aws::Route53
|
|
|
50
50
|
|
|
51
51
|
def initialize(options = {})
|
|
52
52
|
self[:region] = options[:region]
|
|
53
|
-
if self[:region].nil?
|
|
54
|
-
raise ArgumentError, "Missing required EndpointParameter: :region"
|
|
55
|
-
end
|
|
56
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
|
57
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
|
58
55
|
if self[:use_dual_stack].nil?
|
|
@@ -14,138 +14,60 @@ module Aws::Route53
|
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
|
-
if
|
|
18
|
-
if Aws::Endpoints::Matchers.
|
|
19
|
-
|
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
|
-
end
|
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
24
|
-
end
|
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
26
20
|
end
|
|
27
|
-
if Aws::Endpoints::Matchers.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
23
|
+
end
|
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
25
|
+
end
|
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
28
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"us-east-1"}]})
|
|
33
30
|
end
|
|
34
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
|
|
36
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"route53"}]})
|
|
37
|
-
end
|
|
38
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
31
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
|
32
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"us-east-1"}]})
|
|
39
33
|
end
|
|
40
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack,
|
|
41
|
-
|
|
42
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route-53.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"route53"}]})
|
|
43
|
-
end
|
|
44
|
-
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
34
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"cn-northwest-1"}]})
|
|
45
36
|
end
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn")
|
|
49
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
50
|
-
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
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route-53-fips.#{region}.api.amazonwebservices.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"route53"}]})
|
|
52
|
-
end
|
|
53
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
37
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
|
38
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53.us-gov.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"us-gov-west-1"}]})
|
|
54
39
|
end
|
|
55
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
56
|
-
|
|
57
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route-53-fips.#{region}.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"route53"}]})
|
|
58
|
-
end
|
|
59
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
40
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53.us-gov.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"us-gov-west-1"}]})
|
|
60
42
|
end
|
|
61
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack,
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
43
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
|
|
44
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53.c2s.ic.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"us-iso-east-1"}]})
|
|
45
|
+
end
|
|
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
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53.sc2s.sgov.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"route53", "signingRegion"=>"us-isob-east-1"}]})
|
|
66
48
|
end
|
|
67
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"route53"}]})
|
|
68
|
-
end
|
|
69
|
-
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
|
70
49
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
71
50
|
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"))
|
|
72
|
-
return Aws::Endpoints::Endpoint.new(url: "https://
|
|
51
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
73
52
|
end
|
|
74
53
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
75
54
|
end
|
|
76
55
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
77
56
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
78
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53
|
|
57
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
79
58
|
end
|
|
80
59
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
81
60
|
end
|
|
82
61
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
83
62
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
84
|
-
return Aws::Endpoints::Endpoint.new(url: "https://
|
|
63
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
85
64
|
end
|
|
86
65
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
87
66
|
end
|
|
88
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53
|
|
89
|
-
end
|
|
90
|
-
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso")
|
|
91
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
92
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
93
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route-53-fips.#{region}.c2s.ic.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-iso-east-1", "signingName"=>"route53"}]})
|
|
94
|
-
end
|
|
95
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
96
|
-
end
|
|
97
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.c2s.ic.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-iso-east-1", "signingName"=>"route53"}]})
|
|
98
|
-
end
|
|
99
|
-
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b")
|
|
100
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
101
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
102
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route-53-fips.#{region}.sc2s.sgov.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-isob-east-1", "signingName"=>"route53"}]})
|
|
103
|
-
end
|
|
104
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
105
|
-
end
|
|
106
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.sc2s.sgov.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-isob-east-1", "signingName"=>"route53"}]})
|
|
107
|
-
end
|
|
108
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
109
|
-
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"))
|
|
110
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
111
|
-
end
|
|
112
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
113
|
-
end
|
|
114
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
115
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
116
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
|
|
117
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"route53"}]})
|
|
118
|
-
end
|
|
119
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-us-gov-global")
|
|
120
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.us-gov.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-gov-west-1", "signingName"=>"route53"}]})
|
|
121
|
-
end
|
|
122
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
123
|
-
end
|
|
124
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
125
|
-
end
|
|
126
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
127
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
128
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
129
|
-
end
|
|
130
|
-
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
131
|
-
end
|
|
132
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
|
|
133
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"route53"}]})
|
|
134
|
-
end
|
|
135
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-cn-global")
|
|
136
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"route53"}]})
|
|
137
|
-
end
|
|
138
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-us-gov-global")
|
|
139
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.us-gov.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-gov-west-1", "signingName"=>"route53"}]})
|
|
140
|
-
end
|
|
141
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-iso-global")
|
|
142
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.c2s.ic.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-iso-east-1", "signingName"=>"route53"}]})
|
|
143
|
-
end
|
|
144
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "aws-iso-b-global")
|
|
145
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.sc2s.sgov.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-isob-east-1", "signingName"=>"route53"}]})
|
|
67
|
+
return Aws::Endpoints::Endpoint.new(url: "https://route53.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
146
68
|
end
|
|
147
|
-
return Aws::Endpoints::Endpoint.new(url: "https://route53.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
148
69
|
end
|
|
70
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
|
149
71
|
raise ArgumentError, 'No endpoint could be resolved'
|
|
150
72
|
|
|
151
73
|
end
|
|
@@ -1301,6 +1301,12 @@ module Aws::Route53
|
|
|
1301
1301
|
# delegation set when you created it. For more information about
|
|
1302
1302
|
# reusable delegation sets, see [CreateReusableDelegationSet][1].
|
|
1303
1303
|
#
|
|
1304
|
+
# If you are using a reusable delegation set to create a public hosted
|
|
1305
|
+
# zone for a subdomain, make sure that the parent hosted zone doesn't
|
|
1306
|
+
# use one or more of the same name servers. If you have overlapping
|
|
1307
|
+
# nameservers, the operation will cause a `ConflictingDomainsExist`
|
|
1308
|
+
# error.
|
|
1309
|
+
#
|
|
1304
1310
|
#
|
|
1305
1311
|
#
|
|
1306
1312
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html
|
data/lib/aws-sdk-route53.rb
CHANGED
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.
|
|
4
|
+
version: 1.78.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-07-
|
|
11
|
+
date: 2023-07-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|