WindowTypeDescription¶
-
class
oci.database.models.WindowTypeDescription(**kwargs)¶ Bases:
objectA key-value pair where the key will hold the window type and value will be a list of window details from all the active execution windows of that window type.
Attributes
WINDOW_TYPE_PLANNEDA constant which can be used with the window_type property of a WindowTypeDescription. WINDOW_TYPE_UNPLANNEDA constant which can be used with the window_type property of a WindowTypeDescription. messagesGets the messages of this WindowTypeDescription. window_typeGets the window_type of this WindowTypeDescription. Methods
__init__(**kwargs)Initializes a new WindowTypeDescription object with values from keyword arguments. -
WINDOW_TYPE_PLANNED= 'PLANNED'¶ A constant which can be used with the window_type property of a WindowTypeDescription. This constant has a value of “PLANNED”
-
WINDOW_TYPE_UNPLANNED= 'UNPLANNED'¶ A constant which can be used with the window_type property of a WindowTypeDescription. This constant has a value of “UNPLANNED”
-
__init__(**kwargs)¶ Initializes a new WindowTypeDescription object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - window_type (str) – The value to assign to the window_type property of this WindowTypeDescription. Allowed values for this property are: “PLANNED”, “UNPLANNED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- messages (list[str]) – The value to assign to the messages property of this WindowTypeDescription.
-
messages¶ Gets the messages of this WindowTypeDescription. A list of window detail messages from all the active execution windows based on the window type.
Returns: The messages of this WindowTypeDescription. Return type: list[str]
-
window_type¶ Gets the window_type of this WindowTypeDescription. The execution window is of PLANNED or UNPLANNED type.
Allowed values for this property are: “PLANNED”, “UNPLANNED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The window_type of this WindowTypeDescription. Return type: str
-