/// <summary>
 /// The Begin Creating Service Certificate operation adds a certificate
 /// to 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/ee460817.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='serviceName'>
 /// Required. The DNS prefix name of your service.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to the Begin Creating Service
 /// Certificate operation.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static AzureOperationResponse BeginCreating(this IServiceCertificateOperations operations, string serviceName, ServiceCertificateCreateParameters parameters)
 {
     return Task.Factory.StartNew((object s) => 
     {
         return ((IServiceCertificateOperations)s).BeginCreatingAsync(serviceName, parameters);
     }
     , operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
 }
        internal void ExecuteCommand()
        {
            Password = Password ?? string.Empty;

            var certData = GetCertificateData();

            var parameters = new ServiceCertificateCreateParameters
            {
                Data = certData,
                Password = Password,
                CertificateFormat = CertificateFormat.Pfx
            };
            ExecuteClientActionNewSM(
                null, 
                CommandRuntime.ToString(),
                () => this.ComputeClient.ServiceCertificates.Create(this.ServiceName, parameters));
        }
 /// <summary>
 /// The Add Service Certificate operation adds a certificate to a
 /// hosted service.  The Add 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/ee460817.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='serviceName'>
 /// The DNS prefix name of your service.
 /// </param>
 /// <param name='parameters'>
 /// Parameters supplied to the Create Service Certificate operation.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static OperationResponse BeginCreating(this IServiceCertificateOperations operations, string serviceName, ServiceCertificateCreateParameters parameters)
 {
     try
     {
         return operations.BeginCreatingAsync(serviceName, parameters).Result;
     }
     catch (AggregateException ex)
     {
         if (ex.InnerExceptions.Count > 1)
         {
             throw;
         }
         else
         {
             throw ex.InnerException;
         }
     }
 }
예제 #4
0
        public static ServiceCertificateCreateParameters Create(X509Certificate2 certificate, bool dropPrivateKey)
        {
            if (dropPrivateKey)
            {
                certificate = DropPrivateKey(certificate);
            }

            var password = RandomBase64PasswordString();
            var certificateData = GetCertificateData(certificate, password);
            var certificateFile = new ServiceCertificateCreateParameters
            {
                Data = certificateData,
                Password = password,
                CertificateFormat = CertificateFormat.Pfx
            };

            return certificateFile;
        }
        protected PSArgument[] CreateServiceCertificateCreateParameters()
        {
            string serviceName = string.Empty;
            ServiceCertificateCreateParameters parameters = new ServiceCertificateCreateParameters();

            return ConvertFromObjectsToArguments(new string[] { "ServiceName", "Parameters" }, new object[] { serviceName, parameters });
        }
 /// <summary>
 /// The Begin Creating Service Certificate operation adds a certificate
 /// to 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/ee460817.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='serviceName'>
 /// Required. The DNS prefix name of your service.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to the Begin Creating Service
 /// Certificate operation.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static Task<AzureOperationResponse> BeginCreatingAsync(this IServiceCertificateOperations operations, string serviceName, ServiceCertificateCreateParameters parameters)
 {
     return operations.BeginCreatingAsync(serviceName, parameters, CancellationToken.None);
 }
 /// <summary>
 /// The Create Service Certificate operation adds a certificate to 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/ee460817.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IServiceCertificateOperations.
 /// </param>
 /// <param name='serviceName'>
 /// Required. The DNS prefix name of your service.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to the Create 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> CreateAsync(this IServiceCertificateOperations operations, string serviceName, ServiceCertificateCreateParameters parameters)
 {
     return operations.CreateAsync(serviceName, parameters, CancellationToken.None);
 }
예제 #8
0
        private void UploadCertificate(X509Certificate2 cert, ConfigCertificate certElement, string name)
        {
            try
            {
                var createParams = new ServiceCertificateCreateParameters
                {
                    Data = cert.Export(X509ContentType.Pfx, string.Empty),
                    Password = string.Empty,
                    CertificateFormat = CertificateFormat.Pfx
                };
                TranslateException(() => ComputeClient.ServiceCertificates.Create(name, createParams));

            }
            catch (CryptographicException ex)
            {
                throw new ArgumentException(string.Format(
                    Resources.CertificatePrivateKeyAccessError,
                    certElement.name), ex);                
            }
        }