You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
S3 URL to connect to your S3 compatible object storage
status
str
The object storage status
total_purchased_space_tb
float
Total purchased object storage space in TB.
region
str
The region where your object storage is located
display_name
str
Display name for object storage.
Example
frompfruck_contabo.models.upgrade_object_storage_response_dataimportUpgradeObjectStorageResponseData# TODO update the JSON string belowjson="{}"# create an instance of UpgradeObjectStorageResponseData from a JSON stringupgrade_object_storage_response_data_instance=UpgradeObjectStorageResponseData.from_json(json)
# print the JSON string representation of the objectprint(UpgradeObjectStorageResponseData.to_json())
# convert the object into a dictupgrade_object_storage_response_data_dict=upgrade_object_storage_response_data_instance.to_dict()
# create an instance of UpgradeObjectStorageResponseData from a dictupgrade_object_storage_response_data_from_dict=UpgradeObjectStorageResponseData.from_dict(upgrade_object_storage_response_data_dict)