listBucketInventory.d.ts 351 B

12345678910111213
  1. /**
  2. * listBucketInventory
  3. * @param {String} bucketName - bucket name
  4. * @param {String} inventoryId
  5. * @param {Object} options
  6. */
  7. export declare function listBucketInventory(this: any, bucketName: string, options?: any): Promise<{
  8. isTruncated: boolean;
  9. nextContinuationToken: any;
  10. inventoryList: any;
  11. status: any;
  12. res: any;
  13. }>;