Place here the values to configure your application helm templates.
| Name | Type | Description | Notes |
|---|---|---|---|
| harness | ApplicationHarnessConfig |
from cloudharness_model.models.application_config import ApplicationConfig
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationConfig from a JSON string
application_config_instance = ApplicationConfig.from_json(json)
# print the JSON string representation of the object
print(ApplicationConfig.to_json())
# convert the object into a dict
application_config_dict = application_config_instance.to_dict()
# create an instance of ApplicationConfig from a dict
application_config_from_dict = ApplicationConfig.from_dict(application_config_dict)