示例#1
0
 /// <summary>
 /// Detach and break the lease of the disk attached to the virtual machine.
 /// This operation can take a while to complete.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='labName'>
 /// The name of the lab.
 /// </param>
 /// <param name='userName'>
 /// The name of the user profile.
 /// </param>
 /// <param name='name'>
 /// The name of the disk.
 /// </param>
 /// <param name='detachDiskProperties'>
 /// Properties of the disk to detach.
 /// </param>
 public static void BeginDetach(this IDisksOperations operations, string resourceGroupName, string labName, string userName, string name, DetachDiskProperties detachDiskProperties)
 {
     operations.BeginDetachAsync(resourceGroupName, labName, userName, name, detachDiskProperties).GetAwaiter().GetResult();
 }