SubscriptionResource.DeletePredefinedTagValueAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This operation allows deleting a value from the list of predefined values for an existing predefined tag name. The value being deleted must not be in use as a tag value for the given tag name for any resource.
- Request Path: /subscriptions/{subscriptionId}/tagNames/{tagName}/tagValues/{tagValue}
- Operation Id: Tags_DeleteValue
- Default Api Version: 2022-09-01
public virtual System.Threading.Tasks.Task<Azure.Response> DeletePredefinedTagValueAsync (string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default);
abstract member DeletePredefinedTagValueAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.DeletePredefinedTagValueAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function DeletePredefinedTagValueAsync (tagName As String, tagValue As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)
Parameters
- tagName
- String
The name of the tag.
- tagValue
- String
The value of the tag to delete.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
Exceptions
tagName
or tagValue
is an empty string, and was expected to be non-empty.
tagName
or tagValue
is null.
Applies to
Azure SDK for .NET