Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

CreateBlockVolumeRequest

Properties

Name Type Description Notes
name str
cluster_id int
backend str
size_gb int [optional] [default to 100]

Example

from platform_api_python_client.models.create_block_volume_request import CreateBlockVolumeRequest

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

# convert the object into a dict
create_block_volume_request_dict = create_block_volume_request_instance.to_dict()
# create an instance of CreateBlockVolumeRequest from a dict
create_block_volume_request_from_dict = CreateBlockVolumeRequest.from_dict(create_block_volume_request_dict)

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