PrivateDnsRecordSets<PrivateRecordSetT> Interface
Type Parameters
- PrivateRecordSetT
the record set type
Implements
public interface PrivateDnsRecordSets
extends SupportsListing<PrivateRecordSetT>, SupportsGettingByName<PrivateRecordSetT>, HasParent<PrivateDnsZone>
Base interface for all record sets.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract
Paged |
list(int pageSize)
Lists all the record sets, with number of entries in each page limited to given size. |
abstract
Paged |
list(String recordSetNameSuffix)
Lists all the record sets with the given suffix. |
abstract
Paged |
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. |
abstract
Paged |
listAsync(int pageSize)
Lists all the record sets, with number of entries in each page limited to given size. |
abstract
Paged |
listAsync(String recordSetNameSuffix)
Lists all the record sets with the given suffix. |
abstract
Paged |
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. |
Method Details
list
public abstract PagedIterable
Lists all the record sets, with number of entries in each page limited to given size.
Parameters:
Returns:
list
public abstract PagedIterable
Lists all the record sets with the given suffix.
Parameters:
Returns:
list
public abstract PagedIterable
Lists all the record sets with the given suffix, also limits the number of entries per page to the given page size.
Parameters:
Returns:
listAsync
public abstract PagedFlux
Lists all the record sets, with number of entries in each page limited to given size.
Parameters:
Returns:
listAsync
public abstract PagedFlux
Lists all the record sets with the given suffix.
Parameters:
Returns:
listAsync
public abstract PagedFlux
Lists all the record sets with the given suffix, also limits the number of entries per page to the given page size.
Parameters:
Returns:
Applies to
Azure SDK for Java