/// <summary>
 /// Updates tags for a peering service with the specified name under the given
 /// subscription and resource group.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='peeringServiceName'>
 /// The name of the peering service.
 /// </param>
 /// <param name='tags'>
 /// The resource tags.
 /// </param>
 public static PeeringService Update(this IPeeringServicesOperations operations, string resourceGroupName, string peeringServiceName, ResourceTags tags)
 {
     return(operations.UpdateAsync(resourceGroupName, peeringServiceName, tags).GetAwaiter().GetResult());
 }
Beispiel #2
0
 /// <summary>
 /// Updates tags for a peering service with the specified name under the given
 /// subscription and resource group.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='peeringServiceName'>
 /// The name of the peering service.
 /// </param>
 /// <param name='tags'>
 /// Gets or sets the tags, a dictionary of descriptors arm object
 /// </param>
 public static PeeringService Update(this IPeeringServicesOperations operations, string resourceGroupName, string peeringServiceName, IDictionary <string, string> tags = default(IDictionary <string, string>))
 {
     return(operations.UpdateAsync(resourceGroupName, peeringServiceName, tags).GetAwaiter().GetResult());
 }