KubernetesServiceConnection Serializer
| 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] |
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)