Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

CreateRestoreRequest

The restore request.

Properties

Name Type Description Notes
backup_id str The unique ID of the backup you want to restore.
recovery_target_time datetime If this value is supplied as ISO 8601 timestamp, the backup will be replayed up until the given timestamp. If empty, the backup will be applied completely. [optional]

Example

from ionoscloud_dbaas_postgres.models.create_restore_request import CreateRestoreRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CreateRestoreRequest from a JSON string
create_restore_request_instance = CreateRestoreRequest.from_json(json)
# print the JSON string representation of the object
print(CreateRestoreRequest.to_json())

# convert the object into a dict
create_restore_request_dict = create_restore_request_instance.to_dict()
# create an instance of CreateRestoreRequest from a dict
create_restore_request_from_dict = CreateRestoreRequest.from_dict(create_restore_request_dict)

[Back to Model list] [Back to API list] [Back to README]