IVirtualMachineOperations.BeginDeletingAsync Method (String, String, String, Boolean, CancellationToken)

 

The Begin Deleting Role operation deletes the specified virtual machine. (see https://msdn.microsoft.com/library/windowsazure/jj157184.aspx for more information)

Namespace:   Microsoft.WindowsAzure.Management.Compute
Assembly:  Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)

Syntax

Task<AzureOperationResponse> BeginDeletingAsync(
    string serviceName,
    string deploymentName,
    string virtualMachineName,
    bool deleteFromStorage,
    CancellationToken cancellationToken
)
Task<AzureOperationResponse^>^ BeginDeletingAsync(
    String^ serviceName,
    String^ deploymentName,
    String^ virtualMachineName,
    bool deleteFromStorage,
    CancellationToken cancellationToken
)
abstract BeginDeletingAsync : 
        serviceName:string *
        deploymentName:string *
        virtualMachineName:string *
        deleteFromStorage:bool *
        cancellationToken:CancellationToken -> Task<AzureOperationResponse>
Function BeginDeletingAsync (
    serviceName As String,
    deploymentName As String,
    virtualMachineName As String,
    deleteFromStorage As Boolean,
    cancellationToken As CancellationToken
) As Task(Of AzureOperationResponse)

Parameters

  • deploymentName
    Type: System.String

    The name of your deployment.

  • virtualMachineName
    Type: System.String

    The name of the virtual machine to delete.

  • deleteFromStorage
    Type: System.Boolean

    Specifies that the source blob(s) for the virtual machine should also be deleted from storage.

Return Value

Type: System.Threading.Tasks.Task<AzureOperationResponse>

A standard service response including an HTTP status code and request ID.

See Also

IVirtualMachineOperations Interface
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top