Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 904 Bytes

File metadata and controls

30 lines (21 loc) · 904 Bytes

ImageSpec

Reference to an OCI image or artifact with tag.

Properties

Name Type Description Notes
image str Reference to an OCI image or artifact with tag.

Example

from flightctl.models.image_spec import ImageSpec

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

# convert the object into a dict
image_spec_dict = image_spec_instance.to_dict()
# create an instance of ImageSpec from a dict
image_spec_from_dict = ImageSpec.from_dict(image_spec_dict)

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