MeRoles¶
-
class
oci.identity_domains.models.
MeRoles
(**kwargs)¶ Bases:
object
A list of roles for the User that collectively represent who the User is; e.g., ‘Student’, ‘Faculty’.
Methods
__init__
(**kwargs)Initializes a new MeRoles object with values from keyword arguments. Attributes
display
Gets the display of this MeRoles. primary
Gets the primary of this MeRoles. type
[Required] Gets the type of this MeRoles. value
[Required] Gets the value of this MeRoles. -
__init__
(**kwargs)¶ Initializes a new MeRoles 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 MeRoles.
- display (str) – The value to assign to the display property of this MeRoles.
- type (str) – The value to assign to the type property of this MeRoles.
- primary (bool) – The value to assign to the primary property of this MeRoles.
-
display
¶ Gets the display of this MeRoles. A human readable name, primarily used for display purposes.
- SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
Returns: The display of this MeRoles. Return type: str
-
primary
¶ Gets the primary of this MeRoles. A Boolean value indicating the ‘primary’ or preferred attribute value for this attribute. The primary attribute value ‘true’ MUST appear no more than once.
- SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
Returns: The primary of this MeRoles. Return type: bool
-
type
¶ [Required] Gets the type of this MeRoles. A label indicating the attribute’s function.
- SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Returns: The type of this MeRoles. Return type: str
-
value
¶ [Required] Gets the value of this MeRoles. The value of a role.
- SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Returns: The value of this MeRoles. Return type: str
-