This option is only valid for cluster modifications, and is not valid for cluster creation. When modifying an existing cluster, this field configures an in-place restore using the cluster's existing backups, with the restore source inferred automatically. The current data is overwritten with the restored data, and the cluster may experience a brief period of downtime during this process.
| Name | Type | Description | Notes |
|---|---|---|---|
| recovery_target_datetime | datetime | Providing this value as an ISO 8601 timestamp causes the system to restore the cluster up to the specified time. |
from ionoscloud_dbaas_postgres.models.postgres_in_place_restore_cluster_from_backup import PostgresInPlaceRestoreClusterFromBackup
# TODO update the JSON string below
json = "{}"
# create an instance of PostgresInPlaceRestoreClusterFromBackup from a JSON string
postgres_in_place_restore_cluster_from_backup_instance = PostgresInPlaceRestoreClusterFromBackup.from_json(json)
# print the JSON string representation of the object
print(PostgresInPlaceRestoreClusterFromBackup.to_json())
# convert the object into a dict
postgres_in_place_restore_cluster_from_backup_dict = postgres_in_place_restore_cluster_from_backup_instance.to_dict()
# create an instance of PostgresInPlaceRestoreClusterFromBackup from a dict
postgres_in_place_restore_cluster_from_backup_from_dict = PostgresInPlaceRestoreClusterFromBackup.from_dict(postgres_in_place_restore_cluster_from_backup_dict)