Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

KubeconfigCluster.md

File metadata and controls

31 lines (22 loc) · 1.07 KB

KubeconfigCluster

Properties

Name Type Description Notes
certificate_authority str CertificateAuthority is optional and can be omitted if not used. [optional]
certificate_authority_data str [optional]
server str [optional]

Example

from akeyless.models.kubeconfig_cluster import KubeconfigCluster

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

# convert the object into a dict
kubeconfig_cluster_dict = kubeconfig_cluster_instance.to_dict()
# create an instance of KubeconfigCluster from a dict
kubeconfig_cluster_from_dict = KubeconfigCluster.from_dict(kubeconfig_cluster_dict)

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