Interface SupportsDeletingByParent
-
public interface SupportsDeletingByParentProvides access to getting a specific Azure resource based on its resource group and parent.(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 voiddeleteByParent(String groupName, String parentName, String name)Deletes a resource from Azure, identifying it by its name and its resource group.rx.CompletabledeleteByParentAsync(String groupName, String parentName, String name)Asynchronously delete a resource from Azure, identifying it by its name and its resource group.com.microsoft.rest.ServiceFuture<Void>deleteByParentAsync(String groupName, String parentName, 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
-
deleteByParent
void deleteByParent(String groupName, String parentName, String name)
Deletes a resource from Azure, identifying it by its name and its resource group.- Parameters:
groupName- The group the resource is part ofparentName- the name of parent resource.name- The name of the resource
-
deleteByParentAsync
com.microsoft.rest.ServiceFuture<Void> deleteByParentAsync(String groupName, String parentName, String name, com.microsoft.rest.ServiceCallback<Void> callback)
Asynchronously delete a resource from Azure, identifying it by its name and its resource group.- Parameters:
groupName- The group the resource is part ofparentName- the name of parent resource.name- The name of the resourcecallback- the callback to call on success or failure- Returns:
- a handle to cancel the request
-
deleteByParentAsync
rx.Completable deleteByParentAsync(String groupName, String parentName, String name)
Asynchronously delete a resource from Azure, identifying it by its name and its resource group.- Parameters:
groupName- The group the resource is part ofparentName- the name of parent resource.name- The name of the resource- Returns:
- a representation of the deferred computation of this call
-
-