Interface SupportsDeletingByResourceGroup
- All Known Subinterfaces:
Deployments,ManagementLocks
public interface SupportsDeletingByResourceGroup
Provides access to deleting a resource from Azure, identifying it by its name and its resource group.
(Note this interface is not intended to be implemented by user code.)
-
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteByResourceGroup(String resourceGroupName, String name) Deletes a resource from Azure, identifying it by its name and its resource group.deleteByResourceGroupAsync(String resourceGroupName, String name) Asynchronously delete a resource from Azure, identifying it by its name and its resource group.
-
Method Details
-
deleteByResourceGroup
Deletes a resource from Azure, identifying it by its name and its resource group.- Parameters:
resourceGroupName- the resource group the resource is part ofname- the name of the resource
-
deleteByResourceGroupAsync
Asynchronously delete a resource from Azure, identifying it by its name and its resource group.- Parameters:
resourceGroupName- the resource group the resource is part ofname- the name of the resource- Returns:
- a representation of the deferred computation of this call
-