VolumeRequest
Properties
| Name |
Type |
Description |
Notes |
| nome |
str |
Nome do volume. |
|
| path |
str |
Caminho absoluto do volume dentro da estrutura de diretórios do sistema. |
|
| uuid_node |
UUID |
Identificador único do Node ao qual o volume está associado. |
|
Example
from pldpro_sdk.api_client.models.volume_request import VolumeRequest
# TODO update the JSON string below
json = "{}"
# create an instance of VolumeRequest from a JSON string
volume_request_instance = VolumeRequest.from_json(json)
# print the JSON string representation of the object
print(VolumeRequest.to_json())
# convert the object into a dict
volume_request_dict = volume_request_instance.to_dict()
# create an instance of VolumeRequest from a dict
volume_request_from_dict = VolumeRequest.from_dict(volume_request_dict)
[Back to Model list] [Back to API list] [Back to README]