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