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
Amount of purchased / requested object storage in TB.
used_space_tb
float
Currently used space in TB.
used_space_percentage
float
Currently used space in percentage.
s3_url
str
S3 URL to connect to your S3 compatible object storage
s3_tenant_id
str
Your S3 tenantId. Only required for public sharing.
status
str
The object storage status
region
str
The region where your object storage is located
display_name
str
Display name for object storage.
Example
frompfruck_contabo.models.create_object_storage_response_dataimportCreateObjectStorageResponseData# TODO update the JSON string belowjson="{}"# create an instance of CreateObjectStorageResponseData from a JSON stringcreate_object_storage_response_data_instance=CreateObjectStorageResponseData.from_json(json)
# print the JSON string representation of the objectprint(CreateObjectStorageResponseData.to_json())
# convert the object into a dictcreate_object_storage_response_data_dict=create_object_storage_response_data_instance.to_dict()
# create an instance of CreateObjectStorageResponseData from a dictcreate_object_storage_response_data_from_dict=CreateObjectStorageResponseData.from_dict(create_object_storage_response_data_dict)