aws-sdk-route53 1.32.0 → 1.33.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 +1 -1
- data/lib/aws-sdk-route53/client.rb +50 -43
- data/lib/aws-sdk-route53/client_api.rb +6 -0
- data/lib/aws-sdk-route53/types.rb +25 -24
- data/lib/aws-sdk-route53/waiters.rb +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 30b652b42e117d1ab4e4a2dbd3aac3adffe034f12206ac098a3d60c10310b457
|
4
|
+
data.tar.gz: 97e0a065d2e686722b8747bc79f89f09eb4291a2c7d61f9709bf696f3d8e0e8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f44af7ad66aed522ef10753ac167521de4e1bdfd1a1c0275d6cbd74212b6889a69cffbeb1178d2ac9784b805631d381596448976107815c314bb7233b0054f5
|
7
|
+
data.tar.gz: 57b30b8ec435ebb7f729252dd38e5ced918634d22348cfffd7c2d4c320371ac31343c93831e90719e039fe8850c538c4aed2cb2acb2ebe71448f1494aaf38638
|
data/lib/aws-sdk-route53.rb
CHANGED
@@ -271,8 +271,7 @@ module Aws::Route53
|
|
271
271
|
#
|
272
272
|
# @option options [Integer] :http_read_timeout (60) The default
|
273
273
|
# 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}.
|
274
|
+
# safely be set per-request on the session.
|
276
275
|
#
|
277
276
|
# @option options [Float] :http_idle_timeout (5) The number of
|
278
277
|
# seconds a connection is allowed to sit idle before it is
|
@@ -284,7 +283,7 @@ module Aws::Route53
|
|
284
283
|
# request body. This option has no effect unless the request has
|
285
284
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
286
285
|
# disables this behaviour. This value can safely be set per
|
287
|
-
# request on the session
|
286
|
+
# request on the session.
|
288
287
|
#
|
289
288
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
290
289
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -385,7 +384,7 @@ module Aws::Route53
|
|
385
384
|
# resp = client.associate_vpc_with_hosted_zone({
|
386
385
|
# hosted_zone_id: "ResourceId", # required
|
387
386
|
# 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
|
387
|
+
# 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
|
389
388
|
# vpc_id: "VPCId",
|
390
389
|
# },
|
391
390
|
# comment: "AssociateVPCComment",
|
@@ -413,29 +412,35 @@ module Aws::Route53
|
|
413
412
|
# resource record set that routes traffic for test.example.com to a web
|
414
413
|
# server that has an IP address of 192.0.2.44.
|
415
414
|
#
|
415
|
+
# **Deleting Resource Record Sets**
|
416
|
+
#
|
417
|
+
# To delete a resource record set, you must specify all the same values
|
418
|
+
# that you specified when you created it.
|
419
|
+
#
|
416
420
|
# **Change Batches and Transactional Changes**
|
417
421
|
#
|
418
422
|
# The request body must include a document with a
|
419
423
|
# `ChangeResourceRecordSetsRequest` element. The request body contains a
|
420
424
|
# 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
|
-
#
|
425
|
+
# considered transactional changes. Route 53 validates the changes in
|
426
|
+
# the request and then either makes all or none of the changes in the
|
427
|
+
# change batch request. This ensures that DNS routing isn't adversely
|
428
|
+
# affected by partial changes to the resource record sets in a hosted
|
429
|
+
# zone.
|
430
|
+
#
|
431
|
+
# For example, suppose a change batch request contains two changes: it
|
432
|
+
# deletes the `CNAME` resource record set for www.example.com and
|
433
|
+
# creates an alias resource record set for www.example.com. If
|
434
|
+
# validation for both records succeeds, Route 53 deletes the first
|
435
|
+
# resource record set and creates the second resource record set in a
|
436
|
+
# single operation. If validation for either the `DELETE` or the
|
437
|
+
# `CREATE` action fails, then the request is canceled, and the original
|
438
|
+
# `CNAME` record continues to exist.
|
439
|
+
#
|
440
|
+
# <note markdown="1"> If you try to delete the same resource record set more than once in a
|
441
|
+
# single change batch, Route 53 returns an `InvalidChangeBatch` error.
|
442
|
+
#
|
443
|
+
# </note>
|
439
444
|
#
|
440
445
|
# **Traffic Flow**
|
441
446
|
#
|
@@ -1109,7 +1114,7 @@ module Aws::Route53
|
|
1109
1114
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
1110
1115
|
# set_identifier: "ResourceRecordSetIdentifier",
|
1111
1116
|
# 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
|
1117
|
+
# 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
|
1113
1118
|
# geo_location: {
|
1114
1119
|
# continent_code: "GeoLocationContinentCode",
|
1115
1120
|
# country_code: "GeoLocationCountryCode",
|
@@ -1330,7 +1335,7 @@ module Aws::Route53
|
|
1330
1335
|
# enable_sni: false,
|
1331
1336
|
# 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
1337
|
# 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
|
1338
|
+
# 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
1334
1339
|
# name: "AlarmName", # required
|
1335
1340
|
# },
|
1336
1341
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -1360,7 +1365,7 @@ module Aws::Route53
|
|
1360
1365
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
1361
1366
|
# resp.health_check.health_check_config.regions #=> Array
|
1362
1367
|
# 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"
|
1368
|
+
# 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", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
1364
1369
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
1365
1370
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
1366
1371
|
# resp.health_check.health_check_version #=> Integer
|
@@ -1499,7 +1504,7 @@ module Aws::Route53
|
|
1499
1504
|
# resp = client.create_hosted_zone({
|
1500
1505
|
# name: "DNSName", # required
|
1501
1506
|
# 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
|
1507
|
+
# 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
|
1503
1508
|
# vpc_id: "VPCId",
|
1504
1509
|
# },
|
1505
1510
|
# caller_reference: "Nonce", # required
|
@@ -1528,7 +1533,7 @@ module Aws::Route53
|
|
1528
1533
|
# resp.delegation_set.caller_reference #=> String
|
1529
1534
|
# resp.delegation_set.name_servers #=> Array
|
1530
1535
|
# 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"
|
1536
|
+
# 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"
|
1532
1537
|
# resp.vpc.vpc_id #=> String
|
1533
1538
|
# resp.location #=> String
|
1534
1539
|
#
|
@@ -2023,7 +2028,7 @@ module Aws::Route53
|
|
2023
2028
|
# resp = client.create_vpc_association_authorization({
|
2024
2029
|
# hosted_zone_id: "ResourceId", # required
|
2025
2030
|
# 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
|
2031
|
+
# 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
|
2027
2032
|
# vpc_id: "VPCId",
|
2028
2033
|
# },
|
2029
2034
|
# })
|
@@ -2031,7 +2036,7 @@ module Aws::Route53
|
|
2031
2036
|
# @example Response structure
|
2032
2037
|
#
|
2033
2038
|
# 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"
|
2039
|
+
# 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"
|
2035
2040
|
# resp.vpc.vpc_id #=> String
|
2036
2041
|
#
|
2037
2042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
|
@@ -2323,7 +2328,7 @@ module Aws::Route53
|
|
2323
2328
|
# resp = client.delete_vpc_association_authorization({
|
2324
2329
|
# hosted_zone_id: "ResourceId", # required
|
2325
2330
|
# 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
|
2331
|
+
# 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
|
2327
2332
|
# vpc_id: "VPCId",
|
2328
2333
|
# },
|
2329
2334
|
# })
|
@@ -2368,7 +2373,7 @@ module Aws::Route53
|
|
2368
2373
|
# resp = client.disassociate_vpc_from_hosted_zone({
|
2369
2374
|
# hosted_zone_id: "ResourceId", # required
|
2370
2375
|
# 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
|
2376
|
+
# 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
|
2372
2377
|
# vpc_id: "VPCId",
|
2373
2378
|
# },
|
2374
2379
|
# comment: "DisassociateVPCComment",
|
@@ -2489,7 +2494,7 @@ module Aws::Route53
|
|
2489
2494
|
# resp.change_info.comment #=> String
|
2490
2495
|
#
|
2491
2496
|
#
|
2492
|
-
# The following waiters are defined for this operation (see {Client#
|
2497
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2493
2498
|
#
|
2494
2499
|
# * resource_record_sets_changed
|
2495
2500
|
#
|
@@ -2660,7 +2665,7 @@ module Aws::Route53
|
|
2660
2665
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
2661
2666
|
# resp.health_check.health_check_config.regions #=> Array
|
2662
2667
|
# 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"
|
2668
|
+
# 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", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
2664
2669
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
2665
2670
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
2666
2671
|
# resp.health_check.health_check_version #=> Integer
|
@@ -2849,7 +2854,7 @@ module Aws::Route53
|
|
2849
2854
|
# resp.delegation_set.name_servers #=> Array
|
2850
2855
|
# resp.delegation_set.name_servers[0] #=> String
|
2851
2856
|
# 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"
|
2857
|
+
# 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"
|
2853
2858
|
# resp.vp_cs[0].vpc_id #=> String
|
2854
2859
|
#
|
2855
2860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
|
@@ -3314,7 +3319,7 @@ module Aws::Route53
|
|
3314
3319
|
# resp.health_checks[0].health_check_config.enable_sni #=> Boolean
|
3315
3320
|
# resp.health_checks[0].health_check_config.regions #=> Array
|
3316
3321
|
# 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"
|
3322
|
+
# 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", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
3318
3323
|
# resp.health_checks[0].health_check_config.alarm_identifier.name #=> String
|
3319
3324
|
# resp.health_checks[0].health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
3320
3325
|
# resp.health_checks[0].health_check_version #=> Integer
|
@@ -3602,6 +3607,8 @@ module Aws::Route53
|
|
3602
3607
|
# * {Types::ListQueryLoggingConfigsResponse#query_logging_configs #query_logging_configs} => Array<Types::QueryLoggingConfig>
|
3603
3608
|
# * {Types::ListQueryLoggingConfigsResponse#next_token #next_token} => String
|
3604
3609
|
#
|
3610
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3611
|
+
#
|
3605
3612
|
# @example Request syntax with placeholder values
|
3606
3613
|
#
|
3607
3614
|
# resp = client.list_query_logging_configs({
|
@@ -3782,7 +3789,7 @@ module Aws::Route53
|
|
3782
3789
|
# resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
3783
3790
|
# resp.resource_record_sets[0].set_identifier #=> String
|
3784
3791
|
# 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"
|
3792
|
+
# 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"
|
3786
3793
|
# resp.resource_record_sets[0].geo_location.continent_code #=> String
|
3787
3794
|
# resp.resource_record_sets[0].geo_location.country_code #=> String
|
3788
3795
|
# resp.resource_record_sets[0].geo_location.subdivision_code #=> String
|
@@ -4455,7 +4462,7 @@ module Aws::Route53
|
|
4455
4462
|
# resp.hosted_zone_id #=> String
|
4456
4463
|
# resp.next_token #=> String
|
4457
4464
|
# 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"
|
4465
|
+
# 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"
|
4459
4466
|
# resp.vp_cs[0].vpc_id #=> String
|
4460
4467
|
#
|
4461
4468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
|
@@ -4905,7 +4912,7 @@ module Aws::Route53
|
|
4905
4912
|
# enable_sni: false,
|
4906
4913
|
# 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
4914
|
# 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
|
4915
|
+
# 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
4909
4916
|
# name: "AlarmName", # required
|
4910
4917
|
# },
|
4911
4918
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -4935,7 +4942,7 @@ module Aws::Route53
|
|
4935
4942
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
4936
4943
|
# resp.health_check.health_check_config.regions #=> Array
|
4937
4944
|
# 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"
|
4945
|
+
# 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", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
4939
4946
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
4940
4947
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
4941
4948
|
# resp.health_check.health_check_version #=> Integer
|
@@ -5127,7 +5134,7 @@ module Aws::Route53
|
|
5127
5134
|
params: params,
|
5128
5135
|
config: config)
|
5129
5136
|
context[:gem_name] = 'aws-sdk-route53'
|
5130
|
-
context[:gem_version] = '1.
|
5137
|
+
context[:gem_version] = '1.33.0'
|
5131
5138
|
Seahorse::Client::Request.new(handlers, context)
|
5132
5139
|
end
|
5133
5140
|
|
@@ -5193,9 +5200,9 @@ module Aws::Route53
|
|
5193
5200
|
# The following table lists the valid waiter names, the operations they call,
|
5194
5201
|
# and the default `:delay` and `:max_attempts` values.
|
5195
5202
|
#
|
5196
|
-
# | waiter_name | params
|
5197
|
-
# | ---------------------------- |
|
5198
|
-
# | resource_record_sets_changed | {#get_change} | 30 | 60 |
|
5203
|
+
# | waiter_name | params | :delay | :max_attempts |
|
5204
|
+
# | ---------------------------- | ------------------- | -------- | ------------- |
|
5205
|
+
# | resource_record_sets_changed | {Client#get_change} | 30 | 60 |
|
5199
5206
|
#
|
5200
5207
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
5201
5208
|
# because the waiter has entered a state that it will not transition
|
@@ -1753,6 +1753,12 @@ module Aws::Route53
|
|
1753
1753
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1754
1754
|
o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationToken)
|
1755
1755
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchHostedZone)
|
1756
|
+
o[:pager] = Aws::Pager.new(
|
1757
|
+
limit_key: "max_results",
|
1758
|
+
tokens: {
|
1759
|
+
"next_token" => "next_token"
|
1760
|
+
}
|
1761
|
+
)
|
1756
1762
|
end)
|
1757
1763
|
|
1758
1764
|
api.add_operation(:list_resource_record_sets, Seahorse::Model::Operation.new.tap do |o|
|
@@ -57,7 +57,7 @@ module Aws::Route53
|
|
57
57
|
# data as a hash:
|
58
58
|
#
|
59
59
|
# {
|
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
|
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, af-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
61
61
|
# name: "AlarmName", # required
|
62
62
|
# }
|
63
63
|
#
|
@@ -521,7 +521,7 @@ module Aws::Route53
|
|
521
521
|
# {
|
522
522
|
# hosted_zone_id: "ResourceId", # required
|
523
523
|
# 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
|
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, 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
|
525
525
|
# vpc_id: "VPCId",
|
526
526
|
# },
|
527
527
|
# comment: "AssociateVPCComment",
|
@@ -579,7 +579,7 @@ module Aws::Route53
|
|
579
579
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
580
580
|
# set_identifier: "ResourceRecordSetIdentifier",
|
581
581
|
# 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
|
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, af-south-1
|
583
583
|
# geo_location: {
|
584
584
|
# continent_code: "GeoLocationContinentCode",
|
585
585
|
# country_code: "GeoLocationCountryCode",
|
@@ -656,7 +656,7 @@ module Aws::Route53
|
|
656
656
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
657
657
|
# set_identifier: "ResourceRecordSetIdentifier",
|
658
658
|
# 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
|
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, af-south-1
|
660
660
|
# geo_location: {
|
661
661
|
# continent_code: "GeoLocationContinentCode",
|
662
662
|
# country_code: "GeoLocationCountryCode",
|
@@ -762,7 +762,7 @@ module Aws::Route53
|
|
762
762
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
763
763
|
# set_identifier: "ResourceRecordSetIdentifier",
|
764
764
|
# 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
|
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, af-south-1
|
766
766
|
# geo_location: {
|
767
767
|
# continent_code: "GeoLocationContinentCode",
|
768
768
|
# country_code: "GeoLocationCountryCode",
|
@@ -971,11 +971,11 @@ module Aws::Route53
|
|
971
971
|
include Aws::Structure
|
972
972
|
end
|
973
973
|
|
974
|
-
# The cause of this error depends on
|
975
|
-
#
|
974
|
+
# The cause of this error depends on the operation that you're
|
975
|
+
# performing:
|
976
976
|
#
|
977
|
-
# * **
|
978
|
-
# that have a parent/child relationship (example.com and
|
977
|
+
# * **Create a public hosted zone:** Two hosted zones that have the same
|
978
|
+
# name or that have a parent/child relationship (example.com and
|
979
979
|
# test.example.com) can't have any common name servers. You tried to
|
980
980
|
# create a hosted zone that has the same name as an existing hosted
|
981
981
|
# zone or that's the parent or child of an existing hosted zone, and
|
@@ -983,12 +983,13 @@ module Aws::Route53
|
|
983
983
|
# with the existing hosted zone. For more information, see
|
984
984
|
# [CreateReusableDelegationSet][1].
|
985
985
|
#
|
986
|
-
# * **
|
987
|
-
# already
|
988
|
-
#
|
989
|
-
#
|
990
|
-
#
|
991
|
-
#
|
986
|
+
# * **Create a private hosted zone:** A hosted zone with the specified
|
987
|
+
# name already exists and is already associated with the Amazon VPC
|
988
|
+
# that you specified.
|
989
|
+
#
|
990
|
+
# * **Associate VPCs with a private hosted zone:** The VPC that you
|
991
|
+
# specified is already associated with another hosted zone that has
|
992
|
+
# the same name.
|
992
993
|
#
|
993
994
|
#
|
994
995
|
#
|
@@ -1044,7 +1045,7 @@ module Aws::Route53
|
|
1044
1045
|
# enable_sni: false,
|
1045
1046
|
# 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
1047
|
# 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
|
1048
|
+
# 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
1048
1049
|
# name: "AlarmName", # required
|
1049
1050
|
# },
|
1050
1051
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -1116,7 +1117,7 @@ module Aws::Route53
|
|
1116
1117
|
# {
|
1117
1118
|
# name: "DNSName", # required
|
1118
1119
|
# 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
|
1120
|
+
# 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
|
1120
1121
|
# vpc_id: "VPCId",
|
1121
1122
|
# },
|
1122
1123
|
# caller_reference: "Nonce", # required
|
@@ -1542,7 +1543,7 @@ module Aws::Route53
|
|
1542
1543
|
# {
|
1543
1544
|
# hosted_zone_id: "ResourceId", # required
|
1544
1545
|
# 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
|
1546
|
+
# 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
|
1546
1547
|
# vpc_id: "VPCId",
|
1547
1548
|
# },
|
1548
1549
|
# }
|
@@ -1863,7 +1864,7 @@ module Aws::Route53
|
|
1863
1864
|
# {
|
1864
1865
|
# hosted_zone_id: "ResourceId", # required
|
1865
1866
|
# 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
|
1867
|
+
# 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
|
1867
1868
|
# vpc_id: "VPCId",
|
1868
1869
|
# },
|
1869
1870
|
# }
|
@@ -1925,7 +1926,7 @@ module Aws::Route53
|
|
1925
1926
|
# {
|
1926
1927
|
# hosted_zone_id: "ResourceId", # required
|
1927
1928
|
# 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
|
1929
|
+
# 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
|
1929
1930
|
# vpc_id: "VPCId",
|
1930
1931
|
# },
|
1931
1932
|
# comment: "DisassociateVPCComment",
|
@@ -2878,7 +2879,7 @@ module Aws::Route53
|
|
2878
2879
|
# enable_sni: false,
|
2879
2880
|
# 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
2881
|
# 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
|
2882
|
+
# 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
2882
2883
|
# name: "AlarmName", # required
|
2883
2884
|
# },
|
2884
2885
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -5381,7 +5382,7 @@ module Aws::Route53
|
|
5381
5382
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
5382
5383
|
# set_identifier: "ResourceRecordSetIdentifier",
|
5383
5384
|
# 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
|
5385
|
+
# 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
|
5385
5386
|
# geo_location: {
|
5386
5387
|
# continent_code: "GeoLocationContinentCode",
|
5387
5388
|
# country_code: "GeoLocationCountryCode",
|
@@ -6627,7 +6628,7 @@ module Aws::Route53
|
|
6627
6628
|
# enable_sni: false,
|
6628
6629
|
# 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
6630
|
# 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
|
6631
|
+
# 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, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
6631
6632
|
# name: "AlarmName", # required
|
6632
6633
|
# },
|
6633
6634
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -7174,7 +7175,7 @@ module Aws::Route53
|
|
7174
7175
|
# data as a hash:
|
7175
7176
|
#
|
7176
7177
|
# {
|
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
|
7178
|
+
# 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
|
7178
7179
|
# vpc_id: "VPCId",
|
7179
7180
|
# }
|
7180
7181
|
#
|
@@ -65,9 +65,9 @@ module Aws::Route53
|
|
65
65
|
# The following table lists the valid waiter names, the operations they call,
|
66
66
|
# and the default `:delay` and `:max_attempts` values.
|
67
67
|
#
|
68
|
-
# | waiter_name | params
|
69
|
-
# | ---------------------------- |
|
70
|
-
# | resource_record_sets_changed | {#get_change} | 30 | 60 |
|
68
|
+
# | waiter_name | params | :delay | :max_attempts |
|
69
|
+
# | ---------------------------- | ------------------- | -------- | ------------- |
|
70
|
+
# | resource_record_sets_changed | {Client#get_change} | 30 | 60 |
|
71
71
|
#
|
72
72
|
module Waiters
|
73
73
|
|
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.33.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-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -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
|