Show / Hide Table of Contents

Class EnumTagDefinitionValidator

Used to validate the value set for a defined tag and contains the list of allowable values.
You must specify at least one valid value in the values array. You can't have blank or or empty strings (\"\"). Duplicate values are not allowed.

Inheritance
object
BaseTagDefinitionValidator
EnumTagDefinitionValidator
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class EnumTagDefinitionValidator : BaseTagDefinitionValidator

Properties

Values

Declaration
[JsonProperty(PropertyName = "values")]
public List<string> Values { get; set; }
Property Value
Type Description
List<string>

The list of allowed values for a definedTag value.

In this article
Back to top