| Name |
Type |
Description |
Notes |
| cluster_id |
str |
The unique identifier of the cluster this backup belongs to. |
[optional] |
| postgres_cluster_version |
str |
The PostgreSQL version of the cluster at backup time. |
[optional] |
| is_active |
bool |
Whether this is the currently active backup for the cluster. |
[optional] |
| earliest_recovery_target_time |
datetime |
The earliest point in time to which the cluster can be restored from this backup. |
[optional] |
| latest_recovery_target_time |
datetime |
The latest possible point in time to which the cluster can be restored. If the backup can be restored up to the current time, this field will be null. |
[optional] |
| location |
str |
The Object Storage location where the backup will be created. The BackupLocations provides a list of supported locations. |
[optional] |
from ionoscloud_dbaas_postgres.models.backup import Backup
# TODO update the JSON string below
json = "{}"
# create an instance of Backup from a JSON string
backup_instance = Backup.from_json(json)
# print the JSON string representation of the object
print(Backup.to_json())
# convert the object into a dict
backup_dict = backup_instance.to_dict()
# create an instance of Backup from a dict
backup_from_dict = Backup.from_dict(backup_dict)
[Back to Model list] [Back to API list] [Back to README]