/** * 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 { NFSPermission, ProductionMiniReference, Quota, VolumeMiniReference, WorkspaceEndpoint, WorkspaceResolvedPermission } from './'; /** * * @export * @interface Workspace */ export interface Workspace { /** * * @type {number} * @memberof Workspace */ id: number; /** * * @type {ProductionMiniReference} * @memberof Workspace */ production: ProductionMiniReference; /** * * @type {VolumeMiniReference} * @memberof Workspace */ volume?: VolumeMiniReference; /** * * @type {string} * @memberof Workspace */ readonly volumePath?: string | null; /** * * @type {string} * @memberof Workspace */ readonly path?: string | null; /** * * @type {Array} * @memberof Workspace */ sharingNfsPermissions?: Array; /** * * @type {string} * @memberof Workspace */ readonly fullPath?: string | null; /** * * @type {string} * @memberof Workspace */ readonly currentShareName: string; /** * * @type {Array} * @memberof Workspace */ readonly endpoints?: Array | null; /** * * @type {Quota} * @memberof Workspace */ quota?: Quota | null; /** * * @type {number} * @memberof Workspace */ readonly sizeUsed: number | null; /** * * @type {number} * @memberof Workspace */ readonly sizeTotal: number | null; /** * * @type {boolean} * @memberof Workspace */ readonly bookmarked: boolean | null; /** * * @type {number} * @memberof Workspace */ quotaSizeHard?: number; /** * * @type {number} * @memberof Workspace */ quotaSizeSoft?: number; /** * * @type {Array} * @memberof Workspace */ readonly resolvedPermissions?: Array | null; /** * * @type {boolean} * @memberof Workspace */ readonly resolvedReadOnly: boolean | null; /** * * @type {string} * @memberof Workspace */ name?: string; /** * * @type {string} * @memberof Workspace */ readonly directory?: string | null; /** * * @type {string} * @memberof Workspace */ description?: string | null; /** * * @type {string} * @memberof Workspace */ longDescription?: string; /** * * @type {boolean} * @memberof Workspace */ isTemplate?: boolean; /** * * @type {Date} * @memberof Workspace */ readonly lastLogin?: Date | null; /** * * @type {boolean} * @memberof Workspace */ active?: boolean; /** * * @type {string} * @memberof Workspace */ macProtocol?: WorkspaceMacProtocolEnum; /** * * @type {string} * @memberof Workspace */ winProtocol?: WorkspaceWinProtocolEnum; /** * * @type {string} * @memberof Workspace */ winDrive?: WorkspaceWinDriveEnum; /** * * @type {string} * @memberof Workspace */ linuxProtocol?: WorkspaceLinuxProtocolEnum; /** * * @type {string} * @memberof Workspace */ linuxMountpoint?: string | null; /** * * @type {string} * @memberof Workspace */ shareName?: string | null; /** * * @type {boolean} * @memberof Workspace */ shareNfs?: boolean; /** * * @type {boolean} * @memberof Workspace */ shareAfp?: boolean; /** * * @type {boolean} * @memberof Workspace */ sharingHidden?: boolean; /** * * @type {boolean} * @memberof Workspace */ sharingRequireLogin?: boolean; /** * * @type {boolean} * @memberof Workspace */ sharingReadOnly?: boolean; /** * * @type {boolean} * @memberof Workspace */ sharingAllowExecute?: boolean; /** * * @type {boolean} * @memberof Workspace */ enableQuota?: boolean; /** * * @type {string} * @memberof Workspace */ affinity?: string | null; /** * * @type {boolean} * @memberof Workspace */ emulateAvid?: boolean; /** * * @type {boolean} * @memberof Workspace */ emulateCapture?: boolean; /** * * @type {boolean} * @memberof Workspace */ emulatePreopen?: boolean; /** * * @type {boolean} * @memberof Workspace */ emulateNtfsStreams?: boolean; /** * * @type {boolean} * @memberof Workspace */ emulateRecycleBin?: boolean; /** * * @type {boolean} * @memberof Workspace */ emulateFruit?: boolean; /** * * @type {string} * @memberof Workspace */ smbExtraConfig?: string; /** * * @type {string} * @memberof Workspace */ afpExtraConfig?: string; /** * * @type {string} * @memberof Workspace */ recycleBinExclude?: string | null; /** * * @type {boolean} * @memberof Workspace */ isExternal?: boolean; /** * * @type {string} * @memberof Workspace */ externalMacUrl?: string | null; /** * * @type {string} * @memberof Workspace */ externalWinUrl?: string | null; /** * * @type {string} * @memberof Workspace */ externalLinuxUrl?: string | null; /** * * @type {boolean} * @memberof Workspace */ allowSymlinks?: boolean; /** * * @type {boolean} * @memberof Workspace */ rwPermissionPriority?: boolean; /** * * @type {number} * @memberof Workspace */ template?: number | null; /** * * @type {number} * @memberof Workspace */ readonly homeFor?: number | null; } /** * @export * @enum {string} */ export declare enum WorkspaceMacProtocolEnum { Smb = "smb", Afp = "afp", Nfs = "nfs", Omfs = "omfs" } /** * @export * @enum {string} */ export declare enum WorkspaceWinProtocolEnum { Disk = "disk", Unc = "unc" } /** * @export * @enum {string} */ export declare enum WorkspaceWinDriveEnum { A = "a", B = "b", C = "c", D = "d", E = "e", F = "f", G = "g", H = "h", I = "i", J = "j", K = "k", L = "l", M = "m", N = "n", O = "o", P = "p", Q = "q", R = "r", S = "s", T = "t", U = "u", V = "v", W = "w", X = "x", Y = "y", Z = "z" } /** * @export * @enum {string} */ export declare enum WorkspaceLinuxProtocolEnum { Smb = "smb", Nfs = "nfs" } export declare function WorkspaceFromJSON(json: any): Workspace; export declare function WorkspaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Workspace; export declare function WorkspaceToJSON(value?: Workspace | null): any;