Interface SupportsDeletingByResourceGroup
-
- All Known Subinterfaces:
Deployments
public interface SupportsDeletingByResourceGroupProvides 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteByResourceGroup(String resourceGroupName, String name)Deletes a resource from Azure, identifying it by its name and its resource group.rx.CompletabledeleteByResourceGroupAsync(String resourceGroupName, String name)Asynchronously delete a resource from Azure, identifying it by its name and its resource group.com.microsoft.rest.ServiceFuture<Void>deleteByResourceGroupAsync(String resourceGroupName, String name, com.microsoft.rest.ServiceCallback<Void> callback)Asynchronously delete a resource from Azure, identifying it by its name and its resource group.
-
-
-
Method Detail
-
deleteByResourceGroup
void deleteByResourceGroup(String resourceGroupName, String name)
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
com.microsoft.rest.ServiceFuture<Void> deleteByResourceGroupAsync(String resourceGroupName, String name, com.microsoft.rest.ServiceCallback<Void> callback)
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 resourcecallback- the callback to call on success or failure- Returns:
- a handle to cancel the request
-
deleteByResourceGroupAsync
rx.Completable deleteByResourceGroupAsync(String resourceGroupName, String name)
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
-
-