Interface SupportsListing<T>
-
- Type Parameters:
T- the fluent type of the resource
- All Known Subinterfaces:
DeploymentOperations,Deployments,Features,GenericResources,PolicyAssignments,PolicyDefinitions,Providers,ResourceGroups,Subscriptions,Tenants
public interface SupportsListing<T>Provides access to listing Azure resources of a specific type in a subscription.(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>list()Lists all the resources of the specified type in the currently selected subscription.rx.Observable<T>listAsync()Lists all the resources of the specified type in the currently selected subscription.
-
-
-
Method Detail
-
list
com.microsoft.azure.PagedList<T> list()
Lists all the resources of the specified type in the currently selected subscription.- Returns:
- list of resources
-
listAsync
rx.Observable<T> listAsync()
Lists all the resources of the specified type in the currently selected subscription.- Returns:
- list of resources
-
-