/** * 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. */ /** * ServiceConnection Serializer * @export * @interface ServiceConnectionRequest */ export interface ServiceConnectionRequest { /** * * @type {string} * @memberof ServiceConnectionRequest */ name: string; /** * If enabled, use the local connection. Required Docker socket/Kubernetes Integration * @type {boolean} * @memberof ServiceConnectionRequest */ local?: boolean; } /** * Check if a given object implements the ServiceConnectionRequest interface. */ export declare function instanceOfServiceConnectionRequest(value: object): value is ServiceConnectionRequest; export declare function ServiceConnectionRequestFromJSON(json: any): ServiceConnectionRequest; export declare function ServiceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceConnectionRequest; export declare function ServiceConnectionRequestToJSON(json: any): ServiceConnectionRequest; export declare function ServiceConnectionRequestToJSONTyped(value?: ServiceConnectionRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ServiceConnectionRequest.d.ts.map