/* tslint:disable */ /* eslint-disable */ /** * 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. */ import { mapValues } from '../runtime'; /** * 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 function instanceOfDockerServiceConnection(value: object): value is DockerServiceConnection { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('component' in value) || value['component'] === undefined) return false; if (!('verboseName' in value) || value['verboseName'] === undefined) return false; if (!('verboseNamePlural' in value) || value['verboseNamePlural'] === undefined) return false; if (!('metaModelName' in value) || value['metaModelName'] === undefined) return false; if (!('url' in value) || value['url'] === undefined) return false; return true; } export function DockerServiceConnectionFromJSON(json: any): DockerServiceConnection { return DockerServiceConnectionFromJSONTyped(json, false); } export function DockerServiceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DockerServiceConnection { if (json == null) { return json; } return { 'pk': json['pk'], 'name': json['name'], 'local': json['local'] == null ? undefined : json['local'], 'component': json['component'], 'verboseName': json['verbose_name'], 'verboseNamePlural': json['verbose_name_plural'], 'metaModelName': json['meta_model_name'], 'url': json['url'], 'tlsVerification': json['tls_verification'] == null ? undefined : json['tls_verification'], 'tlsAuthentication': json['tls_authentication'] == null ? undefined : json['tls_authentication'], }; } export function DockerServiceConnectionToJSON(json: any): DockerServiceConnection { return DockerServiceConnectionToJSONTyped(json, false); } export function DockerServiceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'local': value['local'], 'url': value['url'], 'tls_verification': value['tlsVerification'], 'tls_authentication': value['tlsAuthentication'], }; }