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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.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 Detail
-
listByRegion
com.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.- Parameters:
region- the selected Azure region- Returns:
- a
PagedIterableof resources
-
listByRegion
com.azure.core.http.rest.PagedIterable<T> listByRegion(String regionName)
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
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.- Parameters:
region- the selected Azure region- Returns:
- a representation of the deferred computation of this call, returning the requested resources
-
listByRegionAsync
com.azure.core.http.rest.PagedFlux<T> listByRegionAsync(String regionName)
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
-
-