EnumTagDefinitionValidator

class oci.governance_rules_control_plane.models.EnumTagDefinitionValidator(**kwargs)

Bases: oci.governance_rules_control_plane.models.base_tag_definition_validator.BaseTagDefinitionValidator

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.

Attributes

VALIDATOR_TYPE_DEFAULT str(object=’’) -> str
VALIDATOR_TYPE_ENUM str(object=’’) -> str
validator_type [Required] Gets the validator_type of this BaseTagDefinitionValidator.
values Gets the values of this EnumTagDefinitionValidator.

Methods

__init__(**kwargs) Initializes a new EnumTagDefinitionValidator object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
VALIDATOR_TYPE_DEFAULT = 'DEFAULT'
VALIDATOR_TYPE_ENUM = 'ENUM'
__init__(**kwargs)

Initializes a new EnumTagDefinitionValidator object with values from keyword arguments. The default value of the validator_type attribute of this class is ENUM and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • validator_type (str) – The value to assign to the validator_type property of this EnumTagDefinitionValidator. Allowed values for this property are: “ENUM”, “DEFAULT”
  • values (list[str]) – The value to assign to the values property of this EnumTagDefinitionValidator.
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

validator_type

[Required] Gets the validator_type of this BaseTagDefinitionValidator. Specifies the type of validation: a static value (no validation) or a list.

Allowed values for this property are: “ENUM”, “DEFAULT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The validator_type of this BaseTagDefinitionValidator.
Return type:str
values

Gets the values of this EnumTagDefinitionValidator. The list of allowed values for a definedTag value.

Returns:The values of this EnumTagDefinitionValidator.
Return type:list[str]