/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * DockerServiceConnection Serializer * @export * @interface DockerServiceConnection */ export interface DockerServiceConnection { /** * * @type {string} * @memberof DockerServiceConnection */ readonly pk: string; /** * * @type {string} * @memberof DockerServiceConnection */ name: string; /** * If enabled, use the local connection. Required Docker socket/Kubernetes Integration * @type {boolean} * @memberof DockerServiceConnection */ local?: boolean; /** * * @type {string} * @memberof DockerServiceConnection */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof DockerServiceConnection */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof DockerServiceConnection */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof DockerServiceConnection */ readonly metaModelName: string; /** * Can be in the format of 'unix://' when connecting to a local docker daemon, or 'https://:2376' when connecting to a remote system. * @type {string} * @memberof DockerServiceConnection */ url: string; /** * CA which the endpoint's Certificate is verified against. Can be left empty for no validation. * @type {string} * @memberof DockerServiceConnection */ tlsVerification?: string | null; /** * Certificate/Key used for authentication. Can be left empty for no authentication. * @type {string} * @memberof DockerServiceConnection */ tlsAuthentication?: string | null; } /** * Check if a given object implements the DockerServiceConnection interface. */ export declare function instanceOfDockerServiceConnection(value: object): value is DockerServiceConnection; export declare function DockerServiceConnectionFromJSON(json: any): DockerServiceConnection; export declare function DockerServiceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DockerServiceConnection; export declare function DockerServiceConnectionToJSON(json: any): DockerServiceConnection; export declare function DockerServiceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DockerServiceConnection.d.ts.map