Interface SupportsListing<T>
-
- Type Parameters:
T- the fluent type of the resource
- All Known Subinterfaces:
DeploymentOperations,Deployments,Features,GenericResources,ManagementLocks,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.azure.core.http.rest.PagedIterable<T>list()Lists all the resources of the specified type in the currently selected subscription.com.azure.core.http.rest.PagedFlux<T>listAsync()Lists all the resources of the specified type in the currently selected subscription.
-
-
-
Method Detail
-
list
com.azure.core.http.rest.PagedIterable<T> list()
Lists all the resources of the specified type in the currently selected subscription.- Returns:
- A
PagedIterableof resources
-
listAsync
com.azure.core.http.rest.PagedFlux<T> listAsync()
Lists all the resources of the specified type in the currently selected subscription.- Returns:
- A
PagedFluxof resources
-
-