Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.21 KB

File metadata and controls

34 lines (25 loc) · 1.21 KB

ImageCreate

Properties

Name Type Description Notes
name str Name of the image.
owner OwnerReference Owner of the image. [optional]
description str Description of the image. [optional] [default to '']
hardware_type HardwareType [optional]
supports List[str] Supported features. [optional]
access ImageAccessLevel [optional]

Example

from saturn_api.models.image_create import ImageCreate

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

# convert the object into a dict
image_create_dict = image_create_instance.to_dict()
# create an instance of ImageCreate from a dict
image_create_from_dict = ImageCreate.from_dict(image_create_dict)

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