/** * 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. */ /** * Outpost health status * @export * @interface OutpostHealth */ export interface OutpostHealth { /** * * @type {string} * @memberof OutpostHealth */ readonly uid: string; /** * * @type {Date} * @memberof OutpostHealth */ readonly lastSeen: Date; /** * * @type {string} * @memberof OutpostHealth */ readonly version: string; /** * * @type {string} * @memberof OutpostHealth */ readonly golangVersion: string; /** * * @type {boolean} * @memberof OutpostHealth */ readonly opensslEnabled: boolean; /** * * @type {string} * @memberof OutpostHealth */ readonly opensslVersion: string; /** * Get FIPS enabled * @type {boolean} * @memberof OutpostHealth */ readonly fipsEnabled: boolean | null; /** * * @type {string} * @memberof OutpostHealth */ readonly versionShould: string; /** * * @type {boolean} * @memberof OutpostHealth */ readonly versionOutdated: boolean; /** * * @type {string} * @memberof OutpostHealth */ readonly buildHash: string; /** * * @type {string} * @memberof OutpostHealth */ readonly buildHashShould: string; /** * * @type {string} * @memberof OutpostHealth */ readonly hostname: string; } /** * Check if a given object implements the OutpostHealth interface. */ export declare function instanceOfOutpostHealth(value: object): value is OutpostHealth; export declare function OutpostHealthFromJSON(json: any): OutpostHealth; export declare function OutpostHealthFromJSONTyped(json: any, ignoreDiscriminator: boolean): OutpostHealth; export declare function OutpostHealthToJSON(json: any): OutpostHealth; export declare function OutpostHealthToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OutpostHealth.d.ts.map