Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.73 KB

File metadata and controls

38 lines (29 loc) · 1.73 KB

KubernetesServiceConnection

KubernetesServiceConnection Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
name str
local bool If enabled, use the local connection. Required Docker socket/Kubernetes Integration [optional]
component str [readonly]
verbose_name str Return object's verbose_name [readonly]
verbose_name_plural str Return object's plural verbose_name [readonly]
meta_model_name str Return internal model name [readonly]
kubeconfig Dict[str, object] Paste your kubeconfig here. authentik will automatically use the currently selected context. [optional]
verify_ssl bool Verify SSL Certificates of the Kubernetes API endpoint [optional]

Example

from authentik_client.models.kubernetes_service_connection import KubernetesServiceConnection

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

# convert the object into a dict
kubernetes_service_connection_dict = kubernetes_service_connection_instance.to_dict()
# create an instance of KubernetesServiceConnection from a dict
kubernetes_service_connection_from_dict = KubernetesServiceConnection.from_dict(kubernetes_service_connection_dict)

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