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.microsoft.azure.PagedList<T>listByRegion(Region region)Lists all the resources of the specified type in the specified region.com.microsoft.azure.PagedList<T>listByRegion(String regionName)List all the resources of the specified type in the specified region.rx.Observable<T>listByRegionAsync(Region region)Lists all the resources of the specified type in the specified region.rx.Observable<T>listByRegionAsync(String regionName)List all the resources of the specified type in the specified region.
-
-
-
Method Detail
-
listByRegion
com.microsoft.azure.PagedList<T> listByRegion(Region region)
Lists all the resources of the specified type in the specified region.- Parameters:
region- the selected Azure region- Returns:
- list of resources
-
listByRegion
com.microsoft.azure.PagedList<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:
- list of resources
-
listByRegionAsync
rx.Observable<T> listByRegionAsync(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
-
-