RuleConditionGroup¶
-
class
oci.identity_domains.models.
RuleConditionGroup
(**kwargs)¶ Bases:
object
Condition or ConditionGroup assigned to the rule
SCIM++ Properties: - idcsSearchable: true - multiValued: false - mutability: readWrite - required: false - returned: default - type: complex - uniqueness: none
Attributes
TYPE_CONDITION
A constant which can be used with the type property of a RuleConditionGroup. TYPE_CONDITION_GROUP
A constant which can be used with the type property of a RuleConditionGroup. name
Gets the name of this RuleConditionGroup. ref
Gets the ref of this RuleConditionGroup. type
[Required] Gets the type of this RuleConditionGroup. value
Gets the value of this RuleConditionGroup. Methods
__init__
(**kwargs)Initializes a new RuleConditionGroup object with values from keyword arguments. -
TYPE_CONDITION
= 'Condition'¶ A constant which can be used with the type property of a RuleConditionGroup. This constant has a value of “Condition”
-
TYPE_CONDITION_GROUP
= 'ConditionGroup'¶ A constant which can be used with the type property of a RuleConditionGroup. This constant has a value of “ConditionGroup”
-
__init__
(**kwargs)¶ Initializes a new RuleConditionGroup object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - value (str) – The value to assign to the value property of this RuleConditionGroup.
- ref (str) – The value to assign to the ref property of this RuleConditionGroup.
- type (str) – The value to assign to the type property of this RuleConditionGroup. Allowed values for this property are: “Condition”, “ConditionGroup”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- name (str) – The value to assign to the name property of this RuleConditionGroup.
-
name
¶ Gets the name of this RuleConditionGroup. Condition or ConditionGroup name
Added In: 17.4.2
- SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
Returns: The name of this RuleConditionGroup. Return type: str
-
ref
¶ Gets the ref of this RuleConditionGroup. ConditionGroup URI
- SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
Returns: The ref of this RuleConditionGroup. Return type: str
-
type
¶ [Required] Gets the type of this RuleConditionGroup. A label that indicates whether this is Condition or ConditionGroup.
- SCIM++ Properties:
- idcsDefaultValue: Condition
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Allowed values for this property are: “Condition”, “ConditionGroup”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this RuleConditionGroup. Return type: str
-
value
¶ Gets the value of this RuleConditionGroup. Condition or ConditionGroup identifier
- SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
Returns: The value of this RuleConditionGroup. Return type: str
-