Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.11 KB

CreateObjectStorageResponseData.md

File metadata and controls

43 lines (34 loc) · 2.11 KB

CreateObjectStorageResponseData

Properties

Name Type Description Notes
tenant_id str Your customer tenant id
customer_id str Your customer number
object_storage_id str Your object storage id
created_date datetime Creation date for object storage.
cancel_date date Cancellation date for object storage.
auto_scaling AutoScalingTypeResponse Autoscaling settings
data_center str The data center of the storage
total_purchased_space_tb float 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

from pfruck_contabo.models.create_object_storage_response_data import CreateObjectStorageResponseData

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

# convert the object into a dict
create_object_storage_response_data_dict = create_object_storage_response_data_instance.to_dict()
# create an instance of CreateObjectStorageResponseData from a dict
create_object_storage_response_data_from_dict = CreateObjectStorageResponseData.from_dict(create_object_storage_response_data_dict)

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