Interface SupportsListingByResourceGroup<T>
- Type Parameters:
T- the type of the resources listed.
- All Known Subinterfaces:
Deployments,GenericResources,ManagementLocks,PolicyAssignments
public interface SupportsListingByResourceGroup<T>
Provides access to listing Azure resources of a specific type in a specific resource group.
(Note this interface is not intended to be implemented by user code.)
-
Method Summary
Modifier and TypeMethodDescriptioncom.azure.core.http.rest.PagedIterable<T> listByResourceGroup(String resourceGroupName) Lists resources of the specified type in the specified resource group.com.azure.core.http.rest.PagedFlux<T> listByResourceGroupAsync(String resourceGroupName) Lists resources of the specified type in the specified resource group.
-
Method Details
-
listByResourceGroup
Lists resources of the specified type in the specified resource group.- Parameters:
resourceGroupName- the name of the resource group to list the resources from- Returns:
- the list of resources
-
listByResourceGroupAsync
Lists resources of the specified type in the specified resource group.- Parameters:
resourceGroupName- the name of the resource group to list the resources from- Returns:
- the
PagedFluxof the resources
-