RecordSetT - the record set typepublic interface DnsRecordSets<RecordSetT> extends SupportsListing<RecordSetT>, SupportsGettingByName<RecordSetT>, HasParent<DnsZone>
| Modifier and Type | Method and Description |
|---|---|
com.azure.core.http.rest.PagedIterable<RecordSetT> |
list(int pageSize)
Lists all the record sets, with number of entries in each page limited to given size.
|
com.azure.core.http.rest.PagedIterable<RecordSetT> |
list(String recordSetNameSuffix)
Lists all the record sets with the given suffix.
|
com.azure.core.http.rest.PagedIterable<RecordSetT> |
list(String recordSetNameSuffix,
int pageSize)
Lists all the record sets with the given suffix, also limits the number of entries per page to the given page
size.
|
com.azure.core.http.rest.PagedFlux<RecordSetT> |
listAsync(int pageSize)
Lists all the record sets, with number of entries in each page limited to given size.
|
com.azure.core.http.rest.PagedFlux<RecordSetT> |
listAsync(String recordSetNameSuffix)
Lists all the record sets with the given suffix.
|
com.azure.core.http.rest.PagedFlux<RecordSetT> |
listAsync(String recordSetNameSuffix,
int pageSize)
Lists all the record sets with the given suffix, also limits the number of entries per page to the given page
size.
|
list, listAsyncgetByName, getByNameAsynccom.azure.core.http.rest.PagedIterable<RecordSetT> list(String recordSetNameSuffix)
recordSetNameSuffix - the record set name suffixcom.azure.core.http.rest.PagedIterable<RecordSetT> list(int pageSize)
pageSize - the maximum number of record sets in a pagecom.azure.core.http.rest.PagedIterable<RecordSetT> list(String recordSetNameSuffix, int pageSize)
recordSetNameSuffix - the record set name suffixpageSize - the maximum number of record sets in a pagecom.azure.core.http.rest.PagedFlux<RecordSetT> listAsync(String recordSetNameSuffix)
recordSetNameSuffix - the record set name suffixcom.azure.core.http.rest.PagedFlux<RecordSetT> listAsync(int pageSize)
pageSize - the maximum number of record sets in a pagecom.azure.core.http.rest.PagedFlux<RecordSetT> listAsync(String recordSetNameSuffix, int pageSize)
recordSetNameSuffix - the record set name suffixpageSize - the maximum number of record sets in a pageVisit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.