Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 960 Bytes

File metadata and controls

29 lines (20 loc) · 960 Bytes

IstioOverrides

Properties

Name Type Description Notes
istio_cni IstioCniSubchartOverrides [optional]

Example

from platform_api_python_client.models.istio_overrides import IstioOverrides

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

# convert the object into a dict
istio_overrides_dict = istio_overrides_instance.to_dict()
# create an instance of IstioOverrides from a dict
istio_overrides_from_dict = IstioOverrides.from_dict(istio_overrides_dict)

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