/// <summary>
 /// Delete list of Tags in an Experiment.
 /// </summary>
 /// <remarks>
 /// Delete list of Tags from a specific Experiment Id.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='subscriptionId'>
 /// The Azure Subscription ID.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The Name of the resource group in which the workspace is located.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='experimentId'>
 /// The identifier of the experiment.
 /// </param>
 /// <param name='tags'>
 /// The requested tags list to be deleted.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <Experiment> DeleteTagsAsync(this IExperimentsOperations operations, System.Guid subscriptionId, string resourceGroupName, string workspaceName, string experimentId, DeleteTagsCommand tags = default(DeleteTagsCommand), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.DeleteTagsWithHttpMessagesAsync(subscriptionId, resourceGroupName, workspaceName, experimentId, tags, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Delete list of Tags in an Experiment.
 /// </summary>
 /// <remarks>
 /// Delete list of Tags from a specific Experiment Id.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='subscriptionId'>
 /// The Azure Subscription ID.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The Name of the resource group in which the workspace is located.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='experimentId'>
 /// The identifier of the experiment.
 /// </param>
 /// <param name='tags'>
 /// The requested tags list to be deleted.
 /// </param>
 public static Experiment DeleteTags(this IExperimentsOperations operations, System.Guid subscriptionId, string resourceGroupName, string workspaceName, string experimentId, DeleteTagsCommand tags = default(DeleteTagsCommand))
 {
     return(operations.DeleteTagsAsync(subscriptionId, resourceGroupName, workspaceName, experimentId, tags).GetAwaiter().GetResult());
 }