hexo/node_modules/ali-oss/lib/common/bucket/getBucketStat.d.ts

24 lines
709 B
TypeScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
interface bucketStatRes {
Storage: string;
ObjectCount: string;
MultipartUploadCount: string;
LiveChannelCount: string;
LastModifiedTime: string;
StandardStorage: string;
StandardObjectCount: string;
InfrequentAccessStorage: string;
InfrequentAccessRealStorage: string;
InfrequentAccessObjectCount: string;
ArchiveStorage: string;
ArchiveRealStorage: string;
ArchiveObjectCount: string;
ColdArchiveStorage: string;
ColdArchiveRealStorage: string;
ColdArchiveObjectCount: string;
}
export declare function getBucketStat(this: any, name: string, options: {}): Promise<{
res: any;
stat: bucketStatRes;
}>;
export {};