async getBucketId(): Promise<string> {
    if (typeof this.info.bucketId !== "undefined") return this.info.bucketId;

    return (await this.refreshBucketInfo()).bucketId;
  }