Reference to an OCI image or artifact with tag.
| Name | Type | Description | Notes |
|---|---|---|---|
| image | str | Reference to an OCI image or artifact with tag. |
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)