You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
686 B
24 lines
686 B
4 weeks ago
|
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 {};
|