UserEntitlements¶
-
class
oci.identity_domains.models.
UserEntitlements
(**kwargs)¶ Bases:
object
A list of entitlements for the User that represent a thing the User has.
Methods
__init__
(**kwargs)Initializes a new UserEntitlements object with values from keyword arguments. Attributes
display
Gets the display of this UserEntitlements. primary
Gets the primary of this UserEntitlements. type
[Required] Gets the type of this UserEntitlements. value
[Required] Gets the value of this UserEntitlements. -
__init__
(**kwargs)¶ Initializes a new UserEntitlements 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 UserEntitlements.
- display (str) – The value to assign to the display property of this UserEntitlements.
- type (str) – The value to assign to the type property of this UserEntitlements.
- primary (bool) – The value to assign to the primary property of this UserEntitlements.
-
display
¶ Gets the display of this UserEntitlements. 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 UserEntitlements. Return type: str
-
primary
¶ Gets the primary of this UserEntitlements. 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 UserEntitlements. Return type: bool
-
type
¶ [Required] Gets the type of this UserEntitlements. 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 UserEntitlements. Return type: str
-
value
¶ [Required] Gets the value of this UserEntitlements. The value of an entitlement.
- SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Returns: The value of this UserEntitlements. Return type: str
-