Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.36 KB

File metadata and controls

32 lines (23 loc) · 1.36 KB

ImageApplicationProviderSpec

Properties

Name Type Description Notes
volumes List[ApplicationVolume] List of application volumes. [optional]
image str Reference to the OCI image or artifact for the application package.
ports List[str] Port mappings. [optional]
resources ApplicationResources [optional]

Example

from flightctl.models.image_application_provider_spec import ImageApplicationProviderSpec

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

# convert the object into a dict
image_application_provider_spec_dict = image_application_provider_spec_instance.to_dict()
# create an instance of ImageApplicationProviderSpec from a dict
image_application_provider_spec_from_dict = ImageApplicationProviderSpec.from_dict(image_application_provider_spec_dict)

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