Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

BackupLocation

Backup location.

Properties

Name Type Description Notes
location str The Object Storage location where the backup will be created. The BackupLocations provides a list of supported locations. [optional]

Example

from ionoscloud_dbaas_postgres.models.backup_location import BackupLocation

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

# convert the object into a dict
backup_location_dict = backup_location_instance.to_dict()
# create an instance of BackupLocation from a dict
backup_location_from_dict = BackupLocation.from_dict(backup_location_dict)

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