IVirtualMachineDiskOperations.BeginDeletingDataDiskAsync Method (String, String, String, Int32, Boolean, CancellationToken)

 

The Begin Deleting Data Disk operation removes the specified data disk from a virtual machine. (see https://msdn.microsoft.com/library/windowsazure/jj157179.aspx for more information)

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

Syntax

Task<AzureOperationResponse> BeginDeletingDataDiskAsync(
    string serviceName,
    string deploymentName,
    string roleName,
    int logicalUnitNumber,
    bool deleteFromStorage,
    CancellationToken cancellationToken
)
Task<AzureOperationResponse^>^ BeginDeletingDataDiskAsync(
    String^ serviceName,
    String^ deploymentName,
    String^ roleName,
    int logicalUnitNumber,
    bool deleteFromStorage,
    CancellationToken cancellationToken
)
abstract BeginDeletingDataDiskAsync : 
        serviceName:string *
        deploymentName:string *
        roleName:string *
        logicalUnitNumber:int *
        deleteFromStorage:bool *
        cancellationToken:CancellationToken -> Task<AzureOperationResponse>
Function BeginDeletingDataDiskAsync (
    serviceName As String,
    deploymentName As String,
    roleName As String,
    logicalUnitNumber As Integer,
    deleteFromStorage As Boolean,
    cancellationToken As CancellationToken
) As Task(Of AzureOperationResponse)

Parameters

  • roleName
    Type: System.String

    The name of the role to delete the data disk from.

  • logicalUnitNumber
    Type: System.Int32

    The logical unit number of the disk.

  • deleteFromStorage
    Type: System.Boolean

    Specifies that the source blob for the disk 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

IVirtualMachineDiskOperations Interface
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top