Interface SupportsBeginDeletingByName

All Known Subinterfaces:
ResourceGroups

public interface SupportsBeginDeletingByName
Provides access to deleting a resource from Azure, identifying it by its resource ID.

(Note: this interface is not intended to be implemented by user code)

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Begins deleting a resource from Azure, identifying it by its resource name.
    rx.Observable<Void>
    Asynchronously begins deleting a resource from Azure, identifying it by its resource name.
    com.microsoft.rest.ServiceFuture<Void>
    beginDeleteByNameAsync(String name, com.microsoft.rest.ServiceCallback<Void> callback)
    Asynchronously begins deleting a resource from Azure, identifying it by its resource name.
  • Method Details

    • beginDeleteByName

      void beginDeleteByName(String name)
      Begins deleting a resource from Azure, identifying it by its resource name. The resource will stay until get() returns null.
      Parameters:
      name - the name of the resource to delete
    • beginDeleteByNameAsync

      com.microsoft.rest.ServiceFuture<Void> beginDeleteByNameAsync(String name, com.microsoft.rest.ServiceCallback<Void> callback)
      Asynchronously begins deleting a resource from Azure, identifying it by its resource name. The resource will stay until get() returns null.
      Parameters:
      name - the name of the resource to delete
      callback - the callback on success or failure
      Returns:
      a handle to cancel the request
    • beginDeleteByNameAsync

      rx.Observable<Void> beginDeleteByNameAsync(String name)
      Asynchronously begins deleting a resource from Azure, identifying it by its resource name. The resource will stay until get() returns null.
      Parameters:
      name - the name the resource to delete
      Returns:
      a representation of the deferred computation of this call