You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reference to the OCI image or artifact for the application package.
Example
fromflightctl.models.image_application_provider_specimportImageApplicationProviderSpec# TODO update the JSON string belowjson="{}"# create an instance of ImageApplicationProviderSpec from a JSON stringimage_application_provider_spec_instance=ImageApplicationProviderSpec.from_json(json)
# print the JSON string representation of the objectprint(ImageApplicationProviderSpec.to_json())
# convert the object into a dictimage_application_provider_spec_dict=image_application_provider_spec_instance.to_dict()
# create an instance of ImageApplicationProviderSpec from a dictimage_application_provider_spec_from_dict=ImageApplicationProviderSpec.from_dict(image_application_provider_spec_dict)