/** * 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. */ /** * KubernetesServiceConnection Serializer * @export * @interface KubernetesServiceConnectionRequest */ export interface KubernetesServiceConnectionRequest { /** * * @type {string} * @memberof KubernetesServiceConnectionRequest */ name: string; /** * If enabled, use the local connection. Required Docker socket/Kubernetes Integration * @type {boolean} * @memberof KubernetesServiceConnectionRequest */ local?: boolean; /** * Paste your kubeconfig here. authentik will automatically use the currently selected context. * @type {{ [key: string]: any; }} * @memberof KubernetesServiceConnectionRequest */ kubeconfig?: { [key: string]: any; }; /** * Verify SSL Certificates of the Kubernetes API endpoint * @type {boolean} * @memberof KubernetesServiceConnectionRequest */ verifySsl?: boolean; } /** * Check if a given object implements the KubernetesServiceConnectionRequest interface. */ export declare function instanceOfKubernetesServiceConnectionRequest(value: object): value is KubernetesServiceConnectionRequest; export declare function KubernetesServiceConnectionRequestFromJSON(json: any): KubernetesServiceConnectionRequest; export declare function KubernetesServiceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): KubernetesServiceConnectionRequest; export declare function KubernetesServiceConnectionRequestToJSON(json: any): KubernetesServiceConnectionRequest; export declare function KubernetesServiceConnectionRequestToJSONTyped(value?: KubernetesServiceConnectionRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=KubernetesServiceConnectionRequest.d.ts.map