Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

KubeconfigGenerateOutput.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

KubeconfigGenerateOutput

Properties

Name Type Description Notes
conflicted_clusters_names List[str] [optional]
data KubeConfigValue [optional]
errors List[str] [optional]

Example

from akeyless.models.kubeconfig_generate_output import KubeconfigGenerateOutput

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

# convert the object into a dict
kubeconfig_generate_output_dict = kubeconfig_generate_output_instance.to_dict()
# create an instance of KubeconfigGenerateOutput from a dict
kubeconfig_generate_output_from_dict = KubeconfigGenerateOutput.from_dict(kubeconfig_generate_output_dict)

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