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 http://msdn.microsoft.com/library/windowsazure/jj157179.aspx for more information)
Assembly: Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)
Task<AzureOperationResponse^>^ BeginDeletingDataDiskAsync( String^ serviceName, String^ deploymentName, String^ roleName, int logicalUnitNumber, bool deleteFromStorage, CancellationToken cancellationToken )
Parameters
- serviceName
-
Type:
System::String^
The name of your service.
- deploymentName
-
Type:
System::String^
The name of the deployment.
- 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.
- cancellationToken
-
Type:
System.Threading::CancellationToken
Cancellation token.
Return Value
Type: System.Threading.Tasks::Task<AzureOperationResponse^>^A standard service response including an HTTP status code and request ID.
Show: