aws-sdk-route53 1.32.0 → 1.37.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-route53.rb +3 -1
- data/lib/aws-sdk-route53/client.rb +57 -46
- data/lib/aws-sdk-route53/client_api.rb +9 -0
- data/lib/aws-sdk-route53/errors.rb +2 -0
- data/lib/aws-sdk-route53/resource.rb +2 -0
- data/lib/aws-sdk-route53/types.rb +27 -24
- data/lib/aws-sdk-route53/waiters.rb +5 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 28cbda6b035c7f7aa1230439bc0896bc66bfaed94de3a4409f627f00a96c539a
|
4
|
+
data.tar.gz: 04273371c6a292adcd5206501154b091e2f8adfa07b02c7ea7a795471c5ac9be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 835a4eb1f2e7c745fcb169d87f472fbcdc90e3a3189ea5d2b34b991da89c6fa1cd01b3bd20ad9928056ccc08c6ae21e6f994b124a4c68ffecad3a62c3d9cfdd4
|
7
|
+
data.tar.gz: 9c8c855b9f097a5dd4097a35c2e4250557e88f2307961c426f17f436747f86e252c274804f095709107ce718772e7c939b683f6233d3bf46cbed6b3785cb36dd
|
data/lib/aws-sdk-route53.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-route53/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::Route53
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.37.0'
|
50
52
|
|
51
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
|
29
32
|
require 'aws-sdk-route53/plugins/id_fix.rb'
|
@@ -70,6 +73,7 @@ module Aws::Route53
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
71
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
72
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
73
77
|
add_plugin(Aws::Plugins::SignatureV4)
|
74
78
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
75
79
|
add_plugin(Aws::Route53::Plugins::IdFix)
|
@@ -107,7 +111,7 @@ module Aws::Route53
|
|
107
111
|
# @option options [required, String] :region
|
108
112
|
# The AWS region to connect to. The configured `:region` is
|
109
113
|
# used to determine the service `:endpoint`. When not passed,
|
110
|
-
# a default `:region` is
|
114
|
+
# a default `:region` is searched for in the following locations:
|
111
115
|
#
|
112
116
|
# * `Aws.config[:region]`
|
113
117
|
# * `ENV['AWS_REGION']`
|
@@ -163,7 +167,7 @@ module Aws::Route53
|
|
163
167
|
# @option options [String] :endpoint
|
164
168
|
# The client endpoint is normally constructed from the `:region`
|
165
169
|
# option. You should only configure an `:endpoint` when connecting
|
166
|
-
# to test endpoints. This should be
|
170
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
167
171
|
#
|
168
172
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
169
173
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -178,7 +182,7 @@ module Aws::Route53
|
|
178
182
|
# requests fetching endpoints information. Defaults to 60 sec.
|
179
183
|
#
|
180
184
|
# @option options [Boolean] :endpoint_discovery (false)
|
181
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
185
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
182
186
|
#
|
183
187
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
184
188
|
# The log formatter.
|
@@ -271,8 +275,7 @@ module Aws::Route53
|
|
271
275
|
#
|
272
276
|
# @option options [Integer] :http_read_timeout (60) The default
|
273
277
|
# number of seconds to wait for response data. This value can
|
274
|
-
# safely be set
|
275
|
-
# per-request on the session yielded by {#session_for}.
|
278
|
+
# safely be set per-request on the session.
|
276
279
|
#
|
277
280
|
# @option options [Float] :http_idle_timeout (5) The number of
|
278
281
|
# seconds a connection is allowed to sit idle before it is
|
@@ -284,7 +287,7 @@ module Aws::Route53
|
|
284
287
|
# request body. This option has no effect unless the request has
|
285
288
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
286
289
|
# disables this behaviour. This value can safely be set per
|
287
|
-
# request on the session
|
290
|
+
# request on the session.
|
288
291
|
#
|
289
292
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
290
293
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -385,7 +388,7 @@ module Aws::Route53
|
|
385
388
|
# resp = client.associate_vpc_with_hosted_zone({
|
386
389
|
# hosted_zone_id: "ResourceId", # required
|
387
390
|
# vpc: { # required
|
388
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
391
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
389
392
|
# vpc_id: "VPCId",
|
390
393
|
# },
|
391
394
|
# comment: "AssociateVPCComment",
|
@@ -413,29 +416,35 @@ module Aws::Route53
|
|
413
416
|
# resource record set that routes traffic for test.example.com to a web
|
414
417
|
# server that has an IP address of 192.0.2.44.
|
415
418
|
#
|
419
|
+
# **Deleting Resource Record Sets**
|
420
|
+
#
|
421
|
+
# To delete a resource record set, you must specify all the same values
|
422
|
+
# that you specified when you created it.
|
423
|
+
#
|
416
424
|
# **Change Batches and Transactional Changes**
|
417
425
|
#
|
418
426
|
# The request body must include a document with a
|
419
427
|
# `ChangeResourceRecordSetsRequest` element. The request body contains a
|
420
428
|
# list of change items, known as a change batch. Change batches are
|
421
|
-
# considered transactional changes.
|
422
|
-
#
|
423
|
-
#
|
424
|
-
#
|
425
|
-
#
|
426
|
-
#
|
427
|
-
# For example, a change batch request
|
428
|
-
#
|
429
|
-
#
|
430
|
-
#
|
431
|
-
#
|
432
|
-
#
|
433
|
-
#
|
434
|
-
#
|
435
|
-
#
|
436
|
-
# resource record set more than once in a
|
437
|
-
#
|
438
|
-
#
|
429
|
+
# considered transactional changes. Route 53 validates the changes in
|
430
|
+
# the request and then either makes all or none of the changes in the
|
431
|
+
# change batch request. This ensures that DNS routing isn't adversely
|
432
|
+
# affected by partial changes to the resource record sets in a hosted
|
433
|
+
# zone.
|
434
|
+
#
|
435
|
+
# For example, suppose a change batch request contains two changes: it
|
436
|
+
# deletes the `CNAME` resource record set for www.example.com and
|
437
|
+
# creates an alias resource record set for www.example.com. If
|
438
|
+
# validation for both records succeeds, Route 53 deletes the first
|
439
|
+
# resource record set and creates the second resource record set in a
|
440
|
+
# single operation. If validation for either the `DELETE` or the
|
441
|
+
# `CREATE` action fails, then the request is canceled, and the original
|
442
|
+
# `CNAME` record continues to exist.
|
443
|
+
#
|
444
|
+
# <note markdown="1"> If you try to delete the same resource record set more than once in a
|
445
|
+
# single change batch, Route 53 returns an `InvalidChangeBatch` error.
|
446
|
+
#
|
447
|
+
# </note>
|
439
448
|
#
|
440
449
|
# **Traffic Flow**
|
441
450
|
#
|
@@ -1109,7 +1118,7 @@ module Aws::Route53
|
|
1109
1118
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
1110
1119
|
# set_identifier: "ResourceRecordSetIdentifier",
|
1111
1120
|
# weight: 1,
|
1112
|
-
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1
|
1121
|
+
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1, af-south-1, eu-south-1
|
1113
1122
|
# geo_location: {
|
1114
1123
|
# continent_code: "GeoLocationContinentCode",
|
1115
1124
|
# country_code: "GeoLocationCountryCode",
|
@@ -1330,7 +1339,7 @@ module Aws::Route53
|
|
1330
1339
|
# enable_sni: false,
|
1331
1340
|
# 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
|
1332
1341
|
# alarm_identifier: {
|
1333
|
-
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
1342
|
+
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
1334
1343
|
# name: "AlarmName", # required
|
1335
1344
|
# },
|
1336
1345
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -1360,7 +1369,7 @@ module Aws::Route53
|
|
1360
1369
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
1361
1370
|
# resp.health_check.health_check_config.regions #=> Array
|
1362
1371
|
# 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"
|
1363
|
-
# 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-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
|
1372
|
+
# 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-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "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", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
1364
1373
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
1365
1374
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
1366
1375
|
# resp.health_check.health_check_version #=> Integer
|
@@ -1499,7 +1508,7 @@ module Aws::Route53
|
|
1499
1508
|
# resp = client.create_hosted_zone({
|
1500
1509
|
# name: "DNSName", # required
|
1501
1510
|
# vpc: {
|
1502
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1511
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
1503
1512
|
# vpc_id: "VPCId",
|
1504
1513
|
# },
|
1505
1514
|
# caller_reference: "Nonce", # required
|
@@ -1528,7 +1537,7 @@ module Aws::Route53
|
|
1528
1537
|
# resp.delegation_set.caller_reference #=> String
|
1529
1538
|
# resp.delegation_set.name_servers #=> Array
|
1530
1539
|
# resp.delegation_set.name_servers[0] #=> String
|
1531
|
-
# 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", "ap-east-1", "me-south-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
|
1540
|
+
# 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", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "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"
|
1532
1541
|
# resp.vpc.vpc_id #=> String
|
1533
1542
|
# resp.location #=> String
|
1534
1543
|
#
|
@@ -2023,7 +2032,7 @@ module Aws::Route53
|
|
2023
2032
|
# resp = client.create_vpc_association_authorization({
|
2024
2033
|
# hosted_zone_id: "ResourceId", # required
|
2025
2034
|
# vpc: { # required
|
2026
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
2035
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
2027
2036
|
# vpc_id: "VPCId",
|
2028
2037
|
# },
|
2029
2038
|
# })
|
@@ -2031,7 +2040,7 @@ module Aws::Route53
|
|
2031
2040
|
# @example Response structure
|
2032
2041
|
#
|
2033
2042
|
# resp.hosted_zone_id #=> String
|
2034
|
-
# 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", "ap-east-1", "me-south-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
|
2043
|
+
# 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", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "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"
|
2035
2044
|
# resp.vpc.vpc_id #=> String
|
2036
2045
|
#
|
2037
2046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
|
@@ -2323,7 +2332,7 @@ module Aws::Route53
|
|
2323
2332
|
# resp = client.delete_vpc_association_authorization({
|
2324
2333
|
# hosted_zone_id: "ResourceId", # required
|
2325
2334
|
# vpc: { # required
|
2326
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
2335
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
2327
2336
|
# vpc_id: "VPCId",
|
2328
2337
|
# },
|
2329
2338
|
# })
|
@@ -2368,7 +2377,7 @@ module Aws::Route53
|
|
2368
2377
|
# resp = client.disassociate_vpc_from_hosted_zone({
|
2369
2378
|
# hosted_zone_id: "ResourceId", # required
|
2370
2379
|
# vpc: { # required
|
2371
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
2380
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
2372
2381
|
# vpc_id: "VPCId",
|
2373
2382
|
# },
|
2374
2383
|
# comment: "DisassociateVPCComment",
|
@@ -2489,7 +2498,7 @@ module Aws::Route53
|
|
2489
2498
|
# resp.change_info.comment #=> String
|
2490
2499
|
#
|
2491
2500
|
#
|
2492
|
-
# The following waiters are defined for this operation (see {Client#
|
2501
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2493
2502
|
#
|
2494
2503
|
# * resource_record_sets_changed
|
2495
2504
|
#
|
@@ -2660,7 +2669,7 @@ module Aws::Route53
|
|
2660
2669
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
2661
2670
|
# resp.health_check.health_check_config.regions #=> Array
|
2662
2671
|
# 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"
|
2663
|
-
# 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-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
|
2672
|
+
# 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-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "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", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
2664
2673
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
2665
2674
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
2666
2675
|
# resp.health_check.health_check_version #=> Integer
|
@@ -2849,7 +2858,7 @@ module Aws::Route53
|
|
2849
2858
|
# resp.delegation_set.name_servers #=> Array
|
2850
2859
|
# resp.delegation_set.name_servers[0] #=> String
|
2851
2860
|
# resp.vp_cs #=> Array
|
2852
|
-
# 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", "ap-east-1", "me-south-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
|
2861
|
+
# 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", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "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"
|
2853
2862
|
# resp.vp_cs[0].vpc_id #=> String
|
2854
2863
|
#
|
2855
2864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
|
@@ -3314,7 +3323,7 @@ module Aws::Route53
|
|
3314
3323
|
# resp.health_checks[0].health_check_config.enable_sni #=> Boolean
|
3315
3324
|
# resp.health_checks[0].health_check_config.regions #=> Array
|
3316
3325
|
# 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"
|
3317
|
-
# 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-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
|
3326
|
+
# 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-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "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", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
3318
3327
|
# resp.health_checks[0].health_check_config.alarm_identifier.name #=> String
|
3319
3328
|
# resp.health_checks[0].health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
3320
3329
|
# resp.health_checks[0].health_check_version #=> Integer
|
@@ -3602,6 +3611,8 @@ module Aws::Route53
|
|
3602
3611
|
# * {Types::ListQueryLoggingConfigsResponse#query_logging_configs #query_logging_configs} => Array<Types::QueryLoggingConfig>
|
3603
3612
|
# * {Types::ListQueryLoggingConfigsResponse#next_token #next_token} => String
|
3604
3613
|
#
|
3614
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3615
|
+
#
|
3605
3616
|
# @example Request syntax with placeholder values
|
3606
3617
|
#
|
3607
3618
|
# resp = client.list_query_logging_configs({
|
@@ -3782,7 +3793,7 @@ module Aws::Route53
|
|
3782
3793
|
# resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
3783
3794
|
# resp.resource_record_sets[0].set_identifier #=> String
|
3784
3795
|
# resp.resource_record_sets[0].weight #=> Integer
|
3785
|
-
# 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", "ap-southeast-1", "ap-southeast-2", "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", "ap-south-1"
|
3796
|
+
# 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", "ap-southeast-1", "ap-southeast-2", "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", "ap-south-1", "af-south-1", "eu-south-1"
|
3786
3797
|
# resp.resource_record_sets[0].geo_location.continent_code #=> String
|
3787
3798
|
# resp.resource_record_sets[0].geo_location.country_code #=> String
|
3788
3799
|
# resp.resource_record_sets[0].geo_location.subdivision_code #=> String
|
@@ -4455,7 +4466,7 @@ module Aws::Route53
|
|
4455
4466
|
# resp.hosted_zone_id #=> String
|
4456
4467
|
# resp.next_token #=> String
|
4457
4468
|
# resp.vp_cs #=> Array
|
4458
|
-
# 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", "ap-east-1", "me-south-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
|
4469
|
+
# 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", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "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"
|
4459
4470
|
# resp.vp_cs[0].vpc_id #=> String
|
4460
4471
|
#
|
4461
4472
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
|
@@ -4905,7 +4916,7 @@ module Aws::Route53
|
|
4905
4916
|
# enable_sni: false,
|
4906
4917
|
# 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
|
4907
4918
|
# alarm_identifier: {
|
4908
|
-
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
4919
|
+
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
4909
4920
|
# name: "AlarmName", # required
|
4910
4921
|
# },
|
4911
4922
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -4935,7 +4946,7 @@ module Aws::Route53
|
|
4935
4946
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
4936
4947
|
# resp.health_check.health_check_config.regions #=> Array
|
4937
4948
|
# 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"
|
4938
|
-
# 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-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
|
4949
|
+
# 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-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "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", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
4939
4950
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
4940
4951
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
4941
4952
|
# resp.health_check.health_check_version #=> Integer
|
@@ -5127,7 +5138,7 @@ module Aws::Route53
|
|
5127
5138
|
params: params,
|
5128
5139
|
config: config)
|
5129
5140
|
context[:gem_name] = 'aws-sdk-route53'
|
5130
|
-
context[:gem_version] = '1.
|
5141
|
+
context[:gem_version] = '1.37.0'
|
5131
5142
|
Seahorse::Client::Request.new(handlers, context)
|
5132
5143
|
end
|
5133
5144
|
|
@@ -5193,9 +5204,9 @@ module Aws::Route53
|
|
5193
5204
|
# The following table lists the valid waiter names, the operations they call,
|
5194
5205
|
# and the default `:delay` and `:max_attempts` values.
|
5195
5206
|
#
|
5196
|
-
# | waiter_name | params
|
5197
|
-
# | ---------------------------- |
|
5198
|
-
# | resource_record_sets_changed | {#get_change} | 30 | 60 |
|
5207
|
+
# | waiter_name | params | :delay | :max_attempts |
|
5208
|
+
# | ---------------------------- | ------------------- | -------- | ------------- |
|
5209
|
+
# | resource_record_sets_changed | {Client#get_change} | 30 | 60 |
|
5199
5210
|
#
|
5200
5211
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
5201
5212
|
# because the waiter has entered a state that it will not transition
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -1233,6 +1235,7 @@ module Aws::Route53
|
|
1233
1235
|
o.errors << Shapes::ShapeRef.new(shape: PublicZoneVPCAssociation)
|
1234
1236
|
o.errors << Shapes::ShapeRef.new(shape: ConflictingDomainExists)
|
1235
1237
|
o.errors << Shapes::ShapeRef.new(shape: LimitsExceeded)
|
1238
|
+
o.errors << Shapes::ShapeRef.new(shape: PriorRequestNotComplete)
|
1236
1239
|
end)
|
1237
1240
|
|
1238
1241
|
api.add_operation(:change_resource_record_sets, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1753,6 +1756,12 @@ module Aws::Route53
|
|
1753
1756
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1754
1757
|
o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationToken)
|
1755
1758
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchHostedZone)
|
1759
|
+
o[:pager] = Aws::Pager.new(
|
1760
|
+
limit_key: "max_results",
|
1761
|
+
tokens: {
|
1762
|
+
"next_token" => "next_token"
|
1763
|
+
}
|
1764
|
+
)
|
1756
1765
|
end)
|
1757
1766
|
|
1758
1767
|
api.add_operation(:list_resource_record_sets, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -57,7 +59,7 @@ module Aws::Route53
|
|
57
59
|
# data as a hash:
|
58
60
|
#
|
59
61
|
# {
|
60
|
-
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
62
|
+
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
61
63
|
# name: "AlarmName", # required
|
62
64
|
# }
|
63
65
|
#
|
@@ -521,7 +523,7 @@ module Aws::Route53
|
|
521
523
|
# {
|
522
524
|
# hosted_zone_id: "ResourceId", # required
|
523
525
|
# vpc: { # required
|
524
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
526
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
525
527
|
# vpc_id: "VPCId",
|
526
528
|
# },
|
527
529
|
# comment: "AssociateVPCComment",
|
@@ -579,7 +581,7 @@ module Aws::Route53
|
|
579
581
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
580
582
|
# set_identifier: "ResourceRecordSetIdentifier",
|
581
583
|
# weight: 1,
|
582
|
-
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1
|
584
|
+
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1, af-south-1, eu-south-1
|
583
585
|
# geo_location: {
|
584
586
|
# continent_code: "GeoLocationContinentCode",
|
585
587
|
# country_code: "GeoLocationCountryCode",
|
@@ -656,7 +658,7 @@ module Aws::Route53
|
|
656
658
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
657
659
|
# set_identifier: "ResourceRecordSetIdentifier",
|
658
660
|
# weight: 1,
|
659
|
-
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1
|
661
|
+
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1, af-south-1, eu-south-1
|
660
662
|
# geo_location: {
|
661
663
|
# continent_code: "GeoLocationContinentCode",
|
662
664
|
# country_code: "GeoLocationCountryCode",
|
@@ -762,7 +764,7 @@ module Aws::Route53
|
|
762
764
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
763
765
|
# set_identifier: "ResourceRecordSetIdentifier",
|
764
766
|
# weight: 1,
|
765
|
-
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1
|
767
|
+
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1, af-south-1, eu-south-1
|
766
768
|
# geo_location: {
|
767
769
|
# continent_code: "GeoLocationContinentCode",
|
768
770
|
# country_code: "GeoLocationCountryCode",
|
@@ -971,11 +973,11 @@ module Aws::Route53
|
|
971
973
|
include Aws::Structure
|
972
974
|
end
|
973
975
|
|
974
|
-
# The cause of this error depends on
|
975
|
-
#
|
976
|
+
# The cause of this error depends on the operation that you're
|
977
|
+
# performing:
|
976
978
|
#
|
977
|
-
# * **
|
978
|
-
# that have a parent/child relationship (example.com and
|
979
|
+
# * **Create a public hosted zone:** Two hosted zones that have the same
|
980
|
+
# name or that have a parent/child relationship (example.com and
|
979
981
|
# test.example.com) can't have any common name servers. You tried to
|
980
982
|
# create a hosted zone that has the same name as an existing hosted
|
981
983
|
# zone or that's the parent or child of an existing hosted zone, and
|
@@ -983,12 +985,13 @@ module Aws::Route53
|
|
983
985
|
# with the existing hosted zone. For more information, see
|
984
986
|
# [CreateReusableDelegationSet][1].
|
985
987
|
#
|
986
|
-
# * **
|
987
|
-
# already
|
988
|
-
#
|
989
|
-
#
|
990
|
-
#
|
991
|
-
#
|
988
|
+
# * **Create a private hosted zone:** A hosted zone with the specified
|
989
|
+
# name already exists and is already associated with the Amazon VPC
|
990
|
+
# that you specified.
|
991
|
+
#
|
992
|
+
# * **Associate VPCs with a private hosted zone:** The VPC that you
|
993
|
+
# specified is already associated with another hosted zone that has
|
994
|
+
# the same name.
|
992
995
|
#
|
993
996
|
#
|
994
997
|
#
|
@@ -1044,7 +1047,7 @@ module Aws::Route53
|
|
1044
1047
|
# enable_sni: false,
|
1045
1048
|
# 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
|
1046
1049
|
# alarm_identifier: {
|
1047
|
-
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
1050
|
+
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
1048
1051
|
# name: "AlarmName", # required
|
1049
1052
|
# },
|
1050
1053
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -1116,7 +1119,7 @@ module Aws::Route53
|
|
1116
1119
|
# {
|
1117
1120
|
# name: "DNSName", # required
|
1118
1121
|
# vpc: {
|
1119
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1122
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
1120
1123
|
# vpc_id: "VPCId",
|
1121
1124
|
# },
|
1122
1125
|
# caller_reference: "Nonce", # required
|
@@ -1542,7 +1545,7 @@ module Aws::Route53
|
|
1542
1545
|
# {
|
1543
1546
|
# hosted_zone_id: "ResourceId", # required
|
1544
1547
|
# vpc: { # required
|
1545
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1548
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
1546
1549
|
# vpc_id: "VPCId",
|
1547
1550
|
# },
|
1548
1551
|
# }
|
@@ -1863,7 +1866,7 @@ module Aws::Route53
|
|
1863
1866
|
# {
|
1864
1867
|
# hosted_zone_id: "ResourceId", # required
|
1865
1868
|
# vpc: { # required
|
1866
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1869
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
1867
1870
|
# vpc_id: "VPCId",
|
1868
1871
|
# },
|
1869
1872
|
# }
|
@@ -1925,7 +1928,7 @@ module Aws::Route53
|
|
1925
1928
|
# {
|
1926
1929
|
# hosted_zone_id: "ResourceId", # required
|
1927
1930
|
# vpc: { # required
|
1928
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1931
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
1929
1932
|
# vpc_id: "VPCId",
|
1930
1933
|
# },
|
1931
1934
|
# comment: "DisassociateVPCComment",
|
@@ -2878,7 +2881,7 @@ module Aws::Route53
|
|
2878
2881
|
# enable_sni: false,
|
2879
2882
|
# 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
|
2880
2883
|
# alarm_identifier: {
|
2881
|
-
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
2884
|
+
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
2882
2885
|
# name: "AlarmName", # required
|
2883
2886
|
# },
|
2884
2887
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -5381,7 +5384,7 @@ module Aws::Route53
|
|
5381
5384
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
5382
5385
|
# set_identifier: "ResourceRecordSetIdentifier",
|
5383
5386
|
# weight: 1,
|
5384
|
-
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1
|
5387
|
+
# 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, ap-southeast-1, ap-southeast-2, 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, ap-south-1, af-south-1, eu-south-1
|
5385
5388
|
# geo_location: {
|
5386
5389
|
# continent_code: "GeoLocationContinentCode",
|
5387
5390
|
# country_code: "GeoLocationCountryCode",
|
@@ -6627,7 +6630,7 @@ module Aws::Route53
|
|
6627
6630
|
# enable_sni: false,
|
6628
6631
|
# 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
|
6629
6632
|
# alarm_identifier: {
|
6630
|
-
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
6633
|
+
# 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-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
6631
6634
|
# name: "AlarmName", # required
|
6632
6635
|
# },
|
6633
6636
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -7174,7 +7177,7 @@ module Aws::Route53
|
|
7174
7177
|
# data as a hash:
|
7175
7178
|
#
|
7176
7179
|
# {
|
7177
|
-
# 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, ap-east-1, me-south-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
7180
|
+
# 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, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, 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
|
7178
7181
|
# vpc_id: "VPCId",
|
7179
7182
|
# }
|
7180
7183
|
#
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -65,9 +67,9 @@ module Aws::Route53
|
|
65
67
|
# The following table lists the valid waiter names, the operations they call,
|
66
68
|
# and the default `:delay` and `:max_attempts` values.
|
67
69
|
#
|
68
|
-
# | waiter_name | params
|
69
|
-
# | ---------------------------- |
|
70
|
-
# | resource_record_sets_changed | {#get_change} | 30 | 60 |
|
70
|
+
# | waiter_name | params | :delay | :max_attempts |
|
71
|
+
# | ---------------------------- | ------------------- | -------- | ------------- |
|
72
|
+
# | resource_record_sets_changed | {Client#get_change} | 30 | 60 |
|
71
73
|
#
|
72
74
|
module Waiters
|
73
75
|
|
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.37.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: 2020-
|
11
|
+
date: 2020-06-17 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.
|
22
|
+
version: 3.99.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.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
version: '0'
|
84
84
|
requirements: []
|
85
85
|
rubyforge_project:
|
86
|
-
rubygems_version: 2.
|
86
|
+
rubygems_version: 2.7.6.2
|
87
87
|
signing_key:
|
88
88
|
specification_version: 4
|
89
89
|
summary: AWS SDK for Ruby - Route 53
|