Interface InnerSupportsListing<InnerT>
-
- Type Parameters:
InnerT- the fluent type of the resource
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.microsoft.azure.PagedList<InnerT>list()Lists the page list of all resources of specific type available in subscription.rx.Observable<com.microsoft.azure.Page<InnerT>>listAsync()Returns the observable for the page list of all resources of specific type in subscription.com.microsoft.azure.PagedList<InnerT>listByResourceGroup(String resourceGroupName)Lists the page list of all resources of specific type in specified resource group.rx.Observable<com.microsoft.azure.Page<InnerT>>listByResourceGroupAsync(String resourceGroup)Returns the observable for the page list of all resources of specific type in specified resource group.
-
-
-
Method Detail
-
listAsync
rx.Observable<com.microsoft.azure.Page<InnerT>> listAsync()
Returns the observable for the page list of all resources of specific type in subscription.- Returns:
- Observable of list of resources.
-
listByResourceGroupAsync
rx.Observable<com.microsoft.azure.Page<InnerT>> listByResourceGroupAsync(String resourceGroup)
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:
- Observable of list of resources.
-
list
com.microsoft.azure.PagedList<InnerT> list()
Lists the page list of all resources of specific type available in subscription.- Returns:
- the paged list of resources if successful.
-
listByResourceGroup
com.microsoft.azure.PagedList<InnerT> listByResourceGroup(String resourceGroupName)
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 paged list of resources if successful.
-
-