/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Backend, FSProperties, VolumeStatus } from './'; /** * * @export * @interface VolumeReference */ export interface VolumeReference { /** * * @type {number} * @memberof VolumeReference */ id: number; /** * * @type {string} * @memberof VolumeReference */ readonly path?: string; /** * * @type {Array} * @memberof VolumeReference */ readonly nodes?: Array; /** * * @type {string} * @memberof VolumeReference */ readonly displayName?: string; /** * * @type {string} * @memberof VolumeReference */ readonly visualTag?: string | null; /** * * @type {boolean} * @memberof VolumeReference */ readonly isDefault?: boolean; /** * * @type {boolean} * @memberof VolumeReference */ readonly useForHomes?: boolean; /** * * @type {boolean} * @memberof VolumeReference */ readonly useForWorkspaces?: boolean; /** * * @type {string} * @memberof VolumeReference */ readonly type?: VolumeReferenceTypeEnum; /** * * @type {boolean} * @memberof VolumeReference */ readonly snmEnabled?: boolean; /** * * @type {string} * @memberof VolumeReference */ readonly snfsName?: string | null; /** * * @type {boolean} * @memberof VolumeReference */ readonly simulatedQuotas?: boolean; /** * * @type {FSProperties} * @memberof VolumeReference */ fsProperties?: FSProperties; /** * * @type {Backend} * @memberof VolumeReference */ backend?: Backend; /** * * @type {VolumeStatus} * @memberof VolumeReference */ status?: VolumeStatus; /** * * @type {number} * @memberof VolumeReference */ readonly cloudAccount?: number | null; /** * * @type {string} * @memberof VolumeReference */ readonly name?: string | null; } /** * @export * @enum {string} */ export declare enum VolumeReferenceTypeEnum { Generic = "generic", GenericMount = "generic-mount", Snfs = "snfs", Btrfs = "btrfs", Lizardfs = "lizardfs", Bcachefs = "bcachefs", Onefs = "onefs", Beegfs = "beegfs", Cloud = "cloud" } export declare function VolumeReferenceFromJSON(json: any): VolumeReference; export declare function VolumeReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): VolumeReference; export declare function VolumeReferenceToJSON(value?: VolumeReference | null): any;