Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

IstioCniSubchartOverrides

Properties

Name Type Description Notes
cni IstioCniOverrides [optional]

Example

from platform_api_python_client.models.istio_cni_subchart_overrides import IstioCniSubchartOverrides

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

# convert the object into a dict
istio_cni_subchart_overrides_dict = istio_cni_subchart_overrides_instance.to_dict()
# create an instance of IstioCniSubchartOverrides from a dict
istio_cni_subchart_overrides_from_dict = IstioCniSubchartOverrides.from_dict(istio_cni_subchart_overrides_dict)

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