Freigeben über


InnerSupportsListing<InnerT> Interface

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

Modifier and Type Method and Description
abstract PagedIterable<InnerT> list()

Lists the page list of all resources of specific type available in subscription.

abstract PagedFlux<InnerT> listAsync()

Returns the observable for the page list of all resources of specific type in subscription.

abstract PagedIterable<InnerT> listByResourceGroup(String resourceGroupName)

Lists the page list of all resources of specific type in specified resource group.

abstract PagedFlux<InnerT> listByResourceGroupAsync(String resourceGroup)

Returns the observable for the page list of all resources of specific type in specified resource group.

Method Details

list

public abstract PagedIterable<InnerT> list()

Lists the page list of all resources of specific type available in subscription.

Returns:

the PagedIterable<T> of resources if successful.

listAsync

public abstract PagedFlux<InnerT> listAsync()

Returns the observable for the page list of all resources of specific type in subscription.

Returns:

the PagedFlux<T> of resources if successful.

listByResourceGroup

public abstract PagedIterable<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 PagedIterable<T> of resources if successful.

listByResourceGroupAsync

public abstract PagedFlux<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:

the PagedFlux<T> of resources if successful.

Applies to