Interface SupportsListingByRegion<T>
- Type Parameters:
T- the fluent type of the resource
public interface SupportsListingByRegion<T>
Provides access to listing Azure resources of a specific type based on their region.
(Note: this interface is not intended to be implemented by user code)
-
Method Summary
Modifier and TypeMethodDescriptioncom.azure.core.http.rest.PagedIterable<T> listByRegion(com.azure.core.management.Region region) Lists all the resources of the specified type in the specified region.com.azure.core.http.rest.PagedIterable<T> listByRegion(String regionName) List all the resources of the specified type in the specified region.com.azure.core.http.rest.PagedFlux<T> listByRegionAsync(com.azure.core.management.Region region) Lists all the resources of the specified type in the specified region.com.azure.core.http.rest.PagedFlux<T> listByRegionAsync(String regionName) List all the resources of the specified type in the specified region.
-
Method Details
-
listByRegion
Lists all the resources of the specified type in the specified region.- Parameters:
region- the selected Azure region- Returns:
- a
PagedIterableof resources
-
listByRegion
List all the resources of the specified type in the specified region.- Parameters:
regionName- the name of an Azure region- Returns:
- a
PagedIterablelist of resources
-
listByRegionAsync
Lists all the resources of the specified type in the specified region.- Parameters:
region- the selected Azure region- Returns:
- a representation of the deferred computation of this call, returning the requested resources
-
listByRegionAsync
List all the resources of the specified type in the specified region.- Parameters:
regionName- the name of an Azure region- Returns:
- a representation of the deferred computation of this call, returning the requested resources
-