Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.5 KB

CreateCustomImageRequest.md

File metadata and controls

33 lines (24 loc) · 1.5 KB

CreateCustomImageRequest

Properties

Name Type Description Notes
name str Image Name
description str Image Description [optional]
url str URL from where the image has been downloaded / provided.
os_type str Provided type of operating system (OS). Please specify `Windows` for MS Windows and `Linux` for other OS. Specifying wrong OS type may lead to disfunctional cloud instance.
version str Version number to distinguish the contents of an image. Could be the version of the operating system for example.

Example

from pfruck_contabo.models.create_custom_image_request import CreateCustomImageRequest

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

# convert the object into a dict
create_custom_image_request_dict = create_custom_image_request_instance.to_dict()
# create an instance of CreateCustomImageRequest from a dict
create_custom_image_request_from_dict = CreateCustomImageRequest.from_dict(create_custom_image_request_dict)

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