import * as $dara from '@darabonba/typescript'; export declare class GetDefaultStorageLocationResponseBody extends $dara.Model { /** * @remarks * OSS bucket name * * @example * oss-test-bucket */ bucket?: string; /** * @remarks * Path * * @example * ice/dir */ path?: string; /** * @remarks * Request ID * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * Bucket status: * * - Normal: The bucket is in normal status. * * - notExist: The bucket does not exist. * * @example * normal */ status?: string; /** * @remarks * Storage class * * @example * user_oss_bucket */ storageType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }