/// <summary>
 /// Set existing Deployment under the app as active
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the Service resource.
 /// </param>
 /// <param name='appName'>
 /// The name of the App resource.
 /// </param>
 /// <param name='activeDeploymentCollection'>
 /// A list of Deployment name to be active.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <AppResource> BeginSetActiveDeploymentsAsync(this IAppsOperations operations, string resourceGroupName, string serviceName, string appName, ActiveDeploymentCollection activeDeploymentCollection, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.BeginSetActiveDeploymentsWithHttpMessagesAsync(resourceGroupName, serviceName, appName, activeDeploymentCollection, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Set existing Deployment under the app as active
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the Service resource.
 /// </param>
 /// <param name='appName'>
 /// The name of the App resource.
 /// </param>
 /// <param name='activeDeploymentCollection'>
 /// A list of Deployment name to be active.
 /// </param>
 public static AppResource BeginSetActiveDeployments(this IAppsOperations operations, string resourceGroupName, string serviceName, string appName, ActiveDeploymentCollection activeDeploymentCollection)
 {
     return(operations.BeginSetActiveDeploymentsAsync(resourceGroupName, serviceName, appName, activeDeploymentCollection).GetAwaiter().GetResult());
 }