internal void ExecuteCommand()
 {
     var parameters = new ServiceCertificateDeleteParameters
     {
         ServiceName = ServiceName,
         Thumbprint = Thumbprint,
         ThumbprintAlgorithm = ThumbprintAlgorithm
     };
     ExecuteClientActionNewSM(
         null,
         CommandRuntime.ToString(),
         () => this.ComputeClient.ServiceCertificates.Delete(parameters));
 }
 /// <summary>
 /// The Delete Service Certificate operation deletes a service
 /// certificate from the certificate store of a hosted service. This
 /// operation is an asynchronous operation. To determine whether the
 /// management service has finished processing the request, call Get
 /// Operation Status.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/ee460803.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to the Delete Service Certificate
 /// operation.
 /// </param>
 /// <returns>
 /// The response body contains the status of the specified asynchronous
 /// operation, indicating whether it has succeeded, is inprogress, or
 /// has failed. Note that this status is distinct from the HTTP status
 /// code returned for the Get Operation Status operation itself. If
 /// the asynchronous operation succeeded, the response body includes
 /// the HTTP status code for the successful request. If the
 /// asynchronous operation failed, the response body includes the HTTP
 /// status code for the failed request and error information regarding
 /// the failure.
 /// </returns>
 public static Task<OperationStatusResponse> DeleteAsync(this IServiceCertificateOperations operations, ServiceCertificateDeleteParameters parameters)
 {
     return operations.DeleteAsync(parameters, CancellationToken.None);
 }
 /// <summary>
 /// The Delete Service Certificate operation deletes a service
 /// certificate from the certificate store of a hosted service. This
 /// operation is an asynchronous operation. To determine whether the
 /// management service has finished processing the request, call Get
 /// Operation Status.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/ee460803.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to the Delete Service Certificate
 /// operation.
 /// </param>
 /// <returns>
 /// The response body contains the status of the specified asynchronous
 /// operation, indicating whether it has succeeded, is inprogress, or
 /// has failed. Note that this status is distinct from the HTTP status
 /// code returned for the Get Operation Status operation itself. If
 /// the asynchronous operation succeeded, the response body includes
 /// the HTTP status code for the successful request. If the
 /// asynchronous operation failed, the response body includes the HTTP
 /// status code for the failed request and error information regarding
 /// the failure.
 /// </returns>
 public static OperationStatusResponse Delete(this IServiceCertificateOperations operations, ServiceCertificateDeleteParameters parameters)
 {
     return Task.Factory.StartNew((object s) => 
     {
         return ((IServiceCertificateOperations)s).DeleteAsync(parameters);
     }
     , operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
 }
 /// <summary>
 /// The Begin Deleting Service Certificate operation deletes a service
 /// certificate from the certificate store of a hosted service. This
 /// operation is an asynchronous operation. To determine whether the
 /// management service has finished processing the request, call Get
 /// Operation Status.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/ee460803.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to the Begin Deleting Service
 /// Certificate operation.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static Task<AzureOperationResponse> BeginDeletingAsync(this IServiceCertificateOperations operations, ServiceCertificateDeleteParameters parameters)
 {
     return operations.BeginDeletingAsync(parameters, CancellationToken.None);
 }
        protected PSArgument[] CreateServiceCertificateDeleteParameters()
        {
            ServiceCertificateDeleteParameters parameters = new ServiceCertificateDeleteParameters();

            return ConvertFromObjectsToArguments(new string[] { "Parameters" }, new object[] { parameters });
        }
 /// <summary>
 /// The Delete Service Certificate operation deletes a service
 /// certificate from the certificate store of a hosted service.  The
 /// Delete Service Certificate operation is an asynchronous operation.
 /// To determine whether the management service has finished
 /// processing the request, call Get Operation Status.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/ee460803.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='parameters'>
 /// Parameters supplied to the Delete Service Certificate operation.
 /// </param>
 /// <returns>
 /// The response body contains the status of the specified asynchronous
 /// operation, indicating whether it has succeeded, is inprogress, or
 /// has failed. Note that this status is distinct from the HTTP status
 /// code returned for the Get Operation Status operation itself.  If
 /// the asynchronous operation succeeded, the response body includes
 /// the HTTP status code for the successful request.  If the
 /// asynchronous operation failed, the response body includes the HTTP
 /// status code for the failed request, and also includes error
 /// information regarding the failure.
 /// </returns>
 public static ComputeOperationStatusResponse Delete(this IServiceCertificateOperations operations, ServiceCertificateDeleteParameters parameters)
 {
     try
     {
         return operations.DeleteAsync(parameters).Result;
     }
     catch (AggregateException ex)
     {
         if (ex.InnerExceptions.Count > 1)
         {
             throw;
         }
         else
         {
             throw ex.InnerException;
         }
     }
 }
 /// <summary>
 /// The Delete Service Certificate operation deletes a service
 /// certificate from the certificate store of a hosted service.  The
 /// Delete Service Certificate operation is an asynchronous operation.
 /// To determine whether the management service has finished
 /// processing the request, call Get Operation Status.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/ee460803.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='parameters'>
 /// Parameters supplied to the Delete Service Certificate operation.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static OperationResponse BeginDeleting(this IServiceCertificateOperations operations, ServiceCertificateDeleteParameters parameters)
 {
     try
     {
         return operations.BeginDeletingAsync(parameters).Result;
     }
     catch (AggregateException ex)
     {
         if (ex.InnerExceptions.Count > 1)
         {
             throw;
         }
         else
         {
             throw ex.InnerException;
         }
     }
 }