Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.43 KB

File metadata and controls

33 lines (25 loc) · 1.43 KB

CreateStorageRequest

Properties

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]

Example

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)

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