/** * 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 KubernetesServiceConnection */ export interface KubernetesServiceConnection { /** * * @type {string} * @memberof KubernetesServiceConnection */ readonly pk: string; /** * * @type {string} * @memberof KubernetesServiceConnection */ name: string; /** * If enabled, use the local connection. Required Docker socket/Kubernetes Integration * @type {boolean} * @memberof KubernetesServiceConnection */ local?: boolean; /** * * @type {string} * @memberof KubernetesServiceConnection */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof KubernetesServiceConnection */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof KubernetesServiceConnection */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof KubernetesServiceConnection */ readonly metaModelName: string; /** * Paste your kubeconfig here. authentik will automatically use the currently selected context. * @type {{ [key: string]: any; }} * @memberof KubernetesServiceConnection */ kubeconfig?: { [key: string]: any; }; /** * Verify SSL Certificates of the Kubernetes API endpoint * @type {boolean} * @memberof KubernetesServiceConnection */ verifySsl?: boolean; } /** * Check if a given object implements the KubernetesServiceConnection interface. */ export declare function instanceOfKubernetesServiceConnection(value: object): value is KubernetesServiceConnection; export declare function KubernetesServiceConnectionFromJSON(json: any): KubernetesServiceConnection; export declare function KubernetesServiceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): KubernetesServiceConnection; export declare function KubernetesServiceConnectionToJSON(json: any): KubernetesServiceConnection; export declare function KubernetesServiceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=KubernetesServiceConnection.d.ts.map