Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.38 KB

File metadata and controls

30 lines (21 loc) · 1.38 KB

CheckRepositoryOciImageRequest

Request to check if a specific OCI image is accessible in a registry.

Properties

Name Type Description Notes
image_name str The image name/path within the registry (e.g. "centos-bootc/centos-bootc"). Combined with the registry host from the Repository resource, this forms the full image reference (e.g. "quay.io/centos-bootc/centos-bootc").

Example

from flightctl.models.check_repository_oci_image_request import CheckRepositoryOciImageRequest

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

# convert the object into a dict
check_repository_oci_image_request_dict = check_repository_oci_image_request_instance.to_dict()
# create an instance of CheckRepositoryOciImageRequest from a dict
check_repository_oci_image_request_from_dict = CheckRepositoryOciImageRequest.from_dict(check_repository_oci_image_request_dict)

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