DockerServiceConnection Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| 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. | |
| 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.docker_service_connection_request import DockerServiceConnectionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DockerServiceConnectionRequest from a JSON string
docker_service_connection_request_instance = DockerServiceConnectionRequest.from_json(json)
# print the JSON string representation of the object
print(DockerServiceConnectionRequest.to_json())
# convert the object into a dict
docker_service_connection_request_dict = docker_service_connection_request_instance.to_dict()
# create an instance of DockerServiceConnectionRequest from a dict
docker_service_connection_request_from_dict = DockerServiceConnectionRequest.from_dict(docker_service_connection_request_dict)