ValidationExternalAuthenticationStatus¶
-
class
oci.database_tools_runtime.models.ValidationExternalAuthenticationStatus(**kwargs)¶ Bases:
objectStatus details for an external authentication
Attributes
STATUS_AVAILABLEA constant which can be used with the status property of a ValidationExternalAuthenticationStatus. STATUS_ENABLEDA constant which can be used with the status property of a ValidationExternalAuthenticationStatus. STATUS_UNAVAILABLEA constant which can be used with the status property of a ValidationExternalAuthenticationStatus. STATUS_UNKNOWNA constant which can be used with the status property of a ValidationExternalAuthenticationStatus. TYPE_AZURE_ADA constant which can be used with the type property of a ValidationExternalAuthenticationStatus. TYPE_NONEA constant which can be used with the type property of a ValidationExternalAuthenticationStatus. TYPE_OCI_IAMA constant which can be used with the type property of a ValidationExternalAuthenticationStatus. statusGets the status of this ValidationExternalAuthenticationStatus. status_detailsGets the status_details of this ValidationExternalAuthenticationStatus. typeGets the type of this ValidationExternalAuthenticationStatus. Methods
__init__(**kwargs)Initializes a new ValidationExternalAuthenticationStatus object with values from keyword arguments. -
STATUS_AVAILABLE= 'AVAILABLE'¶ A constant which can be used with the status property of a ValidationExternalAuthenticationStatus. This constant has a value of “AVAILABLE”
-
STATUS_ENABLED= 'ENABLED'¶ A constant which can be used with the status property of a ValidationExternalAuthenticationStatus. This constant has a value of “ENABLED”
-
STATUS_UNAVAILABLE= 'UNAVAILABLE'¶ A constant which can be used with the status property of a ValidationExternalAuthenticationStatus. This constant has a value of “UNAVAILABLE”
-
STATUS_UNKNOWN= 'UNKNOWN'¶ A constant which can be used with the status property of a ValidationExternalAuthenticationStatus. This constant has a value of “UNKNOWN”
-
TYPE_AZURE_AD= 'AZURE_AD'¶ A constant which can be used with the type property of a ValidationExternalAuthenticationStatus. This constant has a value of “AZURE_AD”
-
TYPE_NONE= 'NONE'¶ A constant which can be used with the type property of a ValidationExternalAuthenticationStatus. This constant has a value of “NONE”
-
TYPE_OCI_IAM= 'OCI_IAM'¶ A constant which can be used with the type property of a ValidationExternalAuthenticationStatus. This constant has a value of “OCI_IAM”
-
__init__(**kwargs)¶ Initializes a new ValidationExternalAuthenticationStatus object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - type (str) – The value to assign to the type property of this ValidationExternalAuthenticationStatus. Allowed values for this property are: “OCI_IAM”, “AZURE_AD”, “NONE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- status (str) – The value to assign to the status property of this ValidationExternalAuthenticationStatus. Allowed values for this property are: “AVAILABLE”, “UNAVAILABLE”, “ENABLED”, “UNKNOWN”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- status_details (str) – The value to assign to the status_details property of this ValidationExternalAuthenticationStatus.
-
status¶ Gets the status of this ValidationExternalAuthenticationStatus. The status of the external authentication. AVAILABLE if the external authentication can be used with this connection. UNAVAILABLE if not. ENABLED if the external authentication is enabled.
Allowed values for this property are: “AVAILABLE”, “UNAVAILABLE”, “ENABLED”, “UNKNOWN”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The status of this ValidationExternalAuthenticationStatus. Return type: str
-
status_details¶ Gets the status_details of this ValidationExternalAuthenticationStatus. If the status is UNAVAILABLE this displays the cause.
Returns: The status_details of this ValidationExternalAuthenticationStatus. Return type: str
-
type¶ Gets the type of this ValidationExternalAuthenticationStatus. The Database Tools identity provider type.
Allowed values for this property are: “OCI_IAM”, “AZURE_AD”, “NONE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this ValidationExternalAuthenticationStatus. Return type: str
-