Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

BaseImageEntry

A curated base image entry available in an OCI registry.

Properties

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"]).

Example

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)

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