Package | Description |
---|---|
com.google.cloud.dns |
A client for Cloud DNS - A highly available global DNS network.
|
Modifier and Type | Method and Description |
---|---|
RecordSet |
RecordSet.Builder.build()
Builds the record set.
|
Modifier and Type | Method and Description |
---|---|
List<RecordSet> |
ChangeRequestInfo.getAdditions()
Returns the list of
RecordSet s to be added to the zone upon submitting this change
request. |
List<RecordSet> |
ChangeRequestInfo.getDeletions()
Returns the list of
RecordSet s to be deleted from the zone upon submitting this change
request. |
Page<RecordSet> |
Zone.listRecordSets(Dns.RecordSetListOption... options)
Lists all
RecordSet s associated with this zone. |
DnsBatchResult<Page<RecordSet>> |
DnsBatch.listRecordSets(String zoneName,
Dns.RecordSetListOption... options)
Adds a request representing the "list record sets" operation in the zone specified by
zoneName to this batch. |
Page<RecordSet> |
Dns.listRecordSets(String zoneName,
Dns.RecordSetListOption... options)
Lists the record sets in the zone identified by name.
|
Modifier and Type | Method and Description |
---|---|
abstract ChangeRequestInfo.Builder |
ChangeRequestInfo.Builder.add(RecordSet recordSet)
Adds a
RecordSet to be added to the zone upon executing this ChangeRequestInfo . |
ChangeRequest.Builder |
ChangeRequest.Builder.add(RecordSet recordSet) |
abstract ChangeRequestInfo.Builder |
ChangeRequestInfo.Builder.delete(RecordSet recordSet)
Adds a
RecordSet to be deleted to the zone upon executing this
ChangeRequestInfo . |
ChangeRequest.Builder |
ChangeRequest.Builder.delete(RecordSet recordSet) |
abstract ChangeRequestInfo.Builder |
ChangeRequestInfo.Builder.removeAddition(RecordSet recordSet)
Removes a single
RecordSet from the collection of records to be
added to the zone upon executing this ChangeRequestInfo . |
ChangeRequest.Builder |
ChangeRequest.Builder.removeAddition(RecordSet recordSet) |
abstract ChangeRequestInfo.Builder |
ChangeRequestInfo.Builder.removeDeletion(RecordSet recordSet)
Removes a single
RecordSet from the collection of records to be
deleted from the zone upon executing this ChangeRequestInfo . |
ChangeRequest.Builder |
ChangeRequest.Builder.removeDeletion(RecordSet recordSet) |
Modifier and Type | Method and Description |
---|---|
abstract ChangeRequestInfo.Builder |
ChangeRequestInfo.Builder.setAdditions(List<RecordSet> additions)
Sets a collection of
RecordSet s which are to be added to the zone upon executing this
ChangeRequestInfo . |
ChangeRequest.Builder |
ChangeRequest.Builder.setAdditions(List<RecordSet> additions) |
abstract ChangeRequestInfo.Builder |
ChangeRequestInfo.Builder.setDeletions(List<RecordSet> deletions)
Sets a collection of
RecordSet s which are to be deleted from the zone upon executing
this ChangeRequestInfo . |
ChangeRequest.Builder |
ChangeRequest.Builder.setDeletions(List<RecordSet> deletions) |
Copyright © 2019 Google LLC. All rights reserved.