Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1019 Bytes

File metadata and controls

31 lines (23 loc) · 1019 Bytes

VdsImage

Образ сервера.

Properties

Name Type Description Notes
id object ID образа сервера.
name object Название образа сервера.
is_custom object Является ли образ кастомным.

Example

from timeweb_cloud_api.models.vds_image import VdsImage

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

# convert the object into a dict
vds_image_dict = vds_image_instance.to_dict()
# create an instance of VdsImage from a dict
vds_image_form_dict = vds_image.from_dict(vds_image_dict)

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