Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.75 KB

File metadata and controls

36 lines (27 loc) · 1.75 KB

ApplicationProviderSpec

Properties

Name Type Description Notes
env_vars Dict[str, str] Environment variable key-value pairs, injected during runtime. The key and value each must be between 1 and 253 characters. [optional]
name str The application name must be 1–253 characters long, start with a letter or number, and contain no whitespace. [optional]
app_type AppType
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]
inline List[ApplicationContent] A list of application content.

Example

from flightctl.models.application_provider_spec import ApplicationProviderSpec

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

# convert the object into a dict
application_provider_spec_dict = application_provider_spec_instance.to_dict()
# create an instance of ApplicationProviderSpec from a dict
application_provider_spec_from_dict = ApplicationProviderSpec.from_dict(application_provider_spec_dict)

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