aws-sdk-route53resolver 1.80.0 → 1.82.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53resolver/client.rb +60 -33
- 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 +5 -3
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +7 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d228e41f686a918a4b6cc423977f60f368e1b99a7c267c35542eee2b8c3b24d
|
4
|
+
data.tar.gz: 50a1438cd647414b7e0efa71e2a35c99a987bc7d6da0d320648dc303c2121847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fe748b408de2b6507748a54b37037fb986242e7b28528466ebe6a5963bc63f0206aa34880414c5d5643ee5fd8da0d34b1e05db4cdc24988c74876302b205b71
|
7
|
+
data.tar.gz: 9dc25009babca3b322611fde72c40ba2b7075ef6f8f6f5645af95a051366da89db9543f2e60c7442ca5bff9736456090b129eb55b0b770883ac116f1be4f70a6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.82.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.81.0 (2025-06-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for iterative DNS queries through the new INBOUND_DELEGATION endpoint. Add delegation support through the Outbound Endpoints with DELEGATE rules.
|
13
|
+
|
4
14
|
1.80.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.82.0
|
@@ -95,7 +95,7 @@ module Aws::Route53Resolver
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::Route53Resolver
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::Route53Resolver
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::Route53Resolver
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::Route53Resolver
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -612,7 +622,7 @@ module Aws::Route53Resolver
|
|
612
622
|
# resp.resolver_endpoint.name #=> String
|
613
623
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
614
624
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
615
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
625
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
616
626
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
617
627
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
618
628
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -1190,10 +1200,13 @@ module Aws::Route53Resolver
|
|
1190
1200
|
# Specify the applicable value:
|
1191
1201
|
#
|
1192
1202
|
# * `INBOUND`: Resolver forwards DNS queries to the DNS service for a
|
1193
|
-
# VPC from your network
|
1203
|
+
# VPC from your network.
|
1194
1204
|
#
|
1195
1205
|
# * `OUTBOUND`: Resolver forwards DNS queries from the DNS service for a
|
1196
|
-
# VPC to your network
|
1206
|
+
# VPC to your network.
|
1207
|
+
#
|
1208
|
+
# * `INBOUND_DELEGATION`: Resolver delegates queries to Route 53 private
|
1209
|
+
# hosted zones from your network.
|
1197
1210
|
#
|
1198
1211
|
# @option params [required, Array<Types::IpAddressRequest>] :ip_addresses
|
1199
1212
|
# The subnets and IP addresses in your VPC that DNS queries originate
|
@@ -1224,9 +1237,9 @@ module Aws::Route53Resolver
|
|
1224
1237
|
#
|
1225
1238
|
# @option params [Array<String>] :protocols
|
1226
1239
|
# The protocols you want to use for the endpoint. DoH-FIPS is applicable
|
1227
|
-
# for inbound endpoints only.
|
1240
|
+
# for default inbound endpoints only.
|
1228
1241
|
#
|
1229
|
-
# For
|
1242
|
+
# For a default inbound endpoint you can apply the protocols as follows:
|
1230
1243
|
#
|
1231
1244
|
# * Do53 and DoH in combination.
|
1232
1245
|
#
|
@@ -1240,6 +1253,8 @@ module Aws::Route53Resolver
|
|
1240
1253
|
#
|
1241
1254
|
# * None, which is treated as Do53.
|
1242
1255
|
#
|
1256
|
+
# For a delegation inbound endpoint you can use Do53 only.
|
1257
|
+
#
|
1243
1258
|
# For an outbound endpoint you can apply the protocols as follows:
|
1244
1259
|
#
|
1245
1260
|
# * Do53 and DoH in combination.
|
@@ -1260,7 +1275,7 @@ module Aws::Route53Resolver
|
|
1260
1275
|
# creator_request_id: "CreatorRequestId", # required
|
1261
1276
|
# name: "Name",
|
1262
1277
|
# security_group_ids: ["ResourceId"], # required
|
1263
|
-
# direction: "INBOUND", # required, accepts INBOUND, OUTBOUND
|
1278
|
+
# direction: "INBOUND", # required, accepts INBOUND, OUTBOUND, INBOUND_DELEGATION
|
1264
1279
|
# ip_addresses: [ # required
|
1265
1280
|
# {
|
1266
1281
|
# subnet_id: "SubnetId", # required
|
@@ -1288,7 +1303,7 @@ module Aws::Route53Resolver
|
|
1288
1303
|
# resp.resolver_endpoint.name #=> String
|
1289
1304
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
1290
1305
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
1291
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
1306
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
1292
1307
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
1293
1308
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
1294
1309
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -1425,7 +1440,7 @@ module Aws::Route53Resolver
|
|
1425
1440
|
#
|
1426
1441
|
# @option params [required, String] :rule_type
|
1427
1442
|
# When you want to forward DNS queries for specified domain name to
|
1428
|
-
# resolvers on your network, specify `FORWARD`.
|
1443
|
+
# resolvers on your network, specify `FORWARD` or `DELEGATE`.
|
1429
1444
|
#
|
1430
1445
|
# When you have a forwarding rule to forward DNS queries for a domain to
|
1431
1446
|
# your network and you want Resolver to process queries for a subdomain
|
@@ -1462,6 +1477,10 @@ module Aws::Route53Resolver
|
|
1462
1477
|
# A list of the tag keys and values that you want to associate with the
|
1463
1478
|
# endpoint.
|
1464
1479
|
#
|
1480
|
+
# @option params [String] :delegation_record
|
1481
|
+
# DNS queries with the delegation records that match this domain name
|
1482
|
+
# are forwarded to the resolvers on your network.
|
1483
|
+
#
|
1465
1484
|
# @return [Types::CreateResolverRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1466
1485
|
#
|
1467
1486
|
# * {Types::CreateResolverRuleResponse#resolver_rule #resolver_rule} => Types::ResolverRule
|
@@ -1471,7 +1490,7 @@ module Aws::Route53Resolver
|
|
1471
1490
|
# resp = client.create_resolver_rule({
|
1472
1491
|
# creator_request_id: "CreatorRequestId", # required
|
1473
1492
|
# name: "Name",
|
1474
|
-
# rule_type: "FORWARD", # required, accepts FORWARD, SYSTEM, RECURSIVE
|
1493
|
+
# rule_type: "FORWARD", # required, accepts FORWARD, SYSTEM, RECURSIVE, DELEGATE
|
1475
1494
|
# domain_name: "DomainName",
|
1476
1495
|
# target_ips: [
|
1477
1496
|
# {
|
@@ -1489,6 +1508,7 @@ module Aws::Route53Resolver
|
|
1489
1508
|
# value: "TagValue", # required
|
1490
1509
|
# },
|
1491
1510
|
# ],
|
1511
|
+
# delegation_record: "DelegationRecord",
|
1492
1512
|
# })
|
1493
1513
|
#
|
1494
1514
|
# @example Response structure
|
@@ -1499,7 +1519,7 @@ module Aws::Route53Resolver
|
|
1499
1519
|
# resp.resolver_rule.domain_name #=> String
|
1500
1520
|
# resp.resolver_rule.status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
1501
1521
|
# resp.resolver_rule.status_message #=> String
|
1502
|
-
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
1522
|
+
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
1503
1523
|
# resp.resolver_rule.name #=> String
|
1504
1524
|
# resp.resolver_rule.target_ips #=> Array
|
1505
1525
|
# resp.resolver_rule.target_ips[0].ip #=> String
|
@@ -1512,6 +1532,7 @@ module Aws::Route53Resolver
|
|
1512
1532
|
# resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
1513
1533
|
# resp.resolver_rule.creation_time #=> String
|
1514
1534
|
# resp.resolver_rule.modification_time #=> String
|
1535
|
+
# resp.resolver_rule.delegation_record #=> String
|
1515
1536
|
#
|
1516
1537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverRule AWS API Documentation
|
1517
1538
|
#
|
@@ -1762,7 +1783,7 @@ module Aws::Route53Resolver
|
|
1762
1783
|
# resp.resolver_endpoint.name #=> String
|
1763
1784
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
1764
1785
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
1765
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
1786
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
1766
1787
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
1767
1788
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
1768
1789
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -1872,7 +1893,7 @@ module Aws::Route53Resolver
|
|
1872
1893
|
# resp.resolver_rule.domain_name #=> String
|
1873
1894
|
# resp.resolver_rule.status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
1874
1895
|
# resp.resolver_rule.status_message #=> String
|
1875
|
-
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
1896
|
+
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
1876
1897
|
# resp.resolver_rule.name #=> String
|
1877
1898
|
# resp.resolver_rule.target_ips #=> Array
|
1878
1899
|
# resp.resolver_rule.target_ips[0].ip #=> String
|
@@ -1885,6 +1906,7 @@ module Aws::Route53Resolver
|
|
1885
1906
|
# resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
1886
1907
|
# resp.resolver_rule.creation_time #=> String
|
1887
1908
|
# resp.resolver_rule.modification_time #=> String
|
1909
|
+
# resp.resolver_rule.delegation_record #=> String
|
1888
1910
|
#
|
1889
1911
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverRule AWS API Documentation
|
1890
1912
|
#
|
@@ -1978,7 +2000,7 @@ module Aws::Route53Resolver
|
|
1978
2000
|
# resp.resolver_endpoint.name #=> String
|
1979
2001
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
1980
2002
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
1981
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
2003
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
1982
2004
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
1983
2005
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
1984
2006
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -2408,7 +2430,7 @@ module Aws::Route53Resolver
|
|
2408
2430
|
# resp.resolver_endpoint.name #=> String
|
2409
2431
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
2410
2432
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
2411
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
2433
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
2412
2434
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
2413
2435
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
2414
2436
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -2564,7 +2586,7 @@ module Aws::Route53Resolver
|
|
2564
2586
|
# resp.resolver_rule.domain_name #=> String
|
2565
2587
|
# resp.resolver_rule.status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
2566
2588
|
# resp.resolver_rule.status_message #=> String
|
2567
|
-
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
2589
|
+
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
2568
2590
|
# resp.resolver_rule.name #=> String
|
2569
2591
|
# resp.resolver_rule.target_ips #=> Array
|
2570
2592
|
# resp.resolver_rule.target_ips[0].ip #=> String
|
@@ -2577,6 +2599,7 @@ module Aws::Route53Resolver
|
|
2577
2599
|
# resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
2578
2600
|
# resp.resolver_rule.creation_time #=> String
|
2579
2601
|
# resp.resolver_rule.modification_time #=> String
|
2602
|
+
# resp.resolver_rule.delegation_record #=> String
|
2580
2603
|
#
|
2581
2604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverRule AWS API Documentation
|
2582
2605
|
#
|
@@ -3356,7 +3379,7 @@ module Aws::Route53Resolver
|
|
3356
3379
|
# resp.ip_addresses[0].subnet_id #=> String
|
3357
3380
|
# resp.ip_addresses[0].ip #=> String
|
3358
3381
|
# 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"
|
3382
|
+
# 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
3383
|
# resp.ip_addresses[0].status_message #=> String
|
3361
3384
|
# resp.ip_addresses[0].creation_time #=> String
|
3362
3385
|
# resp.ip_addresses[0].modification_time #=> String
|
@@ -3429,7 +3452,7 @@ module Aws::Route53Resolver
|
|
3429
3452
|
# resp.resolver_endpoints[0].name #=> String
|
3430
3453
|
# resp.resolver_endpoints[0].security_group_ids #=> Array
|
3431
3454
|
# resp.resolver_endpoints[0].security_group_ids[0] #=> String
|
3432
|
-
# resp.resolver_endpoints[0].direction #=> String, one of "INBOUND", "OUTBOUND"
|
3455
|
+
# resp.resolver_endpoints[0].direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
3433
3456
|
# resp.resolver_endpoints[0].ip_address_count #=> Integer
|
3434
3457
|
# resp.resolver_endpoints[0].host_vpc_id #=> String
|
3435
3458
|
# resp.resolver_endpoints[0].status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -3865,7 +3888,7 @@ module Aws::Route53Resolver
|
|
3865
3888
|
# resp.resolver_rules[0].domain_name #=> String
|
3866
3889
|
# resp.resolver_rules[0].status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
3867
3890
|
# resp.resolver_rules[0].status_message #=> String
|
3868
|
-
# resp.resolver_rules[0].rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
3891
|
+
# resp.resolver_rules[0].rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
3869
3892
|
# resp.resolver_rules[0].name #=> String
|
3870
3893
|
# resp.resolver_rules[0].target_ips #=> Array
|
3871
3894
|
# resp.resolver_rules[0].target_ips[0].ip #=> String
|
@@ -3878,6 +3901,7 @@ module Aws::Route53Resolver
|
|
3878
3901
|
# resp.resolver_rules[0].share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
3879
3902
|
# resp.resolver_rules[0].creation_time #=> String
|
3880
3903
|
# resp.resolver_rules[0].modification_time #=> String
|
3904
|
+
# resp.resolver_rules[0].delegation_record #=> String
|
3881
3905
|
#
|
3882
3906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverRules AWS API Documentation
|
3883
3907
|
#
|
@@ -4616,8 +4640,8 @@ module Aws::Route53Resolver
|
|
4616
4640
|
# single VPC from Amazon Virtual Private Cloud.
|
4617
4641
|
#
|
4618
4642
|
# @option params [required, String] :resource_id
|
4619
|
-
#
|
4620
|
-
#
|
4643
|
+
# The ID of the Amazon Virtual Private Cloud VPC or a Route 53 Profile
|
4644
|
+
# that you're configuring Resolver for.
|
4621
4645
|
#
|
4622
4646
|
# @option params [required, String] :autodefined_reverse_flag
|
4623
4647
|
# Indicates whether or not the Resolver will create autodefined rules
|
@@ -4731,9 +4755,9 @@ module Aws::Route53Resolver
|
|
4731
4755
|
#
|
4732
4756
|
# @option params [Array<String>] :protocols
|
4733
4757
|
# The protocols you want to use for the endpoint. DoH-FIPS is applicable
|
4734
|
-
# for inbound endpoints only.
|
4758
|
+
# for default inbound endpoints only.
|
4735
4759
|
#
|
4736
|
-
# For
|
4760
|
+
# For a default inbound endpoint you can apply the protocols as follows:
|
4737
4761
|
#
|
4738
4762
|
# * Do53 and DoH in combination.
|
4739
4763
|
#
|
@@ -4747,6 +4771,8 @@ module Aws::Route53Resolver
|
|
4747
4771
|
#
|
4748
4772
|
# * None, which is treated as Do53.
|
4749
4773
|
#
|
4774
|
+
# For a delegation inbound endpoint you can use Do53 only.
|
4775
|
+
#
|
4750
4776
|
# For an outbound endpoint you can apply the protocols as follows:
|
4751
4777
|
#
|
4752
4778
|
# * Do53 and DoH in combination.
|
@@ -4792,7 +4818,7 @@ module Aws::Route53Resolver
|
|
4792
4818
|
# resp.resolver_endpoint.name #=> String
|
4793
4819
|
# resp.resolver_endpoint.security_group_ids #=> Array
|
4794
4820
|
# resp.resolver_endpoint.security_group_ids[0] #=> String
|
4795
|
-
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND"
|
4821
|
+
# resp.resolver_endpoint.direction #=> String, one of "INBOUND", "OUTBOUND", "INBOUND_DELEGATION"
|
4796
4822
|
# resp.resolver_endpoint.ip_address_count #=> Integer
|
4797
4823
|
# resp.resolver_endpoint.host_vpc_id #=> String
|
4798
4824
|
# resp.resolver_endpoint.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "AUTO_RECOVERING", "ACTION_NEEDED", "DELETING"
|
@@ -4855,7 +4881,7 @@ module Aws::Route53Resolver
|
|
4855
4881
|
# resp.resolver_rule.domain_name #=> String
|
4856
4882
|
# resp.resolver_rule.status #=> String, one of "COMPLETE", "DELETING", "UPDATING", "FAILED"
|
4857
4883
|
# resp.resolver_rule.status_message #=> String
|
4858
|
-
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE"
|
4884
|
+
# resp.resolver_rule.rule_type #=> String, one of "FORWARD", "SYSTEM", "RECURSIVE", "DELEGATE"
|
4859
4885
|
# resp.resolver_rule.name #=> String
|
4860
4886
|
# resp.resolver_rule.target_ips #=> Array
|
4861
4887
|
# resp.resolver_rule.target_ips[0].ip #=> String
|
@@ -4868,6 +4894,7 @@ module Aws::Route53Resolver
|
|
4868
4894
|
# resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
|
4869
4895
|
# resp.resolver_rule.creation_time #=> String
|
4870
4896
|
# resp.resolver_rule.modification_time #=> String
|
4897
|
+
# resp.resolver_rule.delegation_record #=> String
|
4871
4898
|
#
|
4872
4899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverRule AWS API Documentation
|
4873
4900
|
#
|
@@ -4896,7 +4923,7 @@ module Aws::Route53Resolver
|
|
4896
4923
|
tracer: tracer
|
4897
4924
|
)
|
4898
4925
|
context[:gem_name] = 'aws-sdk-route53resolver'
|
4899
|
-
context[:gem_version] = '1.
|
4926
|
+
context[:gem_version] = '1.82.0'
|
4900
4927
|
Seahorse::Client::Request.new(handlers, context)
|
4901
4928
|
end
|
4902
4929
|
|
@@ -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
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -224,7 +225,7 @@ module Aws
|
|
224
225
|
creator_request_id: ::String,
|
225
226
|
?name: ::String,
|
226
227
|
security_group_ids: Array[::String],
|
227
|
-
direction: ("INBOUND" | "OUTBOUND"),
|
228
|
+
direction: ("INBOUND" | "OUTBOUND" | "INBOUND_DELEGATION"),
|
228
229
|
ip_addresses: Array[
|
229
230
|
{
|
230
231
|
subnet_id: ::String,
|
@@ -271,7 +272,7 @@ module Aws
|
|
271
272
|
def create_resolver_rule: (
|
272
273
|
creator_request_id: ::String,
|
273
274
|
?name: ::String,
|
274
|
-
rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE"),
|
275
|
+
rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE" | "DELEGATE"),
|
275
276
|
?domain_name: ::String,
|
276
277
|
?target_ips: Array[
|
277
278
|
{
|
@@ -288,7 +289,8 @@ module Aws
|
|
288
289
|
key: ::String,
|
289
290
|
value: ::String
|
290
291
|
},
|
291
|
-
]
|
292
|
+
],
|
293
|
+
?delegation_record: ::String
|
292
294
|
) -> _CreateResolverRuleResponseSuccess
|
293
295
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResolverRuleResponseSuccess
|
294
296
|
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
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
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-route53resolver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.82.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|