/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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. */ /** * * @export * @interface Disk */ export interface Disk { /** * * @type {string} * @memberof Disk */ name: string; /** * * @type {string} * @memberof Disk */ mountpoint: string; /** * * @type {string} * @memberof Disk */ label?: string; /** * * @type {number} * @memberof Disk */ capacityTotalBytes?: number; /** * * @type {number} * @memberof Disk */ capacityUsedBytes?: number; /** * * @type {boolean} * @memberof Disk */ encryptionEnabled?: boolean; } /** * Check if a given object implements the Disk interface. */ export declare function instanceOfDisk(value: object): value is Disk; export declare function DiskFromJSON(json: any): Disk; export declare function DiskFromJSONTyped(json: any, ignoreDiscriminator: boolean): Disk; export declare function DiskToJSON(json: any): Disk; export declare function DiskToJSONTyped(value?: Disk | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Disk.d.ts.map