DockerServiceConnection Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| local | bool | If enabled, use the local connection. Required Docker socket/Kubernetes Integration | [optional] |
| url | str | Can be in the format of 'unix://<path>' when connecting to a local docker daemon, or 'https://<hostname>:2376' when connecting to a remote system. | [optional] |
| tls_verification | UUID | CA which the endpoint's Certificate is verified against. Can be left empty for no validation. | [optional] |
| tls_authentication | UUID | Certificate/Key used for authentication. Can be left empty for no authentication. | [optional] |
from authentik_client.models.patched_docker_service_connection_request import PatchedDockerServiceConnectionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedDockerServiceConnectionRequest from a JSON string
patched_docker_service_connection_request_instance = PatchedDockerServiceConnectionRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedDockerServiceConnectionRequest.to_json())
# convert the object into a dict
patched_docker_service_connection_request_dict = patched_docker_service_connection_request_instance.to_dict()
# create an instance of PatchedDockerServiceConnectionRequest from a dict
patched_docker_service_connection_request_from_dict = PatchedDockerServiceConnectionRequest.from_dict(patched_docker_service_connection_request_dict)