aws-sdk-route53 1.37.0 → 1.38.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f545e07d30e9ce4dfa7f6ac445554c1ecb85f4bfd8d971440ce3110f677c8a0c
|
4
|
+
data.tar.gz: f64687ed40b61bc97934db8b895c631822be9f62e7f384048de69fcc70555d8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7b93aa70f274f6dc728b7e57ebcb0273f6e79fcb9c20bd1ceb958712f8af80246f46ac2e5954388e41e4d6cb8222b42105925127ae759a52c245c2fc86f5d3b
|
7
|
+
data.tar.gz: c394ac73036bea85906231e8c191e78dd7222ecdb3ee0583c96d104d74ce37a1c31e73d2243d59826f46eb3bbcb385b6be5865dea9ca68cb71081ec0151c527c
|
data/lib/aws-sdk-route53.rb
CHANGED
@@ -2346,16 +2346,33 @@ module Aws::Route53
|
|
2346
2346
|
req.send_request(options)
|
2347
2347
|
end
|
2348
2348
|
|
2349
|
-
# Disassociates
|
2350
|
-
# the following:
|
2349
|
+
# Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an
|
2350
|
+
# Amazon Route 53 private hosted zone. Note the following:
|
2351
2351
|
#
|
2352
|
-
# * You can't disassociate the last VPC from a private hosted
|
2352
|
+
# * You can't disassociate the last Amazon VPC from a private hosted
|
2353
|
+
# zone.
|
2353
2354
|
#
|
2354
2355
|
# * You can't convert a private hosted zone into a public hosted zone.
|
2355
2356
|
#
|
2356
2357
|
# * You can submit a `DisassociateVPCFromHostedZone` request using
|
2357
2358
|
# either the account that created the hosted zone or the account that
|
2358
|
-
# created the VPC.
|
2359
|
+
# created the Amazon VPC.
|
2360
|
+
#
|
2361
|
+
# * Some services, such as AWS Cloud Map and Amazon Elastic File System
|
2362
|
+
# (Amazon EFS) automatically create hosted zones and associate VPCs
|
2363
|
+
# with the hosted zones. A service can create a hosted zone using your
|
2364
|
+
# account or using its own account. You can disassociate a VPC from a
|
2365
|
+
# hosted zone only if the service created the hosted zone using your
|
2366
|
+
# account.
|
2367
|
+
#
|
2368
|
+
# When you run [DisassociateVPCFromHostedZone][1], if the hosted zone
|
2369
|
+
# has a value for `OwningAccount`, you can use
|
2370
|
+
# `DisassociateVPCFromHostedZone`. If the hosted zone has a value for
|
2371
|
+
# `OwningService`, you can't use `DisassociateVPCFromHostedZone`.
|
2372
|
+
#
|
2373
|
+
#
|
2374
|
+
#
|
2375
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListHostedZonesByVPC.html
|
2359
2376
|
#
|
2360
2377
|
# @option params [required, String] :hosted_zone_id
|
2361
2378
|
# The ID of the private hosted zone that you want to disassociate a VPC
|
@@ -3559,6 +3576,80 @@ module Aws::Route53
|
|
3559
3576
|
req.send_request(options)
|
3560
3577
|
end
|
3561
3578
|
|
3579
|
+
# Lists all the private hosted zones that a specified VPC is associated
|
3580
|
+
# with, regardless of which AWS account or AWS service owns the hosted
|
3581
|
+
# zones. The `HostedZoneOwner` structure in the response contains one of
|
3582
|
+
# the following values:
|
3583
|
+
#
|
3584
|
+
# * An `OwningAccount` element, which contains the account number of
|
3585
|
+
# either the current AWS account or another AWS account. Some
|
3586
|
+
# services, such as AWS Cloud Map, create hosted zones using the
|
3587
|
+
# current account.
|
3588
|
+
#
|
3589
|
+
# * An `OwningService` element, which identifies the AWS service that
|
3590
|
+
# created and owns the hosted zone. For example, if a hosted zone was
|
3591
|
+
# created by Amazon Elastic File System (Amazon EFS), the value of
|
3592
|
+
# `Owner` is `efs.amazonaws.com`.
|
3593
|
+
#
|
3594
|
+
# @option params [required, String] :vpc_id
|
3595
|
+
# The ID of the Amazon VPC that you want to list hosted zones for.
|
3596
|
+
#
|
3597
|
+
# @option params [required, String] :vpc_region
|
3598
|
+
# For the Amazon VPC that you specified for `VPCId`, the AWS Region that
|
3599
|
+
# you created the VPC in.
|
3600
|
+
#
|
3601
|
+
# @option params [Integer] :max_items
|
3602
|
+
# (Optional) The maximum number of hosted zones that you want Amazon
|
3603
|
+
# Route 53 to return. If the specified VPC is associated with more than
|
3604
|
+
# `MaxItems` hosted zones, the response includes a `NextToken` element.
|
3605
|
+
# `NextToken` contains the hosted zone ID of the first hosted zone that
|
3606
|
+
# Route 53 will return if you submit another request.
|
3607
|
+
#
|
3608
|
+
# @option params [String] :next_token
|
3609
|
+
# If the previous response included a `NextToken` element, the specified
|
3610
|
+
# VPC is associated with more hosted zones. To get more hosted zones,
|
3611
|
+
# submit another `ListHostedZonesByVPC` request.
|
3612
|
+
#
|
3613
|
+
# For the value of `NextToken`, specify the value of `NextToken` from
|
3614
|
+
# the previous response.
|
3615
|
+
#
|
3616
|
+
# If the previous response didn't include a `NextToken` element, there
|
3617
|
+
# are no more hosted zones to get.
|
3618
|
+
#
|
3619
|
+
# @return [Types::ListHostedZonesByVPCResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3620
|
+
#
|
3621
|
+
# * {Types::ListHostedZonesByVPCResponse#hosted_zone_summaries #hosted_zone_summaries} => Array<Types::HostedZoneSummary>
|
3622
|
+
# * {Types::ListHostedZonesByVPCResponse#max_items #max_items} => Integer
|
3623
|
+
# * {Types::ListHostedZonesByVPCResponse#next_token #next_token} => String
|
3624
|
+
#
|
3625
|
+
# @example Request syntax with placeholder values
|
3626
|
+
#
|
3627
|
+
# resp = client.list_hosted_zones_by_vpc({
|
3628
|
+
# vpc_id: "VPCId", # required
|
3629
|
+
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
3630
|
+
# max_items: 1,
|
3631
|
+
# next_token: "PaginationToken",
|
3632
|
+
# })
|
3633
|
+
#
|
3634
|
+
# @example Response structure
|
3635
|
+
#
|
3636
|
+
# resp.hosted_zone_summaries #=> Array
|
3637
|
+
# resp.hosted_zone_summaries[0].hosted_zone_id #=> String
|
3638
|
+
# resp.hosted_zone_summaries[0].name #=> String
|
3639
|
+
# resp.hosted_zone_summaries[0].owner.owning_account #=> String
|
3640
|
+
# resp.hosted_zone_summaries[0].owner.owning_service #=> String
|
3641
|
+
# resp.max_items #=> Integer
|
3642
|
+
# resp.next_token #=> String
|
3643
|
+
#
|
3644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPC AWS API Documentation
|
3645
|
+
#
|
3646
|
+
# @overload list_hosted_zones_by_vpc(params = {})
|
3647
|
+
# @param [Hash] params ({})
|
3648
|
+
def list_hosted_zones_by_vpc(params = {}, options = {})
|
3649
|
+
req = build_request(:list_hosted_zones_by_vpc, params)
|
3650
|
+
req.send_request(options)
|
3651
|
+
end
|
3652
|
+
|
3562
3653
|
# Lists the configurations for DNS query logging that are associated
|
3563
3654
|
# with the current AWS account or the configuration that is associated
|
3564
3655
|
# with a specified hosted zone.
|
@@ -5138,7 +5229,7 @@ module Aws::Route53
|
|
5138
5229
|
params: params,
|
5139
5230
|
config: config)
|
5140
5231
|
context[:gem_name] = 'aws-sdk-route53'
|
5141
|
-
context[:gem_version] = '1.
|
5232
|
+
context[:gem_version] = '1.38.0'
|
5142
5233
|
Seahorse::Client::Request.new(handlers, context)
|
5143
5234
|
end
|
5144
5235
|
|
@@ -13,6 +13,7 @@ module Aws::Route53
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
AWSAccountID = Shapes::StringShape.new(name: 'AWSAccountID')
|
16
17
|
AccountLimit = Shapes::StructureShape.new(name: 'AccountLimit')
|
17
18
|
AccountLimitType = Shapes::StringShape.new(name: 'AccountLimitType')
|
18
19
|
AlarmIdentifier = Shapes::StructureShape.new(name: 'AlarmIdentifier')
|
@@ -162,7 +163,11 @@ module Aws::Route53
|
|
162
163
|
HostedZoneNotEmpty = Shapes::StructureShape.new(name: 'HostedZoneNotEmpty')
|
163
164
|
HostedZoneNotFound = Shapes::StructureShape.new(name: 'HostedZoneNotFound')
|
164
165
|
HostedZoneNotPrivate = Shapes::StructureShape.new(name: 'HostedZoneNotPrivate')
|
166
|
+
HostedZoneOwner = Shapes::StructureShape.new(name: 'HostedZoneOwner')
|
167
|
+
HostedZoneOwningService = Shapes::StringShape.new(name: 'HostedZoneOwningService')
|
165
168
|
HostedZoneRRSetCount = Shapes::IntegerShape.new(name: 'HostedZoneRRSetCount')
|
169
|
+
HostedZoneSummaries = Shapes::ListShape.new(name: 'HostedZoneSummaries')
|
170
|
+
HostedZoneSummary = Shapes::StructureShape.new(name: 'HostedZoneSummary')
|
166
171
|
HostedZones = Shapes::ListShape.new(name: 'HostedZones')
|
167
172
|
IPAddress = Shapes::StringShape.new(name: 'IPAddress')
|
168
173
|
IPAddressCidr = Shapes::StringShape.new(name: 'IPAddressCidr')
|
@@ -188,6 +193,8 @@ module Aws::Route53
|
|
188
193
|
ListHealthChecksResponse = Shapes::StructureShape.new(name: 'ListHealthChecksResponse')
|
189
194
|
ListHostedZonesByNameRequest = Shapes::StructureShape.new(name: 'ListHostedZonesByNameRequest')
|
190
195
|
ListHostedZonesByNameResponse = Shapes::StructureShape.new(name: 'ListHostedZonesByNameResponse')
|
196
|
+
ListHostedZonesByVPCRequest = Shapes::StructureShape.new(name: 'ListHostedZonesByVPCRequest')
|
197
|
+
ListHostedZonesByVPCResponse = Shapes::StructureShape.new(name: 'ListHostedZonesByVPCResponse')
|
191
198
|
ListHostedZonesRequest = Shapes::StructureShape.new(name: 'ListHostedZonesRequest')
|
192
199
|
ListHostedZonesResponse = Shapes::StructureShape.new(name: 'ListHostedZonesResponse')
|
193
200
|
ListQueryLoggingConfigsRequest = Shapes::StructureShape.new(name: 'ListQueryLoggingConfigsRequest')
|
@@ -752,6 +759,17 @@ module Aws::Route53
|
|
752
759
|
HostedZoneNotPrivate.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
753
760
|
HostedZoneNotPrivate.struct_class = Types::HostedZoneNotPrivate
|
754
761
|
|
762
|
+
HostedZoneOwner.add_member(:owning_account, Shapes::ShapeRef.new(shape: AWSAccountID, location_name: "OwningAccount"))
|
763
|
+
HostedZoneOwner.add_member(:owning_service, Shapes::ShapeRef.new(shape: HostedZoneOwningService, location_name: "OwningService"))
|
764
|
+
HostedZoneOwner.struct_class = Types::HostedZoneOwner
|
765
|
+
|
766
|
+
HostedZoneSummaries.member = Shapes::ShapeRef.new(shape: HostedZoneSummary, location_name: "HostedZoneSummary")
|
767
|
+
|
768
|
+
HostedZoneSummary.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "HostedZoneId"))
|
769
|
+
HostedZoneSummary.add_member(:name, Shapes::ShapeRef.new(shape: DNSName, required: true, location_name: "Name"))
|
770
|
+
HostedZoneSummary.add_member(:owner, Shapes::ShapeRef.new(shape: HostedZoneOwner, required: true, location_name: "Owner"))
|
771
|
+
HostedZoneSummary.struct_class = Types::HostedZoneSummary
|
772
|
+
|
755
773
|
HostedZones.member = Shapes::ShapeRef.new(shape: HostedZone, location_name: "HostedZone")
|
756
774
|
|
757
775
|
IncompatibleVersion.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -831,6 +849,17 @@ module Aws::Route53
|
|
831
849
|
ListHostedZonesByNameResponse.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, required: true, location_name: "MaxItems"))
|
832
850
|
ListHostedZonesByNameResponse.struct_class = Types::ListHostedZonesByNameResponse
|
833
851
|
|
852
|
+
ListHostedZonesByVPCRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VPCId, required: true, location: "querystring", location_name: "vpcid"))
|
853
|
+
ListHostedZonesByVPCRequest.add_member(:vpc_region, Shapes::ShapeRef.new(shape: VPCRegion, required: true, location: "querystring", location_name: "vpcregion"))
|
854
|
+
ListHostedZonesByVPCRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, location: "querystring", location_name: "maxitems"))
|
855
|
+
ListHostedZonesByVPCRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nexttoken"))
|
856
|
+
ListHostedZonesByVPCRequest.struct_class = Types::ListHostedZonesByVPCRequest
|
857
|
+
|
858
|
+
ListHostedZonesByVPCResponse.add_member(:hosted_zone_summaries, Shapes::ShapeRef.new(shape: HostedZoneSummaries, required: true, location_name: "HostedZoneSummaries"))
|
859
|
+
ListHostedZonesByVPCResponse.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, required: true, location_name: "MaxItems"))
|
860
|
+
ListHostedZonesByVPCResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
861
|
+
ListHostedZonesByVPCResponse.struct_class = Types::ListHostedZonesByVPCResponse
|
862
|
+
|
834
863
|
ListHostedZonesRequest.add_member(:marker, Shapes::ShapeRef.new(shape: PageMarker, location: "querystring", location_name: "marker"))
|
835
864
|
ListHostedZonesRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, location: "querystring", location_name: "maxitems"))
|
836
865
|
ListHostedZonesRequest.add_member(:delegation_set_id, Shapes::ShapeRef.new(shape: ResourceId, location: "querystring", location_name: "delegationsetid"))
|
@@ -1747,6 +1776,16 @@ module Aws::Route53
|
|
1747
1776
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDomainName)
|
1748
1777
|
end)
|
1749
1778
|
|
1779
|
+
api.add_operation(:list_hosted_zones_by_vpc, Seahorse::Model::Operation.new.tap do |o|
|
1780
|
+
o.name = "ListHostedZonesByVPC"
|
1781
|
+
o.http_method = "GET"
|
1782
|
+
o.http_request_uri = "/2013-04-01/hostedzonesbyvpc"
|
1783
|
+
o.input = Shapes::ShapeRef.new(shape: ListHostedZonesByVPCRequest)
|
1784
|
+
o.output = Shapes::ShapeRef.new(shape: ListHostedZonesByVPCResponse)
|
1785
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1786
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationToken)
|
1787
|
+
end)
|
1788
|
+
|
1750
1789
|
api.add_operation(:list_query_logging_configs, Seahorse::Model::Operation.new.tap do |o|
|
1751
1790
|
o.name = "ListQueryLoggingConfigs"
|
1752
1791
|
o.http_method = "GET"
|
@@ -3490,6 +3490,66 @@ module Aws::Route53
|
|
3490
3490
|
include Aws::Structure
|
3491
3491
|
end
|
3492
3492
|
|
3493
|
+
# A complex type that identifies a hosted zone that a specified Amazon
|
3494
|
+
# VPC is associated with and the owner of the hosted zone. If there is a
|
3495
|
+
# value for `OwningAccount`, there is no value for `OwningService`, and
|
3496
|
+
# vice versa.
|
3497
|
+
#
|
3498
|
+
# @!attribute [rw] owning_account
|
3499
|
+
# If the hosted zone was created by an AWS account, or was created by
|
3500
|
+
# an AWS service that creates hosted zones using the current account,
|
3501
|
+
# `OwningAccount` contains the account ID of that account. For
|
3502
|
+
# example, when you use AWS Cloud Map to create a hosted zone, Cloud
|
3503
|
+
# Map creates the hosted zone using the current AWS account.
|
3504
|
+
# @return [String]
|
3505
|
+
#
|
3506
|
+
# @!attribute [rw] owning_service
|
3507
|
+
# If an AWS service uses its own account to create a hosted zone and
|
3508
|
+
# associate the specified VPC with that hosted zone, `OwningService`
|
3509
|
+
# contains an abbreviation that identifies the service. For example,
|
3510
|
+
# if Amazon Elastic File System (Amazon EFS) created a hosted zone and
|
3511
|
+
# associated a VPC with the hosted zone, the value of `OwningService`
|
3512
|
+
# is `efs.amazonaws.com`.
|
3513
|
+
# @return [String]
|
3514
|
+
#
|
3515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneOwner AWS API Documentation
|
3516
|
+
#
|
3517
|
+
class HostedZoneOwner < Struct.new(
|
3518
|
+
:owning_account,
|
3519
|
+
:owning_service)
|
3520
|
+
include Aws::Structure
|
3521
|
+
end
|
3522
|
+
|
3523
|
+
# In the response to a `ListHostedZonesByVPC` request, the
|
3524
|
+
# `HostedZoneSummaries` element contains one `HostedZoneSummary` element
|
3525
|
+
# for each hosted zone that the specified Amazon VPC is associated with.
|
3526
|
+
# Each `HostedZoneSummary` element contains the hosted zone name and ID,
|
3527
|
+
# and information about who owns the hosted zone.
|
3528
|
+
#
|
3529
|
+
# @!attribute [rw] hosted_zone_id
|
3530
|
+
# The Route 53 hosted zone ID of a private hosted zone that the
|
3531
|
+
# specified VPC is associated with.
|
3532
|
+
# @return [String]
|
3533
|
+
#
|
3534
|
+
# @!attribute [rw] name
|
3535
|
+
# The name of the private hosted zone, such as `example.com`.
|
3536
|
+
# @return [String]
|
3537
|
+
#
|
3538
|
+
# @!attribute [rw] owner
|
3539
|
+
# The owner of a private hosted zone that the specified VPC is
|
3540
|
+
# associated with. The owner can be either an AWS account or an AWS
|
3541
|
+
# service.
|
3542
|
+
# @return [Types::HostedZoneOwner]
|
3543
|
+
#
|
3544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneSummary AWS API Documentation
|
3545
|
+
#
|
3546
|
+
class HostedZoneSummary < Struct.new(
|
3547
|
+
:hosted_zone_id,
|
3548
|
+
:name,
|
3549
|
+
:owner)
|
3550
|
+
include Aws::Structure
|
3551
|
+
end
|
3552
|
+
|
3493
3553
|
# The resource you're trying to access is unsupported on this Amazon
|
3494
3554
|
# Route 53 endpoint.
|
3495
3555
|
#
|
@@ -4010,6 +4070,84 @@ module Aws::Route53
|
|
4010
4070
|
include Aws::Structure
|
4011
4071
|
end
|
4012
4072
|
|
4073
|
+
# Lists all the private hosted zones that a specified VPC is associated
|
4074
|
+
# with, regardless of which AWS account created the hosted zones.
|
4075
|
+
#
|
4076
|
+
# @note When making an API call, you may pass ListHostedZonesByVPCRequest
|
4077
|
+
# data as a hash:
|
4078
|
+
#
|
4079
|
+
# {
|
4080
|
+
# vpc_id: "VPCId", # required
|
4081
|
+
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
4082
|
+
# max_items: 1,
|
4083
|
+
# next_token: "PaginationToken",
|
4084
|
+
# }
|
4085
|
+
#
|
4086
|
+
# @!attribute [rw] vpc_id
|
4087
|
+
# The ID of the Amazon VPC that you want to list hosted zones for.
|
4088
|
+
# @return [String]
|
4089
|
+
#
|
4090
|
+
# @!attribute [rw] vpc_region
|
4091
|
+
# For the Amazon VPC that you specified for `VPCId`, the AWS Region
|
4092
|
+
# that you created the VPC in.
|
4093
|
+
# @return [String]
|
4094
|
+
#
|
4095
|
+
# @!attribute [rw] max_items
|
4096
|
+
# (Optional) The maximum number of hosted zones that you want Amazon
|
4097
|
+
# Route 53 to return. If the specified VPC is associated with more
|
4098
|
+
# than `MaxItems` hosted zones, the response includes a `NextToken`
|
4099
|
+
# element. `NextToken` contains the hosted zone ID of the first hosted
|
4100
|
+
# zone that Route 53 will return if you submit another request.
|
4101
|
+
# @return [Integer]
|
4102
|
+
#
|
4103
|
+
# @!attribute [rw] next_token
|
4104
|
+
# If the previous response included a `NextToken` element, the
|
4105
|
+
# specified VPC is associated with more hosted zones. To get more
|
4106
|
+
# hosted zones, submit another `ListHostedZonesByVPC` request.
|
4107
|
+
#
|
4108
|
+
# For the value of `NextToken`, specify the value of `NextToken` from
|
4109
|
+
# the previous response.
|
4110
|
+
#
|
4111
|
+
# If the previous response didn't include a `NextToken` element,
|
4112
|
+
# there are no more hosted zones to get.
|
4113
|
+
# @return [String]
|
4114
|
+
#
|
4115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPCRequest AWS API Documentation
|
4116
|
+
#
|
4117
|
+
class ListHostedZonesByVPCRequest < Struct.new(
|
4118
|
+
:vpc_id,
|
4119
|
+
:vpc_region,
|
4120
|
+
:max_items,
|
4121
|
+
:next_token)
|
4122
|
+
include Aws::Structure
|
4123
|
+
end
|
4124
|
+
|
4125
|
+
# @!attribute [rw] hosted_zone_summaries
|
4126
|
+
# A list that contains one `HostedZoneSummary` element for each hosted
|
4127
|
+
# zone that the specified Amazon VPC is associated with. Each
|
4128
|
+
# `HostedZoneSummary` element contains the hosted zone name and ID,
|
4129
|
+
# and information about who owns the hosted zone.
|
4130
|
+
# @return [Array<Types::HostedZoneSummary>]
|
4131
|
+
#
|
4132
|
+
# @!attribute [rw] max_items
|
4133
|
+
# The value that you specified for `MaxItems` in the most recent
|
4134
|
+
# `ListHostedZonesByVPC` request.
|
4135
|
+
# @return [Integer]
|
4136
|
+
#
|
4137
|
+
# @!attribute [rw] next_token
|
4138
|
+
# The value that you specified for `NextToken` in the most recent
|
4139
|
+
# `ListHostedZonesByVPC` request.
|
4140
|
+
# @return [String]
|
4141
|
+
#
|
4142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPCResponse AWS API Documentation
|
4143
|
+
#
|
4144
|
+
class ListHostedZonesByVPCResponse < Struct.new(
|
4145
|
+
:hosted_zone_summaries,
|
4146
|
+
:max_items,
|
4147
|
+
:next_token)
|
4148
|
+
include Aws::Structure
|
4149
|
+
end
|
4150
|
+
|
4013
4151
|
# A request to retrieve a list of the public and private hosted zones
|
4014
4152
|
# that are associated with the current AWS account.
|
4015
4153
|
#
|
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.38.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-06-
|
11
|
+
date: 2020-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|