/// <summary>
 /// The Change Deployment Configuration operation initiates a change to
 /// the deployment configuration.  The Change Deployment Configuration
 /// operation is an asynchronous operation. To determine whether the
 /// Management service has finished processing the request, call Get
 /// Operation Status.  For more information on asynchronous
 /// operations, see Tracking Asynchronous Service Management Requests.
 /// (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/ee460809.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IDeploymentOperations.
 /// </param>
 /// <param name='serviceName'>
 /// The cloud service to change deployment configuration for.
 /// </param>
 /// <param name='deploymentName'>
 /// The deployment to change configuration for.
 /// </param>
 /// <param name='parameters'>
 /// Parameters supplied to the Change Configuration Deployment
 /// operation.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static OperationResponse BeginChangingConfigurationByName(this IDeploymentOperations operations, string serviceName, string deploymentName, DeploymentChangeConfigurationParameters parameters)
 {
     try
     {
         return operations.BeginChangingConfigurationByNameAsync(serviceName, deploymentName, parameters).Result;
     }
     catch (AggregateException ex)
     {
         if (ex.InnerExceptions.Count > 1)
         {
             throw;
         }
         else
         {
             throw ex.InnerException;
         }
     }
 }
 /// <summary>
 /// The Begin Changing Deployment Configuration By Name operation
 /// initiates a change to the deployment configuration. This operation
 /// is an asynchronous operation. To determine whether the Management
 /// service has finished processing the request, call Get Operation
 /// Status. For more information on asynchronous operations, see
 /// Tracking Asynchronous Service Management Requests at
 /// http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx.
 /// (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/ee460809.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Compute.IDeploymentOperations.
 /// </param>
 /// <param name='serviceName'>
 /// Required. The cloud service to change deployment configuration for.
 /// </param>
 /// <param name='deploymentName'>
 /// Required. The deployment to change configuration for.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to the Begin Changing Configuration
 /// Deployment By Name operation.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static Task<AzureOperationResponse> BeginChangingConfigurationByNameAsync(this IDeploymentOperations operations, string serviceName, string deploymentName, DeploymentChangeConfigurationParameters parameters)
 {
     return operations.BeginChangingConfigurationByNameAsync(serviceName, deploymentName, parameters, CancellationToken.None);
 }