/// <summary>
 /// Deletes the specified public IP address.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='publicIpAddressName'>
 /// The name of the subnet.
 /// </param>
 public static void Delete(this IPublicIPAddressesOperations operations, string resourceGroupName, string publicIpAddressName)
 {
     operations.DeleteAsync(resourceGroupName, publicIpAddressName).GetAwaiter().GetResult();
 }