| Name | Type | Description | Notes |
|---|---|---|---|
| name | object | Название хранилища. | |
| description | object | Комментарий к хранилищу. | [optional] |
| type | object | Тип хранилища. | |
| preset_id | object | ID тарифа. Нельзя передавать вместе с `configurator`. | [optional] |
| configurator | CreateStorageRequestConfigurator | [optional] | |
| project_id | object | ID проекта. | [optional] |
from timeweb_cloud_api.models.create_storage_request import CreateStorageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateStorageRequest from a JSON string
create_storage_request_instance = CreateStorageRequest.from_json(json)
# print the JSON string representation of the object
print CreateStorageRequest.to_json()
# convert the object into a dict
create_storage_request_dict = create_storage_request_instance.to_dict()
# create an instance of CreateStorageRequest from a dict
create_storage_request_form_dict = create_storage_request.from_dict(create_storage_request_dict)