/** * 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 type { BlueprintInstanceStatusEnum } from './BlueprintInstanceStatusEnum'; /** * Info about a single blueprint instance file * @export * @interface BlueprintInstance */ export interface BlueprintInstance { /** * * @type {string} * @memberof BlueprintInstance */ readonly pk: string; /** * * @type {string} * @memberof BlueprintInstance */ name: string; /** * * @type {string} * @memberof BlueprintInstance */ path?: string; /** * * @type {{ [key: string]: any; }} * @memberof BlueprintInstance */ context?: { [key: string]: any; }; /** * * @type {Date} * @memberof BlueprintInstance */ readonly lastApplied: Date; /** * * @type {string} * @memberof BlueprintInstance */ readonly lastAppliedHash: string; /** * * @type {BlueprintInstanceStatusEnum} * @memberof BlueprintInstance */ readonly status: BlueprintInstanceStatusEnum; /** * * @type {boolean} * @memberof BlueprintInstance */ enabled?: boolean; /** * * @type {Array} * @memberof BlueprintInstance */ readonly managedModels: Array; /** * * @type {{ [key: string]: any; }} * @memberof BlueprintInstance */ readonly metadata: { [key: string]: any; }; /** * * @type {string} * @memberof BlueprintInstance */ content?: string; } /** * Check if a given object implements the BlueprintInstance interface. */ export declare function instanceOfBlueprintInstance(value: object): value is BlueprintInstance; export declare function BlueprintInstanceFromJSON(json: any): BlueprintInstance; export declare function BlueprintInstanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlueprintInstance; export declare function BlueprintInstanceToJSON(json: any): BlueprintInstance; export declare function BlueprintInstanceToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BlueprintInstance.d.ts.map