DockerServiceConnection Serializer
| 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] |
| 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 import DockerServiceConnection
# TODO update the JSON string below
json = "{}"
# create an instance of DockerServiceConnection from a JSON string
docker_service_connection_instance = DockerServiceConnection.from_json(json)
# print the JSON string representation of the object
print(DockerServiceConnection.to_json())
# convert the object into a dict
docker_service_connection_dict = docker_service_connection_instance.to_dict()
# create an instance of DockerServiceConnection from a dict
docker_service_connection_from_dict = DockerServiceConnection.from_dict(docker_service_connection_dict)