Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 937 Bytes

File metadata and controls

30 lines (21 loc) · 937 Bytes

IngressNginx

Properties

Name Type Description Notes
enabled bool [optional] [default to True]
values object [optional]

Example

from platform_api_python_client.models.ingress_nginx import IngressNginx

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

# convert the object into a dict
ingress_nginx_dict = ingress_nginx_instance.to_dict()
# create an instance of IngressNginx from a dict
ingress_nginx_from_dict = IngressNginx.from_dict(ingress_nginx_dict)

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