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
System.Object
BaseTagDefinitionValidator
EnumTagDefinitionValidator
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class EnumTagDefinitionValidator : BaseTagDefinitionValidator

Properties

Values

Declaration
public System.Collections.Generic.List<string> Values { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>

The list of allowed values for a definedTag value.

In This Article
Back to top