/** * 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. */ /** * * @export * @interface VolumePartialUpdate */ export interface VolumePartialUpdate { /** * * @type {string} * @memberof VolumePartialUpdate */ path?: string; /** * * @type {Array} * @memberof VolumePartialUpdate */ nodes?: Array; /** * * @type {string} * @memberof VolumePartialUpdate */ displayName?: string; /** * * @type {string} * @memberof VolumePartialUpdate */ visualTag?: string | null; /** * * @type {boolean} * @memberof VolumePartialUpdate */ isDefault?: boolean; /** * * @type {boolean} * @memberof VolumePartialUpdate */ useForHomes?: boolean; /** * * @type {boolean} * @memberof VolumePartialUpdate */ useForWorkspaces?: boolean; /** * * @type {string} * @memberof VolumePartialUpdate */ type?: VolumePartialUpdateTypeEnum; /** * * @type {boolean} * @memberof VolumePartialUpdate */ snmEnabled?: boolean; /** * * @type {string} * @memberof VolumePartialUpdate */ snfsName?: string | null; /** * * @type {boolean} * @memberof VolumePartialUpdate */ simulatedQuotas?: boolean; /** * * @type {number} * @memberof VolumePartialUpdate */ cloudAccount?: number | null; } /** * @export * @enum {string} */ export declare enum VolumePartialUpdateTypeEnum { Generic = "generic", GenericMount = "generic-mount", Snfs = "snfs", Btrfs = "btrfs", Lizardfs = "lizardfs", Bcachefs = "bcachefs", Onefs = "onefs", Beegfs = "beegfs", Cloud = "cloud" } export declare function VolumePartialUpdateFromJSON(json: any): VolumePartialUpdate; export declare function VolumePartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): VolumePartialUpdate; export declare function VolumePartialUpdateToJSON(value?: VolumePartialUpdate | null): any;