/// <summary>
 /// Updates an existing custom resource provider. The only value that can be
 /// updated via PATCH currently is the tags.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='resourceProviderName'>
 /// The name of the resource provider.
 /// </param>
 /// <param name='tags'>
 /// Resource tags
 /// </param>
 public static CustomRPManifest Update(this ICustomResourceProviderOperations operations, string resourceGroupName, string resourceProviderName, IDictionary <string, string> tags = default(IDictionary <string, string>))
 {
     return(operations.UpdateAsync(resourceGroupName, resourceProviderName, tags).GetAwaiter().GetResult());
 }