SystemPrivilegeSummary¶
-
class
oci.database_management.models.
SystemPrivilegeSummary
(**kwargs)¶ Bases:
object
A Summary of system privileges.
Attributes
ADMIN_OPTION_NO
A constant which can be used with the admin_option property of a SystemPrivilegeSummary. ADMIN_OPTION_YES
A constant which can be used with the admin_option property of a SystemPrivilegeSummary. COMMON_NO
A constant which can be used with the common property of a SystemPrivilegeSummary. COMMON_YES
A constant which can be used with the common property of a SystemPrivilegeSummary. INHERITED_NO
A constant which can be used with the inherited property of a SystemPrivilegeSummary. INHERITED_YES
A constant which can be used with the inherited property of a SystemPrivilegeSummary. admin_option
Gets the admin_option of this SystemPrivilegeSummary. common
Gets the common of this SystemPrivilegeSummary. inherited
Gets the inherited of this SystemPrivilegeSummary. name
Gets the name of this SystemPrivilegeSummary. Methods
__init__
(**kwargs)Initializes a new SystemPrivilegeSummary object with values from keyword arguments. -
ADMIN_OPTION_NO
= 'NO'¶ A constant which can be used with the admin_option property of a SystemPrivilegeSummary. This constant has a value of “NO”
-
ADMIN_OPTION_YES
= 'YES'¶ A constant which can be used with the admin_option property of a SystemPrivilegeSummary. This constant has a value of “YES”
-
COMMON_NO
= 'NO'¶ A constant which can be used with the common property of a SystemPrivilegeSummary. This constant has a value of “NO”
-
COMMON_YES
= 'YES'¶ A constant which can be used with the common property of a SystemPrivilegeSummary. This constant has a value of “YES”
-
INHERITED_NO
= 'NO'¶ A constant which can be used with the inherited property of a SystemPrivilegeSummary. This constant has a value of “NO”
-
INHERITED_YES
= 'YES'¶ A constant which can be used with the inherited property of a SystemPrivilegeSummary. This constant has a value of “YES”
-
__init__
(**kwargs)¶ Initializes a new SystemPrivilegeSummary 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 SystemPrivilegeSummary.
- admin_option (str) – The value to assign to the admin_option property of this SystemPrivilegeSummary. 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’.
- common (str) – The value to assign to the common property of this SystemPrivilegeSummary. 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’.
- inherited (str) – The value to assign to the inherited property of this SystemPrivilegeSummary. 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’.
-
admin_option
¶ Gets the admin_option of this SystemPrivilegeSummary. Indicates whether the system privilege is granted with the ADMIN option (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 admin_option of this SystemPrivilegeSummary. Return type: str
-
common
¶ Gets the common of this SystemPrivilegeSummary. Indicates how the system privilege was granted. Possible values: YES if the system privilege is granted commonly (CONTAINER=ALL is used) NO if the system privilege is granted locally (CONTAINER=ALL is not used)
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 common of this SystemPrivilegeSummary. Return type: str
-
inherited
¶ Gets the inherited of this SystemPrivilegeSummary. Indicates whether the granted system privilege is inherited from another container (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 inherited of this SystemPrivilegeSummary. Return type: str
-
name
¶ Gets the name of this SystemPrivilegeSummary. The name of a system privilege.
Returns: The name of this SystemPrivilegeSummary. Return type: str
-