Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

KubeConfigValue.md

File metadata and controls

34 lines (25 loc) · 1.23 KB

KubeConfigValue

Properties

Name Type Description Notes
api_version str [optional]
clusters List[KubeconfigNamedCluster] [optional]
contexts List[KubeconfigNamedContext] [optional]
current_context str [optional]
kind str [optional]
users List[KubeconfigUser] [optional]

Example

from akeyless.models.kube_config_value import KubeConfigValue

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

# convert the object into a dict
kube_config_value_dict = kube_config_value_instance.to_dict()
# create an instance of KubeConfigValue from a dict
kube_config_value_from_dict = KubeConfigValue.from_dict(kube_config_value_dict)

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