HeatWaveNode¶
- 
class oci.database_management.models.HeatWaveNode(**kwargs)¶
- Bases: - object- The information about an individual HeatWave node. - Attributes - STATUS_DOWN- A constant which can be used with the status property of a HeatWaveNode. - STATUS_UNKNOWN- A constant which can be used with the status property of a HeatWaveNode. - STATUS_UP- A constant which can be used with the status property of a HeatWaveNode. - id- [Required] Gets the id of this HeatWaveNode. - status- [Required] Gets the status of this HeatWaveNode. - time_created- [Required] Gets the time_created of this HeatWaveNode. - Methods - __init__(**kwargs)- Initializes a new HeatWaveNode object with values from keyword arguments. - 
STATUS_DOWN= 'DOWN'¶
- A constant which can be used with the status property of a HeatWaveNode. This constant has a value of “DOWN” 
 - 
STATUS_UNKNOWN= 'UNKNOWN'¶
- A constant which can be used with the status property of a HeatWaveNode. This constant has a value of “UNKNOWN” 
 - 
STATUS_UP= 'UP'¶
- A constant which can be used with the status property of a HeatWaveNode. This constant has a value of “UP” 
 - 
__init__(**kwargs)¶
- Initializes a new HeatWaveNode object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - id (str) – The value to assign to the id property of this HeatWaveNode.
- status (str) – The value to assign to the status property of this HeatWaveNode. 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’.
- time_created (datetime) – The value to assign to the time_created property of this HeatWaveNode.
 
 - 
id¶
- [Required] Gets the id of this HeatWaveNode. The ID associated with the HeatWave node. - Returns: - The id of this HeatWaveNode. - Return type: - str 
 - 
status¶
- [Required] Gets the status of this HeatWaveNode. The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time. - 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 HeatWaveNode. - Return type: - str 
 - 
time_created¶
- [Required] Gets the time_created of this HeatWaveNode. The date and time the HeatWave node was created. - Returns: - The time_created of this HeatWaveNode. - Return type: - datetime 
 
-