UserRoles¶
-
class
oci.identity_domains.models.
UserRoles
(**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 UserRoles object with values from keyword arguments. Attributes
display
Gets the display of this UserRoles. primary
Gets the primary of this UserRoles. type
[Required] Gets the type of this UserRoles. value
[Required] Gets the value of this UserRoles. -
__init__
(**kwargs)¶ Initializes a new UserRoles 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 UserRoles.
- display (str) – The value to assign to the display property of this UserRoles.
- type (str) – The value to assign to the type property of this UserRoles.
- primary (bool) – The value to assign to the primary property of this UserRoles.
-
display
¶ Gets the display of this UserRoles. 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 UserRoles. Return type: str
-
primary
¶ Gets the primary of this UserRoles. 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 UserRoles. Return type: bool
-
type
¶ [Required] Gets the type of this UserRoles. 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 UserRoles. Return type: str
-
value
¶ [Required] Gets the value of this UserRoles. 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 UserRoles. Return type: str
-