ProxyUserSummary¶
-
class
oci.database_management.models.
ProxyUserSummary
(**kwargs)¶ Bases:
object
A summary of the proxy user.
Attributes
AUTHENTICATION_NO
A constant which can be used with the authentication property of a ProxyUserSummary. AUTHENTICATION_YES
A constant which can be used with the authentication property of a ProxyUserSummary. FLAGS_NO_CLIENT_ROLES_MAY_BE_ACTIVATED
A constant which can be used with the flags property of a ProxyUserSummary. FLAGS_PROXY_MAY_ACTIVATE_ALL_CLIENT_ROLES
A constant which can be used with the flags property of a ProxyUserSummary. FLAGS_PROXY_MAY_ACTIVATE_ROLE
A constant which can be used with the flags property of a ProxyUserSummary. FLAGS_PROXY_MAY_NOT_ACTIVATE_ROLE
A constant which can be used with the flags property of a ProxyUserSummary. authentication
Gets the authentication of this ProxyUserSummary. flags
Gets the flags of this ProxyUserSummary. name
Gets the name of this ProxyUserSummary. Methods
__init__
(**kwargs)Initializes a new ProxyUserSummary object with values from keyword arguments. -
AUTHENTICATION_NO
= 'NO'¶ A constant which can be used with the authentication property of a ProxyUserSummary. This constant has a value of “NO”
-
AUTHENTICATION_YES
= 'YES'¶ A constant which can be used with the authentication property of a ProxyUserSummary. This constant has a value of “YES”
-
FLAGS_NO_CLIENT_ROLES_MAY_BE_ACTIVATED
= 'NO_CLIENT_ROLES_MAY_BE_ACTIVATED'¶ A constant which can be used with the flags property of a ProxyUserSummary. This constant has a value of “NO_CLIENT_ROLES_MAY_BE_ACTIVATED”
-
FLAGS_PROXY_MAY_ACTIVATE_ALL_CLIENT_ROLES
= 'PROXY_MAY_ACTIVATE_ALL_CLIENT_ROLES'¶ A constant which can be used with the flags property of a ProxyUserSummary. This constant has a value of “PROXY_MAY_ACTIVATE_ALL_CLIENT_ROLES”
-
FLAGS_PROXY_MAY_ACTIVATE_ROLE
= 'PROXY_MAY_ACTIVATE_ROLE'¶ A constant which can be used with the flags property of a ProxyUserSummary. This constant has a value of “PROXY_MAY_ACTIVATE_ROLE”
-
FLAGS_PROXY_MAY_NOT_ACTIVATE_ROLE
= 'PROXY_MAY_NOT_ACTIVATE_ROLE'¶ A constant which can be used with the flags property of a ProxyUserSummary. This constant has a value of “PROXY_MAY_NOT_ACTIVATE_ROLE”
-
__init__
(**kwargs)¶ Initializes a new ProxyUserSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this ProxyUserSummary.
- authentication (str) – The value to assign to the authentication property of this ProxyUserSummary. Allowed values for this property are: “YES”, “NO”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- flags (str) – The value to assign to the flags property of this ProxyUserSummary. Allowed values for this property are: “PROXY_MAY_ACTIVATE_ALL_CLIENT_ROLES”, “NO_CLIENT_ROLES_MAY_BE_ACTIVATED”, “PROXY_MAY_ACTIVATE_ROLE”, “PROXY_MAY_NOT_ACTIVATE_ROLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
authentication
¶ Gets the authentication of this ProxyUserSummary. Indicates whether the proxy is required to supply the client credentials (YES) or not (NO).
Allowed values for this property are: “YES”, “NO”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The authentication of this ProxyUserSummary. Return type: str
-
flags
¶ Gets the flags of this ProxyUserSummary. The flags associated with the proxy/client pair.
Allowed values for this property are: “PROXY_MAY_ACTIVATE_ALL_CLIENT_ROLES”, “NO_CLIENT_ROLES_MAY_BE_ACTIVATED”, “PROXY_MAY_ACTIVATE_ROLE”, “PROXY_MAY_NOT_ACTIVATE_ROLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The flags of this ProxyUserSummary. Return type: str
-
name
¶ Gets the name of this ProxyUserSummary. The name of a proxy user or the name of the client user.
Returns: The name of this ProxyUserSummary. Return type: str
-