PdbStatusDetails¶
-
class
oci.database_management.models.
PdbStatusDetails
(**kwargs)¶ Bases:
object
The number and status of PDBs in a Container Database.
Attributes
STATUS_DOWN
A constant which can be used with the status property of a PdbStatusDetails. STATUS_UNKNOWN
A constant which can be used with the status property of a PdbStatusDetails. STATUS_UP
A constant which can be used with the status property of a PdbStatusDetails. count
Gets the count of this PdbStatusDetails. status
Gets the status of this PdbStatusDetails. Methods
__init__
(**kwargs)Initializes a new PdbStatusDetails object with values from keyword arguments. -
STATUS_DOWN
= 'DOWN'¶ A constant which can be used with the status property of a PdbStatusDetails. This constant has a value of “DOWN”
-
STATUS_UNKNOWN
= 'UNKNOWN'¶ A constant which can be used with the status property of a PdbStatusDetails. This constant has a value of “UNKNOWN”
-
STATUS_UP
= 'UP'¶ A constant which can be used with the status property of a PdbStatusDetails. This constant has a value of “UP”
-
__init__
(**kwargs)¶ Initializes a new PdbStatusDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - status (str) – The value to assign to the status property of this PdbStatusDetails. Allowed values for this property are: “UP”, “DOWN”, “UNKNOWN”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- count (int) – The value to assign to the count property of this PdbStatusDetails.
-
count
¶ Gets the count of this PdbStatusDetails. The number of PDBs with this status.
Returns: The count of this PdbStatusDetails. Return type: int
-
status
¶ Gets the status of this PdbStatusDetails. The status of the PDBs with this count.
Allowed values for this property are: “UP”, “DOWN”, “UNKNOWN”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The status of this PdbStatusDetails. Return type: str
-