Interface InnerSupportsListing<InnerT>
- Type Parameters:
InnerT- the fluent type of the resource
- All Known Subinterfaces:
DeploymentsClient,ManagementLocksClient,PolicyAssignmentsClient,PolicyExemptionsClient,ResourcesClient
public interface InnerSupportsListing<InnerT>
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
Modifier and TypeMethodDescriptioncom.azure.core.http.rest.PagedIterable<InnerT>list()Lists the page list of all resources of specific type available in subscription.com.azure.core.http.rest.PagedFlux<InnerT>Returns the observable for the page list of all resources of specific type in subscription.com.azure.core.http.rest.PagedIterable<InnerT>listByResourceGroup(String resourceGroupName) Lists the page list of all resources of specific type in specified resource group.com.azure.core.http.rest.PagedFlux<InnerT>listByResourceGroupAsync(String resourceGroup) Returns the observable for the page list of all resources of specific type in specified resource group.
-
Method Details
-
listAsync
com.azure.core.http.rest.PagedFlux<InnerT> listAsync()Returns the observable for the page list of all resources of specific type in subscription.- Returns:
- the
PagedFluxof resources if successful.
-
listByResourceGroupAsync
Returns the observable for the page list of all resources of specific type in specified resource group.- Parameters:
resourceGroup- name of the resource group.- Returns:
- the
PagedFluxof resources if successful.
-
list
com.azure.core.http.rest.PagedIterable<InnerT> list()Lists the page list of all resources of specific type available in subscription.- Returns:
- the
PagedIterableof resources if successful.
-
listByResourceGroup
Lists the page list of all resources of specific type in specified resource group.- Parameters:
resourceGroupName- The name of the resource group within the user's subscription.- Returns:
- the
PagedIterableof resources if successful.
-