/// <summary>
 /// Updates a network security group 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='networkSecurityGroupName'>
 /// The name of the network security group.
 /// </param>
 /// <param name='tags'>
 /// Resource tags.
 /// </param>
 public static NetworkSecurityGroup UpdateTags(this INetworkSecurityGroupsOperations operations, string resourceGroupName, string networkSecurityGroupName, IDictionary <string, string> tags = default(IDictionary <string, string>))
 {
     return(operations.UpdateTagsAsync(resourceGroupName, networkSecurityGroupName, tags).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Updates a network security group 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='networkSecurityGroupName'>
 /// The name of the network security group.
 /// </param>
 /// <param name='parameters'>
 /// Parameters supplied to update network security group tags.
 /// </param>
 public static NetworkSecurityGroup UpdateTags(this INetworkSecurityGroupsOperations operations, string resourceGroupName, string networkSecurityGroupName, TagsObject parameters)
 {
     return(operations.UpdateTagsAsync(resourceGroupName, networkSecurityGroupName, parameters).GetAwaiter().GetResult());
 }