import * as $dara from '@darabonba/typescript'; export declare class NASMountConfig extends $dara.Model { /** * @remarks * Specifies whether to enable encryption in transit. This option is supported only for general-purpose NAS. */ enableTLS?: boolean; /** * @remarks * Specifies the local mount directory. * * @example * /home/test */ mountDir?: string; /** * @remarks * Specifies the NAS server address. * * @example * ***-uni85.cn-hangzhou.nas.com:/ */ serverAddr?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }