import * as $dara from '@darabonba/typescript'; export declare class OSSMountPoint extends $dara.Model { /** * @remarks * The OSS bucket to mount. * * @example * my-bucket */ bucketName?: string; /** * @remarks * The directory path within the bucket to mount. * * @example * /my-dir */ bucketPath?: string; /** * @remarks * The OSS endpoint. * * @example * http://oss-cn-shanghai.aliyuncs.com */ endpoint?: string; /** * @remarks * The local directory path where the bucket is mounted. * * @example * /mnt/dir */ mountDir?: string; /** * @remarks * Specifies whether to mount the OSS bucket as read-only. * * @example * true */ readOnly?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }