StopDbSystemDetails¶
-
class
oci.mysql.models.
StopDbSystemDetails
(**kwargs)¶ Bases:
object
DB System shutdown parameters.
Attributes
SHUTDOWN_TYPE_FAST
A constant which can be used with the shutdown_type property of a StopDbSystemDetails. SHUTDOWN_TYPE_IMMEDIATE
A constant which can be used with the shutdown_type property of a StopDbSystemDetails. SHUTDOWN_TYPE_SLOW
A constant which can be used with the shutdown_type property of a StopDbSystemDetails. shutdown_type
[Required] Gets the shutdown_type of this StopDbSystemDetails. Methods
__init__
(**kwargs)Initializes a new StopDbSystemDetails object with values from keyword arguments. -
SHUTDOWN_TYPE_FAST
= 'FAST'¶ A constant which can be used with the shutdown_type property of a StopDbSystemDetails. This constant has a value of “FAST”
-
SHUTDOWN_TYPE_IMMEDIATE
= 'IMMEDIATE'¶ A constant which can be used with the shutdown_type property of a StopDbSystemDetails. This constant has a value of “IMMEDIATE”
-
SHUTDOWN_TYPE_SLOW
= 'SLOW'¶ A constant which can be used with the shutdown_type property of a StopDbSystemDetails. This constant has a value of “SLOW”
-
__init__
(**kwargs)¶ Initializes a new StopDbSystemDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: shutdown_type (str) – The value to assign to the shutdown_type property of this StopDbSystemDetails. Allowed values for this property are: “IMMEDIATE”, “FAST”, “SLOW”
-
shutdown_type
¶ [Required] Gets the shutdown_type of this StopDbSystemDetails. The InnoDB shutdown mode to use, following the option “innodb_fast_shutdown”.
Allowed values for this property are: “IMMEDIATE”, “FAST”, “SLOW”
Returns: The shutdown_type of this StopDbSystemDetails. Return type: str
-