Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 869 Bytes

File metadata and controls

30 lines (21 loc) · 869 Bytes

Istio

Properties

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

Example

from platform_api_python_client.models.istio import Istio

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

# convert the object into a dict
istio_dict = istio_instance.to_dict()
# create an instance of Istio from a dict
istio_from_dict = Istio.from_dict(istio_dict)

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