ExtensionAdaptiveUser¶
-
class
oci.identity_domains.models.
ExtensionAdaptiveUser
(**kwargs)¶ Bases:
object
This extension defines attributes to manage user’s risk score.
Attributes
RISK_LEVEL_HIGH
A constant which can be used with the risk_level property of a ExtensionAdaptiveUser. RISK_LEVEL_LOW
A constant which can be used with the risk_level property of a ExtensionAdaptiveUser. RISK_LEVEL_MEDIUM
A constant which can be used with the risk_level property of a ExtensionAdaptiveUser. risk_level
Gets the risk_level of this ExtensionAdaptiveUser. risk_scores
Gets the risk_scores of this ExtensionAdaptiveUser. Methods
__init__
(**kwargs)Initializes a new ExtensionAdaptiveUser object with values from keyword arguments. -
RISK_LEVEL_HIGH
= 'HIGH'¶ A constant which can be used with the risk_level property of a ExtensionAdaptiveUser. This constant has a value of “HIGH”
-
RISK_LEVEL_LOW
= 'LOW'¶ A constant which can be used with the risk_level property of a ExtensionAdaptiveUser. This constant has a value of “LOW”
-
RISK_LEVEL_MEDIUM
= 'MEDIUM'¶ A constant which can be used with the risk_level property of a ExtensionAdaptiveUser. This constant has a value of “MEDIUM”
-
__init__
(**kwargs)¶ Initializes a new ExtensionAdaptiveUser object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - risk_level (str) – The value to assign to the risk_level property of this ExtensionAdaptiveUser. Allowed values for this property are: “LOW”, “MEDIUM”, “HIGH”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- risk_scores (list[oci.identity_domains.models.UserExtRiskScores]) – The value to assign to the risk_scores property of this ExtensionAdaptiveUser.
-
risk_level
¶ Gets the risk_level of this ExtensionAdaptiveUser. Risk Level
Added In: 18.1.6
- SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: request
- type: string
- uniqueness: none
Allowed values for this property are: “LOW”, “MEDIUM”, “HIGH”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The risk_level of this ExtensionAdaptiveUser. Return type: str
-
risk_scores
¶ Gets the risk_scores of this ExtensionAdaptiveUser. The risk score pertaining to the user.
Added In: 18.1.6
- SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
Returns: The risk_scores of this ExtensionAdaptiveUser. Return type: list[oci.identity_domains.models.UserExtRiskScores]
-