Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.63 KB

File metadata and controls

33 lines (24 loc) · 1.63 KB

PatchedKubernetesServiceConnectionRequest

KubernetesServiceConnection Serializer

Properties

Name Type Description Notes
name str [optional]
local bool If enabled, use the local connection. Required Docker socket/Kubernetes Integration [optional]
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.patched_kubernetes_service_connection_request import PatchedKubernetesServiceConnectionRequest

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

# convert the object into a dict
patched_kubernetes_service_connection_request_dict = patched_kubernetes_service_connection_request_instance.to_dict()
# create an instance of PatchedKubernetesServiceConnectionRequest from a dict
patched_kubernetes_service_connection_request_from_dict = PatchedKubernetesServiceConnectionRequest.from_dict(patched_kubernetes_service_connection_request_dict)

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