A curated base image entry available in an OCI registry.
| Name | Type | Description | Notes |
|---|---|---|---|
| display_name | str | Human-readable label shown in the UI (e.g., "CentOS"). | [optional] |
| image_name | str | Image path within the registry (e.g., "centos-bootc/centos-bootc"). | |
| tags | List[str] | Selectable tags for this image (e.g., ["stream9", "stream10"]). |
from flightctl.models.base_image_entry import BaseImageEntry
# TODO update the JSON string below
json = "{}"
# create an instance of BaseImageEntry from a JSON string
base_image_entry_instance = BaseImageEntry.from_json(json)
# print the JSON string representation of the object
print(BaseImageEntry.to_json())
# convert the object into a dict
base_image_entry_dict = base_image_entry_instance.to_dict()
# create an instance of BaseImageEntry from a dict
base_image_entry_from_dict = BaseImageEntry.from_dict(base_image_entry_dict)