aws-sdk-route53resolver 1.80.0 → 1.81.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53resolver/client.rb +42 -25
- data/lib/aws-sdk-route53resolver/client_api.rb +3 -0
- data/lib/aws-sdk-route53resolver/types.rb +45 -16
- data/lib/aws-sdk-route53resolver.rb +1 -1
- data/sig/client.rbs +4 -3
- data/sig/types.rbs +7 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0983a2f95053235c14278b586340b796aecad1072dbddf0643064e40e4529cb8'
|
4
|
+
data.tar.gz: 64c9db908040e0a0e0fda9d7f36f78aa086c7a33ec84a23dfb056f4abbe4f93a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1da591ce9703063f48bca2ff0157b548b3d79d416aa430c1a495d908cba344060e783231650a384ca00e7e1fed8889f23d620b887db7255811f0776602bfebca
|
7
|
+
data.tar.gz: 2375b58e24f027a2570e0a5c114fd1c1882f817010a9d08a584e42336120a8bf05d18bd98bca33893636958fbddfa90381986871a7e6eb7ea39b41ee4ccda0f7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.81.0 (2025-06-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for iterative DNS queries through the new INBOUND_DELEGATION endpoint. Add delegation support through the Outbound Endpoints with DELEGATE rules.
|
8
|
+
|
4
9
|
1.80.0 (2025-06-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.81.0
|
@@ -612,7 +612,7 @@ module Aws::Route53Resolver
|
|
612
612
|
# resp.resolver_endpoint.name #=> String
|
613
613
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
614
614
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
615
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
615
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
616
616
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
617
617
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
618
618
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -1190,10 +1190,13 @@ module Aws::Route53Resolver
|
|
1190
1190
|
# Specify the applicable value:
|
1191
1191
|
#
|
1192
1192
|
# * `INBOUND`: Resolver forwards DNS queries to the DNS service for a
|
1193
|
-
# VPC from your network
|
1193
|
+
# VPC from your network.
|
1194
1194
|
#
|
1195
1195
|
# * `OUTBOUND`: Resolver forwards DNS queries from the DNS service for a
|
1196
|
-
# VPC to your network
|
1196
|
+
# VPC to your network.
|
1197
|
+
#
|
1198
|
+
# * `INBOUND_DELEGATION`: Resolver delegates queries to Route 53 private
|
1199
|
+
# hosted zones from your network.
|
1197
1200
|
#
|
1198
1201
|
# @option params [required, Array<Types::IpAddressRequest>] :ip_addresses
|
1199
1202
|
# The subnets and IP addresses in your VPC that DNS queries originate
|
@@ -1224,9 +1227,9 @@ module Aws::Route53Resolver
|
|
1224
1227
|
#
|
1225
1228
|
# @option params [Array<String>] :protocols
|
1226
1229
|
# The protocols you want to use for the endpoint. DoH-FIPS is applicable
|
1227
|
-
# for inbound endpoints only.
|
1230
|
+
# for default inbound endpoints only.
|
1228
1231
|
#
|
1229
|
-
# For
|
1232
|
+
# For a default inbound endpoint you can apply the protocols as follows:
|
1230
1233
|
#
|
1231
1234
|
# * Do53 and DoH in combination.
|
1232
1235
|
#
|
@@ -1240,6 +1243,8 @@ module Aws::Route53Resolver
|
|
1240
1243
|
#
|
1241
1244
|
# * None, which is treated as Do53.
|
1242
1245
|
#
|
1246
|
+
# For a delegation inbound endpoint you can use Do53 only.
|
1247
|
+
#
|
1243
1248
|
# For an outbound endpoint you can apply the protocols as follows:
|
1244
1249
|
#
|
1245
1250
|
# * Do53 and DoH in combination.
|
@@ -1260,7 +1265,7 @@ module Aws::Route53Resolver
|
|
1260
1265
|
# creator_request_id: "CreatorRequestId", # required
|
1261
1266
|
# name: "Name",
|
1262
1267
|
# security_group_ids: ["ResourceId"], # required
|
1263
|
-
# direction: "INBOUND", # required, accepts INBOUND, OUTBOUND
|
1268
|
+
# direction: "INBOUND", # required, accepts INBOUND, OUTBOUND, INBOUND_DELEGATION
|
1264
1269
|
# ip_addresses: [ # required
|
1265
1270
|
# {
|
1266
1271
|
# subnet_id: "SubnetId", # required
|
@@ -1288,7 +1293,7 @@ module Aws::Route53Resolver
|
|
1288
1293
|
# resp.resolver_endpoint.name #=> String
|
1289
1294
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
1290
1295
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
1291
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
1296
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
1292
1297
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
1293
1298
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
1294
1299
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -1425,7 +1430,7 @@ module Aws::Route53Resolver
|
|
1425
1430
|
#
|
1426
1431
|
# @option params [required, String] :rule_type
|
1427
1432
|
# When you want to forward DNS queries for specified domain name to
|
1428
|
-
# resolvers on your network, specify `FORWARD`.
|
1433
|
+
# resolvers on your network, specify `FORWARD` or `DELEGATE`.
|
1429
1434
|
#
|
1430
1435
|
# When you have a forwarding rule to forward DNS queries for a domain to
|
1431
1436
|
# your network and you want Resolver to process queries for a subdomain
|
@@ -1462,6 +1467,10 @@ module Aws::Route53Resolver
|
|
1462
1467
|
# A list of the tag keys and values that you want to associate with the
|
1463
1468
|
# endpoint.
|
1464
1469
|
#
|
1470
|
+
# @option params [String] :delegation_record
|
1471
|
+
# DNS queries with the delegation records that match this domain name
|
1472
|
+
# are forwarded to the resolvers on your network.
|
1473
|
+
#
|
1465
1474
|
# @return [Types::CreateResolverRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1466
1475
|
#
|
1467
1476
|
# * {Types::CreateResolverRuleResponse#resolver_rule #resolver_rule} => Types::ResolverRule
|
@@ -1471,7 +1480,7 @@ module Aws::Route53Resolver
|
|
1471
1480
|
# resp = client.create_resolver_rule({
|
1472
1481
|
# creator_request_id: "CreatorRequestId", # required
|
1473
1482
|
# name: "Name",
|
1474
|
-
# rule_type: "FORWARD", # required, accepts FORWARD, SYSTEM, RECURSIVE
|
1483
|
+
# rule_type: "FORWARD", # required, accepts FORWARD, SYSTEM, RECURSIVE, DELEGATE
|
1475
1484
|
# domain_name: "DomainName",
|
1476
1485
|
# target_ips: [
|
1477
1486
|
# {
|
@@ -1489,6 +1498,7 @@ module Aws::Route53Resolver
|
|
1489
1498
|
# value: "TagValue", # required
|
1490
1499
|
# },
|
1491
1500
|
# ],
|
1501
|
+
# delegation_record: "DelegationRecord",
|
1492
1502
|
# })
|
1493
1503
|
#
|
1494
1504
|
# @example Response structure
|
@@ -1499,7 +1509,7 @@ module Aws::Route53Resolver
|
|
1499
1509
|
# resp.resolver_rule.domain_name #=> String
|
1500
1510
|
# resp.resolver_rule.status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
1501
1511
|
# resp.resolver_rule.status_message #=> String
|
1502
|
-
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
1512
|
+
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
1503
1513
|
# resp.resolver_rule.name #=> String
|
1504
1514
|
# resp.resolver_rule.target_ips #=> Array
|
1505
1515
|
# resp.resolver_rule.target_ips[0].ip #=> String
|
@@ -1512,6 +1522,7 @@ module Aws::Route53Resolver
|
|
1512
1522
|
# resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
1513
1523
|
# resp.resolver_rule.creation_time #=> String
|
1514
1524
|
# resp.resolver_rule.modification_time #=> String
|
1525
|
+
# resp.resolver_rule.delegation_record #=> String
|
1515
1526
|
#
|
1516
1527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverRule AWS API Documentation
|
1517
1528
|
#
|
@@ -1762,7 +1773,7 @@ module Aws::Route53Resolver
|
|
1762
1773
|
# resp.resolver_endpoint.name #=> String
|
1763
1774
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
1764
1775
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
1765
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
1776
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
1766
1777
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
1767
1778
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
1768
1779
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -1872,7 +1883,7 @@ module Aws::Route53Resolver
|
|
1872
1883
|
# resp.resolver_rule.domain_name #=> String
|
1873
1884
|
# resp.resolver_rule.status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
1874
1885
|
# resp.resolver_rule.status_message #=> String
|
1875
|
-
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
1886
|
+
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
1876
1887
|
# resp.resolver_rule.name #=> String
|
1877
1888
|
# resp.resolver_rule.target_ips #=> Array
|
1878
1889
|
# resp.resolver_rule.target_ips[0].ip #=> String
|
@@ -1885,6 +1896,7 @@ module Aws::Route53Resolver
|
|
1885
1896
|
# resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
1886
1897
|
# resp.resolver_rule.creation_time #=> String
|
1887
1898
|
# resp.resolver_rule.modification_time #=> String
|
1899
|
+
# resp.resolver_rule.delegation_record #=> String
|
1888
1900
|
#
|
1889
1901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverRule AWS API Documentation
|
1890
1902
|
#
|
@@ -1978,7 +1990,7 @@ module Aws::Route53Resolver
|
|
1978
1990
|
# resp.resolver_endpoint.name #=> String
|
1979
1991
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
1980
1992
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
1981
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
1993
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
1982
1994
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
1983
1995
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
1984
1996
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -2408,7 +2420,7 @@ module Aws::Route53Resolver
|
|
2408
2420
|
# resp.resolver_endpoint.name #=> String
|
2409
2421
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
2410
2422
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
2411
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
2423
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
2412
2424
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
2413
2425
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
2414
2426
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -2564,7 +2576,7 @@ module Aws::Route53Resolver
|
|
2564
2576
|
# resp.resolver_rule.domain_name #=> String
|
2565
2577
|
# resp.resolver_rule.status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
2566
2578
|
# resp.resolver_rule.status_message #=> String
|
2567
|
-
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
2579
|
+
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
2568
2580
|
# resp.resolver_rule.name #=> String
|
2569
2581
|
# resp.resolver_rule.target_ips #=> Array
|
2570
2582
|
# resp.resolver_rule.target_ips[0].ip #=> String
|
@@ -2577,6 +2589,7 @@ module Aws::Route53Resolver
|
|
2577
2589
|
# resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
2578
2590
|
# resp.resolver_rule.creation_time #=> String
|
2579
2591
|
# resp.resolver_rule.modification_time #=> String
|
2592
|
+
# resp.resolver_rule.delegation_record #=> String
|
2580
2593
|
#
|
2581
2594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverRule AWS API Documentation
|
2582
2595
|
#
|
@@ -3356,7 +3369,7 @@ module Aws::Route53Resolver
|
|
3356
3369
|
# resp.ip_addresses[0].subnet_id #=> String
|
3357
3370
|
# resp.ip_addresses[0].ip #=> String
|
3358
3371
|
# resp.ip_addresses[0].ipv_6 #=> String
|
3359
|
-
# resp.ip_addresses[0].status #=> String, one of "CREATING", "FAILED_CREATION", "ATTACHING", "ATTACHED", "REMAP_DETACHING", "REMAP_ATTACHING", "DETACHING", "FAILED_RESOURCE_GONE", "DELETING", "DELETE_FAILED_FAS_EXPIRED", "UPDATING", "UPDATE_FAILED"
|
3372
|
+
# resp.ip_addresses[0].status #=> String, one of "CREATING", "FAILED_CREATION", "ATTACHING", "ATTACHED", "REMAP_DETACHING", "REMAP_ATTACHING", "DETACHING", "FAILED_RESOURCE_GONE", "DELETING", "DELETE_FAILED_FAS_EXPIRED", "UPDATING", "UPDATE_FAILED", "ISOLATED"
|
3360
3373
|
# resp.ip_addresses[0].status_message #=> String
|
3361
3374
|
# resp.ip_addresses[0].creation_time #=> String
|
3362
3375
|
# resp.ip_addresses[0].modification_time #=> String
|
@@ -3429,7 +3442,7 @@ module Aws::Route53Resolver
|
|
3429
3442
|
# resp.resolver_endpoints[0].name #=> String
|
3430
3443
|
# resp.resolver_endpoints[0].security_group_ids #=> Array
|
3431
3444
|
# resp.resolver_endpoints[0].security_group_ids[0] #=> String
|
3432
|
-
# resp.resolver_endpoints[0].direction #=> String, one of "INBOUND", "OUTBOUND"
|
3445
|
+
# resp.resolver_endpoints[0].direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
3433
3446
|
# resp.resolver_endpoints[0].ip_address_count #=> Integer
|
3434
3447
|
# resp.resolver_endpoints[0].host_vpc_id #=> String
|
3435
3448
|
# resp.resolver_endpoints[0].status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -3865,7 +3878,7 @@ module Aws::Route53Resolver
|
|
3865
3878
|
# resp.resolver_rules[0].domain_name #=> String
|
3866
3879
|
# resp.resolver_rules[0].status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
3867
3880
|
# resp.resolver_rules[0].status_message #=> String
|
3868
|
-
# resp.resolver_rules[0].rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
3881
|
+
# resp.resolver_rules[0].rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
3869
3882
|
# resp.resolver_rules[0].name #=> String
|
3870
3883
|
# resp.resolver_rules[0].target_ips #=> Array
|
3871
3884
|
# resp.resolver_rules[0].target_ips[0].ip #=> String
|
@@ -3878,6 +3891,7 @@ module Aws::Route53Resolver
|
|
3878
3891
|
# resp.resolver_rules[0].share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
3879
3892
|
# resp.resolver_rules[0].creation_time #=> String
|
3880
3893
|
# resp.resolver_rules[0].modification_time #=> String
|
3894
|
+
# resp.resolver_rules[0].delegation_record #=> String
|
3881
3895
|
#
|
3882
3896
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverRules AWS API Documentation
|
3883
3897
|
#
|
@@ -4616,8 +4630,8 @@ module Aws::Route53Resolver
|
|
4616
4630
|
# single VPC from Amazon Virtual Private Cloud.
|
4617
4631
|
#
|
4618
4632
|
# @option params [required, String] :resource_id
|
4619
|
-
#
|
4620
|
-
#
|
4633
|
+
# The ID of the Amazon Virtual Private Cloud VPC or a Route 53 Profile
|
4634
|
+
# that you're configuring Resolver for.
|
4621
4635
|
#
|
4622
4636
|
# @option params [required, String] :autodefined_reverse_flag
|
4623
4637
|
# Indicates whether or not the Resolver will create autodefined rules
|
@@ -4731,9 +4745,9 @@ module Aws::Route53Resolver
|
|
4731
4745
|
#
|
4732
4746
|
# @option params [Array<String>] :protocols
|
4733
4747
|
# The protocols you want to use for the endpoint. DoH-FIPS is applicable
|
4734
|
-
# for inbound endpoints only.
|
4748
|
+
# for default inbound endpoints only.
|
4735
4749
|
#
|
4736
|
-
# For
|
4750
|
+
# For a default inbound endpoint you can apply the protocols as follows:
|
4737
4751
|
#
|
4738
4752
|
# * Do53 and DoH in combination.
|
4739
4753
|
#
|
@@ -4747,6 +4761,8 @@ module Aws::Route53Resolver
|
|
4747
4761
|
#
|
4748
4762
|
# * None, which is treated as Do53.
|
4749
4763
|
#
|
4764
|
+
# For a delegation inbound endpoint you can use Do53 only.
|
4765
|
+
#
|
4750
4766
|
# For an outbound endpoint you can apply the protocols as follows:
|
4751
4767
|
#
|
4752
4768
|
# * Do53 and DoH in combination.
|
@@ -4792,7 +4808,7 @@ module Aws::Route53Resolver
|
|
4792
4808
|
# resp.resolver_endpoint.name #=> String
|
4793
4809
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
4794
4810
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
4795
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
4811
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
4796
4812
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
4797
4813
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
4798
4814
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -4855,7 +4871,7 @@ module Aws::Route53Resolver
|
|
4855
4871
|
# resp.resolver_rule.domain_name #=> String
|
4856
4872
|
# resp.resolver_rule.status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
4857
4873
|
# resp.resolver_rule.status_message #=> String
|
4858
|
-
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
4874
|
+
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
4859
4875
|
# resp.resolver_rule.name #=> String
|
4860
4876
|
# resp.resolver_rule.target_ips #=> Array
|
4861
4877
|
# resp.resolver_rule.target_ips[0].ip #=> String
|
@@ -4868,6 +4884,7 @@ module Aws::Route53Resolver
|
|
4868
4884
|
# resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
4869
4885
|
# resp.resolver_rule.creation_time #=> String
|
4870
4886
|
# resp.resolver_rule.modification_time #=> String
|
4887
|
+
# resp.resolver_rule.delegation_record #=> String
|
4871
4888
|
#
|
4872
4889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverRule AWS API Documentation
|
4873
4890
|
#
|
@@ -4896,7 +4913,7 @@ module Aws::Route53Resolver
|
|
4896
4913
|
tracer: tracer
|
4897
4914
|
)
|
4898
4915
|
context[:gem_name] = 'aws-sdk-route53resolver'
|
4899
|
-
context[:gem_version] = '1.
|
4916
|
+
context[:gem_version] = '1.81.0'
|
4900
4917
|
Seahorse::Client::Request.new(handlers, context)
|
4901
4918
|
end
|
4902
4919
|
|
@@ -50,6 +50,7 @@ module Aws::Route53Resolver
|
|
50
50
|
CreateResolverRuleRequest = Shapes::StructureShape.new(name: 'CreateResolverRuleRequest')
|
51
51
|
CreateResolverRuleResponse = Shapes::StructureShape.new(name: 'CreateResolverRuleResponse')
|
52
52
|
CreatorRequestId = Shapes::StringShape.new(name: 'CreatorRequestId')
|
53
|
+
DelegationRecord = Shapes::StringShape.new(name: 'DelegationRecord')
|
53
54
|
DeleteFirewallDomainListRequest = Shapes::StructureShape.new(name: 'DeleteFirewallDomainListRequest')
|
54
55
|
DeleteFirewallDomainListResponse = Shapes::StructureShape.new(name: 'DeleteFirewallDomainListResponse')
|
55
56
|
DeleteFirewallRuleGroupRequest = Shapes::StructureShape.new(name: 'DeleteFirewallRuleGroupRequest')
|
@@ -410,6 +411,7 @@ module Aws::Route53Resolver
|
|
410
411
|
CreateResolverRuleRequest.add_member(:target_ips, Shapes::ShapeRef.new(shape: TargetList, location_name: "TargetIps", metadata: {"box" => true}))
|
411
412
|
CreateResolverRuleRequest.add_member(:resolver_endpoint_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ResolverEndpointId", metadata: {"box" => true}))
|
412
413
|
CreateResolverRuleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box" => true}))
|
414
|
+
CreateResolverRuleRequest.add_member(:delegation_record, Shapes::ShapeRef.new(shape: DelegationRecord, location_name: "DelegationRecord", metadata: {"box" => true}))
|
413
415
|
CreateResolverRuleRequest.struct_class = Types::CreateResolverRuleRequest
|
414
416
|
|
415
417
|
CreateResolverRuleResponse.add_member(:resolver_rule, Shapes::ShapeRef.new(shape: ResolverRule, location_name: "ResolverRule"))
|
@@ -1006,6 +1008,7 @@ module Aws::Route53Resolver
|
|
1006
1008
|
ResolverRule.add_member(:share_status, Shapes::ShapeRef.new(shape: ShareStatus, location_name: "ShareStatus"))
|
1007
1009
|
ResolverRule.add_member(:creation_time, Shapes::ShapeRef.new(shape: Rfc3339TimeString, location_name: "CreationTime"))
|
1008
1010
|
ResolverRule.add_member(:modification_time, Shapes::ShapeRef.new(shape: Rfc3339TimeString, location_name: "ModificationTime"))
|
1011
|
+
ResolverRule.add_member(:delegation_record, Shapes::ShapeRef.new(shape: DelegationRecord, location_name: "DelegationRecord"))
|
1009
1012
|
ResolverRule.struct_class = Types::ResolverRule
|
1010
1013
|
|
1011
1014
|
ResolverRuleAssociation.add_member(:id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "Id"))
|
@@ -611,10 +611,13 @@ module Aws::Route53Resolver
|
|
611
611
|
# Specify the applicable value:
|
612
612
|
#
|
613
613
|
# * `INBOUND`: Resolver forwards DNS queries to the DNS service for a
|
614
|
-
# VPC from your network
|
614
|
+
# VPC from your network.
|
615
615
|
#
|
616
616
|
# * `OUTBOUND`: Resolver forwards DNS queries from the DNS service for
|
617
|
-
# a VPC to your network
|
617
|
+
# a VPC to your network.
|
618
|
+
#
|
619
|
+
# * `INBOUND_DELEGATION`: Resolver delegates queries to Route 53
|
620
|
+
# private hosted zones from your network.
|
618
621
|
# @return [String]
|
619
622
|
#
|
620
623
|
# @!attribute [rw] ip_addresses
|
@@ -652,9 +655,10 @@ module Aws::Route53Resolver
|
|
652
655
|
#
|
653
656
|
# @!attribute [rw] protocols
|
654
657
|
# The protocols you want to use for the endpoint. DoH-FIPS is
|
655
|
-
# applicable for inbound endpoints only.
|
658
|
+
# applicable for default inbound endpoints only.
|
656
659
|
#
|
657
|
-
# For
|
660
|
+
# For a default inbound endpoint you can apply the protocols as
|
661
|
+
# follows:
|
658
662
|
#
|
659
663
|
# * Do53 and DoH in combination.
|
660
664
|
#
|
@@ -668,6 +672,8 @@ module Aws::Route53Resolver
|
|
668
672
|
#
|
669
673
|
# * None, which is treated as Do53.
|
670
674
|
#
|
675
|
+
# For a delegation inbound endpoint you can use Do53 only.
|
676
|
+
#
|
671
677
|
# For an outbound endpoint you can apply the protocols as follows:
|
672
678
|
#
|
673
679
|
# * Do53 and DoH in combination.
|
@@ -789,7 +795,7 @@ module Aws::Route53Resolver
|
|
789
795
|
#
|
790
796
|
# @!attribute [rw] rule_type
|
791
797
|
# When you want to forward DNS queries for specified domain name to
|
792
|
-
# resolvers on your network, specify `FORWARD`.
|
798
|
+
# resolvers on your network, specify `FORWARD` or `DELEGATE`.
|
793
799
|
#
|
794
800
|
# When you have a forwarding rule to forward DNS queries for a domain
|
795
801
|
# to your network and you want Resolver to process queries for a
|
@@ -833,6 +839,11 @@ module Aws::Route53Resolver
|
|
833
839
|
# the endpoint.
|
834
840
|
# @return [Array<Types::Tag>]
|
835
841
|
#
|
842
|
+
# @!attribute [rw] delegation_record
|
843
|
+
# DNS queries with the delegation records that match this domain name
|
844
|
+
# are forwarded to the resolvers on your network.
|
845
|
+
# @return [String]
|
846
|
+
#
|
836
847
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverRuleRequest AWS API Documentation
|
837
848
|
#
|
838
849
|
class CreateResolverRuleRequest < Struct.new(
|
@@ -842,7 +853,8 @@ module Aws::Route53Resolver
|
|
842
853
|
:domain_name,
|
843
854
|
:target_ips,
|
844
855
|
:resolver_endpoint_id,
|
845
|
-
:tags
|
856
|
+
:tags,
|
857
|
+
:delegation_record)
|
846
858
|
SENSITIVE = []
|
847
859
|
include Aws::Structure
|
848
860
|
end
|
@@ -4029,8 +4041,8 @@ module Aws::Route53Resolver
|
|
4029
4041
|
# @return [String]
|
4030
4042
|
#
|
4031
4043
|
# @!attribute [rw] resource_id
|
4032
|
-
# The ID of the Amazon Virtual Private Cloud VPC
|
4033
|
-
# configuring Resolver for.
|
4044
|
+
# The ID of the Amazon Virtual Private Cloud VPC or a Route 53 Profile
|
4045
|
+
# that you're configuring Resolver for.
|
4034
4046
|
# @return [String]
|
4035
4047
|
#
|
4036
4048
|
# @!attribute [rw] owner_id
|
@@ -4161,6 +4173,9 @@ module Aws::Route53Resolver
|
|
4161
4173
|
# * `INBOUND`: allows DNS queries to your VPC from your network
|
4162
4174
|
#
|
4163
4175
|
# * `OUTBOUND`: allows DNS queries from your VPC to your network
|
4176
|
+
#
|
4177
|
+
# * `INBOUND_DELEGATION`: Resolver delegates queries to Route 53
|
4178
|
+
# private hosted zones from your network.
|
4164
4179
|
# @return [String]
|
4165
4180
|
#
|
4166
4181
|
# @!attribute [rw] ip_address_count
|
@@ -4242,8 +4257,8 @@ module Aws::Route53Resolver
|
|
4242
4257
|
# @return [String]
|
4243
4258
|
#
|
4244
4259
|
# @!attribute [rw] protocols
|
4245
|
-
# Protocols used for the endpoint. DoH-FIPS is applicable for
|
4246
|
-
# endpoints only.
|
4260
|
+
# Protocols used for the endpoint. DoH-FIPS is applicable for a
|
4261
|
+
# default inbound endpoints only.
|
4247
4262
|
#
|
4248
4263
|
# For an inbound endpoint you can apply the protocols as follows:
|
4249
4264
|
#
|
@@ -4259,6 +4274,8 @@ module Aws::Route53Resolver
|
|
4259
4274
|
#
|
4260
4275
|
# * None, which is treated as Do53.
|
4261
4276
|
#
|
4277
|
+
# For a delegation inbound endpoint you can use Do53 only.
|
4278
|
+
#
|
4262
4279
|
# For an outbound endpoint you can apply the protocols as follows:
|
4263
4280
|
#
|
4264
4281
|
# * Do53 and DoH in combination.
|
@@ -4524,7 +4541,10 @@ module Aws::Route53Resolver
|
|
4524
4541
|
#
|
4525
4542
|
# @!attribute [rw] rule_type
|
4526
4543
|
# When you want to forward DNS queries for specified domain name to
|
4527
|
-
# resolvers on your network, specify `FORWARD`.
|
4544
|
+
# resolvers on your network, specify `FORWARD` or `DELEGATE`. If a
|
4545
|
+
# query matches multiple Resolver rules (example.com and
|
4546
|
+
# www.example.com), outbound DNS queries are routed using the Resolver
|
4547
|
+
# rule that contains the most specific domain name (www.example.com).
|
4528
4548
|
#
|
4529
4549
|
# When you have a forwarding rule to forward DNS queries for a domain
|
4530
4550
|
# to your network and you want Resolver to process queries for a
|
@@ -4576,6 +4596,11 @@ module Aws::Route53Resolver
|
|
4576
4596
|
# time format and Coordinated Universal Time (UTC).
|
4577
4597
|
# @return [String]
|
4578
4598
|
#
|
4599
|
+
# @!attribute [rw] delegation_record
|
4600
|
+
# DNS queries with delegation records that point to this domain name
|
4601
|
+
# are forwarded to resolvers on your network.
|
4602
|
+
# @return [String]
|
4603
|
+
#
|
4579
4604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ResolverRule AWS API Documentation
|
4580
4605
|
#
|
4581
4606
|
class ResolverRule < Struct.new(
|
@@ -4592,7 +4617,8 @@ module Aws::Route53Resolver
|
|
4592
4617
|
:owner_id,
|
4593
4618
|
:share_status,
|
4594
4619
|
:creation_time,
|
4595
|
-
:modification_time
|
4620
|
+
:modification_time,
|
4621
|
+
:delegation_record)
|
4596
4622
|
SENSITIVE = []
|
4597
4623
|
include Aws::Structure
|
4598
4624
|
end
|
@@ -5382,8 +5408,8 @@ module Aws::Route53Resolver
|
|
5382
5408
|
end
|
5383
5409
|
|
5384
5410
|
# @!attribute [rw] resource_id
|
5385
|
-
#
|
5386
|
-
#
|
5411
|
+
# The ID of the Amazon Virtual Private Cloud VPC or a Route 53 Profile
|
5412
|
+
# that you're configuring Resolver for.
|
5387
5413
|
# @return [String]
|
5388
5414
|
#
|
5389
5415
|
# @!attribute [rw] autodefined_reverse_flag
|
@@ -5489,9 +5515,10 @@ module Aws::Route53Resolver
|
|
5489
5515
|
#
|
5490
5516
|
# @!attribute [rw] protocols
|
5491
5517
|
# The protocols you want to use for the endpoint. DoH-FIPS is
|
5492
|
-
# applicable for inbound endpoints only.
|
5518
|
+
# applicable for default inbound endpoints only.
|
5493
5519
|
#
|
5494
|
-
# For
|
5520
|
+
# For a default inbound endpoint you can apply the protocols as
|
5521
|
+
# follows:
|
5495
5522
|
#
|
5496
5523
|
# * Do53 and DoH in combination.
|
5497
5524
|
#
|
@@ -5505,6 +5532,8 @@ module Aws::Route53Resolver
|
|
5505
5532
|
#
|
5506
5533
|
# * None, which is treated as Do53.
|
5507
5534
|
#
|
5535
|
+
# For a delegation inbound endpoint you can use Do53 only.
|
5536
|
+
#
|
5508
5537
|
# For an outbound endpoint you can apply the protocols as follows:
|
5509
5538
|
#
|
5510
5539
|
# * Do53 and DoH in combination.
|
data/sig/client.rbs
CHANGED
@@ -224,7 +224,7 @@ module Aws
|
|
224
224
|
creator_request_id: ::String,
|
225
225
|
?name: ::String,
|
226
226
|
security_group_ids: Array[::String],
|
227
|
-
direction: ("INBOUND" | "OUTBOUND"),
|
227
|
+
direction: ("INBOUND" | "OUTBOUND" | "INBOUND_DELEGATION"),
|
228
228
|
ip_addresses: Array[
|
229
229
|
{
|
230
230
|
subnet_id: ::String,
|
@@ -271,7 +271,7 @@ module Aws
|
|
271
271
|
def create_resolver_rule: (
|
272
272
|
creator_request_id: ::String,
|
273
273
|
?name: ::String,
|
274
|
-
rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE"),
|
274
|
+
rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE" | "DELEGATE"),
|
275
275
|
?domain_name: ::String,
|
276
276
|
?target_ips: Array[
|
277
277
|
{
|
@@ -288,7 +288,8 @@ module Aws
|
|
288
288
|
key: ::String,
|
289
289
|
value: ::String
|
290
290
|
},
|
291
|
-
]
|
291
|
+
],
|
292
|
+
?delegation_record: ::String
|
292
293
|
) -> _CreateResolverRuleResponseSuccess
|
293
294
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResolverRuleResponseSuccess
|
294
295
|
|
data/sig/types.rbs
CHANGED
@@ -134,7 +134,7 @@ module Aws::Route53Resolver
|
|
134
134
|
attr_accessor creator_request_id: ::String
|
135
135
|
attr_accessor name: ::String
|
136
136
|
attr_accessor security_group_ids: ::Array[::String]
|
137
|
-
attr_accessor direction: ("INBOUND" | "OUTBOUND")
|
137
|
+
attr_accessor direction: ("INBOUND" | "OUTBOUND" | "INBOUND_DELEGATION")
|
138
138
|
attr_accessor ip_addresses: ::Array[Types::IpAddressRequest]
|
139
139
|
attr_accessor outpost_arn: ::String
|
140
140
|
attr_accessor preferred_instance_type: ::String
|
@@ -165,11 +165,12 @@ module Aws::Route53Resolver
|
|
165
165
|
class CreateResolverRuleRequest
|
166
166
|
attr_accessor creator_request_id: ::String
|
167
167
|
attr_accessor name: ::String
|
168
|
-
attr_accessor rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE")
|
168
|
+
attr_accessor rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE" | "DELEGATE")
|
169
169
|
attr_accessor domain_name: ::String
|
170
170
|
attr_accessor target_ips: ::Array[Types::TargetAddress]
|
171
171
|
attr_accessor resolver_endpoint_id: ::String
|
172
172
|
attr_accessor tags: ::Array[Types::Tag]
|
173
|
+
attr_accessor delegation_record: ::String
|
173
174
|
SENSITIVE: []
|
174
175
|
end
|
175
176
|
|
@@ -602,7 +603,7 @@ module Aws::Route53Resolver
|
|
602
603
|
attr_accessor subnet_id: ::String
|
603
604
|
attr_accessor ip: ::String
|
604
605
|
attr_accessor ipv_6: ::String
|
605
|
-
attr_accessor status: ("CREATING" | "FAILED_CREATION" | "ATTACHING" | "ATTACHED" | "REMAP_DETACHING" | "REMAP_ATTACHING" | "DETACHING" | "FAILED_RESOURCE_GONE" | "DELETING" | "DELETE_FAILED_FAS_EXPIRED" | "UPDATING" | "UPDATE_FAILED")
|
606
|
+
attr_accessor status: ("CREATING" | "FAILED_CREATION" | "ATTACHING" | "ATTACHED" | "REMAP_DETACHING" | "REMAP_ATTACHING" | "DETACHING" | "FAILED_RESOURCE_GONE" | "DELETING" | "DELETE_FAILED_FAS_EXPIRED" | "UPDATING" | "UPDATE_FAILED" | "ISOLATED")
|
606
607
|
attr_accessor status_message: ::String
|
607
608
|
attr_accessor creation_time: ::String
|
608
609
|
attr_accessor modification_time: ::String
|
@@ -914,7 +915,7 @@ module Aws::Route53Resolver
|
|
914
915
|
attr_accessor arn: ::String
|
915
916
|
attr_accessor name: ::String
|
916
917
|
attr_accessor security_group_ids: ::Array[::String]
|
917
|
-
attr_accessor direction: ("INBOUND" | "OUTBOUND")
|
918
|
+
attr_accessor direction: ("INBOUND" | "OUTBOUND" | "INBOUND_DELEGATION")
|
918
919
|
attr_accessor ip_address_count: ::Integer
|
919
920
|
attr_accessor host_vpc_id: ::String
|
920
921
|
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "AUTO_RECOVERING" | "ACTION_NEEDED" | "DELETING")
|
@@ -960,7 +961,7 @@ module Aws::Route53Resolver
|
|
960
961
|
attr_accessor domain_name: ::String
|
961
962
|
attr_accessor status: ("COMPLETE" | "DELETING" | "UPDATING" | "FAILED")
|
962
963
|
attr_accessor status_message: ::String
|
963
|
-
attr_accessor rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE")
|
964
|
+
attr_accessor rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE" | "DELEGATE")
|
964
965
|
attr_accessor name: ::String
|
965
966
|
attr_accessor target_ips: ::Array[Types::TargetAddress]
|
966
967
|
attr_accessor resolver_endpoint_id: ::String
|
@@ -968,6 +969,7 @@ module Aws::Route53Resolver
|
|
968
969
|
attr_accessor share_status: ("NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME")
|
969
970
|
attr_accessor creation_time: ::String
|
970
971
|
attr_accessor modification_time: ::String
|
972
|
+
attr_accessor delegation_record: ::String
|
971
973
|
SENSITIVE: []
|
972
974
|
end
|
973
975
|
|