@google-cloud/storage#Bucket TypeScript Examples

The following examples show how to use @google-cloud/storage#Bucket. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: firebase-admin-storage.service.ts    From nestjs-firebase-admin with MIT License 5 votes vote down vote up
bucket(name?: string): Bucket {
    return this.storage.bucket(name);
  }
Example #2
Source File: gcloud-storage.service.ts    From nestjs-gcloud-storage with MIT License 5 votes vote down vote up
public bucket: Bucket = null;
Example #3
Source File: index.ts    From Dimensions with MIT License 5 votes vote down vote up
public dimensionBucket: Bucket;
Example #4
Source File: gcp-cache.ts    From nx-extend with MIT License 5 votes vote down vote up
private readonly bucket: Bucket
Example #5
Source File: fileUploader.ts    From polkadot-watcher-csv-exporter with Apache License 2.0 5 votes vote down vote up
private bucket: Bucket;