public interface SupportsDeletingByName
(Note: this interface is not intended to be implemented by user code)
| Modifier and Type | Method and Description |
|---|---|
void |
deleteByName(String name)
Deletes a resource from Azure, identifying it by its resource name.
|
rx.Completable |
deleteByNameAsync(String name)
Asynchronously delete a resource from Azure, identifying it by its resource name.
|
com.microsoft.rest.ServiceFuture<Void> |
deleteByNameAsync(String name,
com.microsoft.rest.ServiceCallback<Void> callback)
Asynchronously delete a resource from Azure, identifying it by its resource name.
|
void deleteByName(String name)
name - the name of the resource to deletecom.microsoft.rest.ServiceFuture<Void> deleteByNameAsync(String name, com.microsoft.rest.ServiceCallback<Void> callback)
name - the name of the resource to deletecallback - the callback on success or failurerx.Completable deleteByNameAsync(String name)
name - the name of the resource to delete/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/