ali-oss
Version:
aliyun oss(object storage service) node client
24 lines (23 loc) • 686 B
TypeScript
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 {};