Backup location.
| 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] |
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)