/** * 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, VolumeReference } from './'; /** * * @export * @interface ShareUpdate */ export interface ShareUpdate { /** * * @type {Array} * @memberof ShareUpdate */ sharingNfsPermissions?: Array; /** * * @type {VolumeReference} * @memberof ShareUpdate */ volume: VolumeReference; /** * * @type {string} * @memberof ShareUpdate */ name: string; /** * * @type {string} * @memberof ShareUpdate */ path?: string; /** * * @type {boolean} * @memberof ShareUpdate */ shareSmb?: boolean; /** * * @type {boolean} * @memberof ShareUpdate */ shareNfs?: boolean; /** * * @type {boolean} * @memberof ShareUpdate */ shareAfp?: boolean; /** * * @type {boolean} * @memberof ShareUpdate */ sharingReadOnly?: boolean; /** * * @type {boolean} * @memberof ShareUpdate */ sharingHidden?: boolean; /** * * @type {boolean} * @memberof ShareUpdate */ sharingRequireLogin?: boolean; /** * * @type {string} * @memberof ShareUpdate */ smbExtraConfig?: string; /** * * @type {string} * @memberof ShareUpdate */ afpExtraConfig?: string; /** * * @type {number} * @memberof ShareUpdate */ rwAccessGroup?: number | null; /** * * @type {number} * @memberof ShareUpdate */ roAccessGroup?: number | null; } export declare function ShareUpdateFromJSON(json: any): ShareUpdate; export declare function ShareUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShareUpdate; export declare function ShareUpdateToJSON(value?: ShareUpdate | null): any;