Uses of Class
com.google.cloud.dns.RecordSet
-
Packages that use RecordSet Package Description com.google.cloud.dns A client for Cloud DNS - A highly available global DNS network. -
-
Uses of RecordSet in com.google.cloud.dns
Methods in com.google.cloud.dns that return RecordSet Modifier and Type Method Description RecordSet
RecordSet.Builder. build()
Builds the record set.Methods in com.google.cloud.dns that return types with arguments of type RecordSet Modifier and Type Method Description List<RecordSet>
ChangeRequestInfo. getAdditions()
Returns the list ofRecordSet
s to be added to the zone upon submitting this change request.List<RecordSet>
ChangeRequestInfo. getDeletions()
Returns the list ofRecordSet
s to be deleted from the zone upon submitting this change request.com.google.api.gax.paging.Page<RecordSet>
Dns. listRecordSets(String zoneName, Dns.RecordSetListOption... options)
Lists the record sets in the zone identified by name.DnsBatchResult<com.google.api.gax.paging.Page<RecordSet>>
DnsBatch. listRecordSets(String zoneName, Dns.RecordSetListOption... options)
Adds a request representing the "list record sets" operation in the zone specified byzoneName
to this batch.com.google.api.gax.paging.Page<RecordSet>
Zone. listRecordSets(Dns.RecordSetListOption... options)
Lists allRecordSet
s associated with this zone.Methods in com.google.cloud.dns with parameters of type RecordSet Modifier and Type Method Description ChangeRequest.Builder
ChangeRequest.Builder. add(RecordSet recordSet)
abstract ChangeRequestInfo.Builder
ChangeRequestInfo.Builder. add(RecordSet recordSet)
Adds aRecordSet
to be added to the zone upon executing thisChangeRequestInfo
.ChangeRequest.Builder
ChangeRequest.Builder. delete(RecordSet recordSet)
abstract ChangeRequestInfo.Builder
ChangeRequestInfo.Builder. delete(RecordSet recordSet)
Adds aRecordSet
to be deleted to the zone upon executing thisChangeRequestInfo
.ChangeRequest.Builder
ChangeRequest.Builder. removeAddition(RecordSet recordSet)
abstract ChangeRequestInfo.Builder
ChangeRequestInfo.Builder. removeAddition(RecordSet recordSet)
Removes a singleRecordSet
from the collection of records to be added to the zone upon executing thisChangeRequestInfo
.ChangeRequest.Builder
ChangeRequest.Builder. removeDeletion(RecordSet recordSet)
abstract ChangeRequestInfo.Builder
ChangeRequestInfo.Builder. removeDeletion(RecordSet recordSet)
Removes a singleRecordSet
from the collection of records to be deleted from the zone upon executing thisChangeRequestInfo
.Method parameters in com.google.cloud.dns with type arguments of type RecordSet Modifier and Type Method Description ChangeRequest.Builder
ChangeRequest.Builder. setAdditions(List<RecordSet> additions)
abstract ChangeRequestInfo.Builder
ChangeRequestInfo.Builder. setAdditions(List<RecordSet> additions)
Sets a collection ofRecordSet
s which are to be added to the zone upon executing thisChangeRequestInfo
.ChangeRequest.Builder
ChangeRequest.Builder. setDeletions(List<RecordSet> deletions)
abstract ChangeRequestInfo.Builder
ChangeRequestInfo.Builder. setDeletions(List<RecordSet> deletions)
Sets a collection ofRecordSet
s which are to be deleted from the zone upon executing thisChangeRequestInfo
.
-