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.
display_name
str
Display name helps to differentiate between object storages, especially if they are in the same region. If display name is not provided, it will be generated. Display name can be changed any time.
[optional]
Example
frompfruck_contabo.models.create_object_storage_requestimportCreateObjectStorageRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateObjectStorageRequest from a JSON stringcreate_object_storage_request_instance=CreateObjectStorageRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateObjectStorageRequest.to_json())
# convert the object into a dictcreate_object_storage_request_dict=create_object_storage_request_instance.to_dict()
# create an instance of CreateObjectStorageRequest from a dictcreate_object_storage_request_from_dict=CreateObjectStorageRequest.from_dict(create_object_storage_request_dict)