Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

KubeconfigUserExec.md

File metadata and controls

29 lines (20 loc) · 977 Bytes

KubeconfigUserExec

Properties

Name Type Description Notes
var_exec KubeconfigExec [optional]

Example

from akeyless.models.kubeconfig_user_exec import KubeconfigUserExec

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

# convert the object into a dict
kubeconfig_user_exec_dict = kubeconfig_user_exec_instance.to_dict()
# create an instance of KubeconfigUserExec from a dict
kubeconfig_user_exec_from_dict = KubeconfigUserExec.from_dict(kubeconfig_user_exec_dict)

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