Show / Hide Table of Contents

Class EnumSecurityAttributeValidator

Used to validate the value set for a security attribute 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
BaseSecurityAttributeValidator
EnumSecurityAttributeValidator
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.SecurityattributeService.Models
Assembly: OCI.DotNetSDK.Securityattribute.dll
Syntax
public class EnumSecurityAttributeValidator : BaseSecurityAttributeValidator

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 security attribute value.

In this article
Back to top