| Name |
Type |
Description |
Notes |
| image |
str |
|
[optional] |
| replicas |
int |
|
[optional] |
| resources |
DeploymentResourcesConf |
|
[optional] |
| secret |
str |
|
[optional] |
| configuration |
Dict[str, Any] |
Native Gatekeeper proxy.yml settings, keyed by the kebab-case names from the Gatekeeper configuration reference. Application values override global values and CloudHarness-generated defaults. |
[optional] |
from cloudharness_model.models.gatekeeper_conf import GatekeeperConf
# TODO update the JSON string below
json = "{}"
# create an instance of GatekeeperConf from a JSON string
gatekeeper_conf_instance = GatekeeperConf.from_json(json)
# print the JSON string representation of the object
print(GatekeeperConf.to_json())
# convert the object into a dict
gatekeeper_conf_dict = gatekeeper_conf_instance.to_dict()
# create an instance of GatekeeperConf from a dict
gatekeeper_conf_from_dict = GatekeeperConf.from_dict(gatekeeper_conf_dict)
[Back to Model list] [Back to API list] [Back to README]