PointInTimeDbSystemSourceDetails¶
-
class
oci.psql.models.PointInTimeDbSystemSourceDetails(**kwargs)¶ Bases:
oci.psql.models.source_details.SourceDetailsDetails of database system point-in-time recovery.
Attributes
SOURCE_TYPE_BACKUPstr(object=’’) -> str SOURCE_TYPE_DB_SYSTEMstr(object=’’) -> str SOURCE_TYPE_NONEstr(object=’’) -> str SOURCE_TYPE_POINT_IN_TIME_DB_SYSTEMstr(object=’’) -> str db_system_id[Required] Gets the db_system_id of this PointInTimeDbSystemSourceDetails. source_type[Required] Gets the source_type of this SourceDetails. time_to_restore[Required] Gets the time_to_restore of this PointInTimeDbSystemSourceDetails. Methods
__init__(**kwargs)Initializes a new PointInTimeDbSystemSourceDetails 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_DB_SYSTEM= 'DB_SYSTEM'¶
-
SOURCE_TYPE_NONE= 'NONE'¶
-
SOURCE_TYPE_POINT_IN_TIME_DB_SYSTEM= 'POINT_IN_TIME_DB_SYSTEM'¶
-
__init__(**kwargs)¶ Initializes a new PointInTimeDbSystemSourceDetails object with values from keyword arguments. The default value of the
source_typeattribute of this class isPOINT_IN_TIME_DB_SYSTEMand 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 PointInTimeDbSystemSourceDetails. Allowed values for this property are: “BACKUP”, “NONE”, “POINT_IN_TIME_DB_SYSTEM”, “DB_SYSTEM”
- db_system_id (str) – The value to assign to the db_system_id property of this PointInTimeDbSystemSourceDetails.
- time_to_restore (datetime) – The value to assign to the time_to_restore property of this PointInTimeDbSystemSourceDetails.
-
db_system_id¶ [Required] Gets the db_system_id of this PointInTimeDbSystemSourceDetails. The OCID of the source database system which will be used to perform point-in-time recovery.
Returns: The db_system_id of this PointInTimeDbSystemSourceDetails. 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.
-
source_type¶ [Required] Gets the source_type of this SourceDetails. The source descriminator.
Allowed values for this property are: “BACKUP”, “NONE”, “POINT_IN_TIME_DB_SYSTEM”, “DB_SYSTEM”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The source_type of this SourceDetails. Return type: str
-
time_to_restore¶ [Required] Gets the time_to_restore of this PointInTimeDbSystemSourceDetails. The target point-in-time of the source database system that will be restored, expressed in RFC 3339 timestamp format.
Point-in-time recovery can only performed in granularity of seconds. Example: 2016-08-25T21:10:29Z
Returns: The time_to_restore of this PointInTimeDbSystemSourceDetails. Return type: datetime
-