public interface SupportsDeletingByParent
(Note this interface is not intended to be implemented by user code.)
| Modifier and Type | Method and Description |
|---|---|
void |
deleteByParent(String groupName,
String parentName,
String name)
Deletes a resource from Azure, identifying it by its name and its resource group.
|
rx.Completable |
deleteByParentAsync(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.
|
void deleteByParent(String groupName, String parentName, String name)
groupName - The group the resource is part ofparentName - the name of parent resource.name - The name of the resourcecom.microsoft.rest.ServiceFuture<Void> deleteByParentAsync(String groupName, String parentName, String name, com.microsoft.rest.ServiceCallback<Void> callback)
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 failurerx.Completable deleteByParentAsync(String groupName, String parentName, String name)
groupName - The group the resource is part ofparentName - the name of parent resource.name - The name of the resource/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/