getBucketStat.d.ts 686 B

1234567891011121314151617181920212223
  1. interface bucketStatRes {
  2. Storage: string;
  3. ObjectCount: string;
  4. MultipartUploadCount: string;
  5. LiveChannelCount: string;
  6. LastModifiedTime: string;
  7. StandardStorage: string;
  8. StandardObjectCount: string;
  9. InfrequentAccessStorage: string;
  10. InfrequentAccessRealStorage: string;
  11. InfrequentAccessObjectCount: string;
  12. ArchiveStorage: string;
  13. ArchiveRealStorage: string;
  14. ArchiveObjectCount: string;
  15. ColdArchiveStorage: string;
  16. ColdArchiveRealStorage: string;
  17. ColdArchiveObjectCount: string;
  18. }
  19. export declare function getBucketStat(this: any, name: string, options: {}): Promise<{
  20. res: any;
  21. stat: bucketStatRes;
  22. }>;
  23. export {};