CreateDbSystemSourceFromPitrDetails¶
-
class
oci.mysql.models.
CreateDbSystemSourceFromPitrDetails
(**kwargs)¶ Bases:
oci.mysql.models.create_db_system_source_details.CreateDbSystemSourceDetails
DB System OCID to perform a point in time recovery to the current point in time.
DB System OCID and recovery point to perform a point in time recovery to the specified recovery point.
Attributes
SOURCE_TYPE_BACKUP
str(object=’’) -> str SOURCE_TYPE_IMPORTURL
str(object=’’) -> str SOURCE_TYPE_NONE
str(object=’’) -> str SOURCE_TYPE_PITR
str(object=’’) -> str db_system_id
[Required] Gets the db_system_id of this CreateDbSystemSourceFromPitrDetails. recovery_point
Gets the recovery_point of this CreateDbSystemSourceFromPitrDetails. source_type
[Required] Gets the source_type of this CreateDbSystemSourceDetails. Methods
__init__
(**kwargs)Initializes a new CreateDbSystemSourceFromPitrDetails object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
SOURCE_TYPE_BACKUP
= 'BACKUP'¶
-
SOURCE_TYPE_IMPORTURL
= 'IMPORTURL'¶
-
SOURCE_TYPE_NONE
= 'NONE'¶
-
SOURCE_TYPE_PITR
= 'PITR'¶
-
__init__
(**kwargs)¶ Initializes a new CreateDbSystemSourceFromPitrDetails object with values from keyword arguments. The default value of the
source_type
attribute of this class isPITR
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - source_type (str) – The value to assign to the source_type property of this CreateDbSystemSourceFromPitrDetails. Allowed values for this property are: “NONE”, “BACKUP”, “PITR”, “IMPORTURL”
- db_system_id (str) – The value to assign to the db_system_id property of this CreateDbSystemSourceFromPitrDetails.
- recovery_point (datetime) – The value to assign to the recovery_point property of this CreateDbSystemSourceFromPitrDetails.
-
db_system_id
¶ [Required] Gets the db_system_id of this CreateDbSystemSourceFromPitrDetails. The OCID of the DB System from which a backup shall be selected to be restored when creating the new DB System. Use this together with recovery point to perform a point in time recovery operation.
Returns: The db_system_id of this CreateDbSystemSourceFromPitrDetails. Return type: str
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
recovery_point
¶ Gets the recovery_point of this CreateDbSystemSourceFromPitrDetails. The date and time, as per RFC 3339, of the change up to which the new DB System shall be restored to, using a backup and logs from the original DB System. In case no point in time is specified, then this new DB System shall be restored up to the latest change recorded for the original DB System.
Returns: The recovery_point of this CreateDbSystemSourceFromPitrDetails. Return type: datetime
-
source_type
¶ [Required] Gets the source_type of this CreateDbSystemSourceDetails. The specific source identifier.
Allowed values for this property are: “NONE”, “BACKUP”, “PITR”, “IMPORTURL”
Returns: The source_type of this CreateDbSystemSourceDetails. Return type: str
-