IVirtualMachineDiskOperations.BeginDeletingDataDiskAsync Method

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)

Usage

'Usage
Dim instance As IVirtualMachineDiskOperations
Dim serviceName As String
Dim deploymentName As String
Dim roleName As String
Dim logicalUnitNumber As Integer
Dim deleteFromStorage As Boolean
Dim cancellationToken As CancellationToken
Dim returnValue As Task(Of AzureOperationResponse)

returnValue = instance.BeginDeletingDataDiskAsync(serviceName, deploymentName, roleName, logicalUnitNumber, deleteFromStorage, cancellationToken)

Syntax

'Declaration
Function BeginDeletingDataDiskAsync ( _
    serviceName As String, _
    deploymentName As String, _
    roleName As String, _
    logicalUnitNumber As Integer, _
    deleteFromStorage As Boolean, _
    cancellationToken As CancellationToken _
) As Task(Of AzureOperationResponse)
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
)
Task<AzureOperationResponse> BeginDeletingDataDiskAsync (
    String serviceName, 
    String deploymentName, 
    String roleName, 
    int logicalUnitNumber, 
    boolean deleteFromStorage, 
    CancellationToken cancellationToken
)
function BeginDeletingDataDiskAsync (
    serviceName : String, 
    deploymentName : String, 
    roleName : String, 
    logicalUnitNumber : int, 
    deleteFromStorage : boolean, 
    cancellationToken : CancellationToken
) : Task<AzureOperationResponse>

Parameters

  • serviceName
    The name of your service.
  • deploymentName
    The name of the deployment.
  • roleName
    The name of the role to delete the data disk from.
  • logicalUnitNumber
    The logical unit number of the disk.
  • deleteFromStorage
    Specifies that the source blob for the disk should also be deleted from storage.
  • cancellationToken
    Cancellation token.

Return Value

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

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also

Reference

IVirtualMachineDiskOperations Interface
IVirtualMachineDiskOperations Members
Microsoft.WindowsAzure.Management.Compute Namespace