/// <summary>
 /// Deletes the specified certificate.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the Batch account.
 /// </param>
 /// <param name='accountName'>
 /// The name of the Batch account.
 /// </param>
 /// <param name='certificateName'>
 /// The identifier for the certificate. This must be made up of algorithm and
 /// thumbprint separated by a dash, and must match the certificate data in the
 /// request. For example SHA1-a3d1c5.
 /// </param>
 public static CertificateDeleteHeaders BeginDelete(this ICertificateOperations operations, string resourceGroupName, string accountName, string certificateName)
 {
     return(operations.BeginDeleteAsync(resourceGroupName, accountName, certificateName).GetAwaiter().GetResult());
 }