1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00
musix-oss/node_modules/@google-cloud/storage
2020-03-03 22:30:50 +02:00
..
build/src Modules 2020-03-03 22:30:50 +02:00
CHANGELOG.md Modules 2020-03-03 22:30:50 +02:00
LICENSE Modules 2020-03-03 22:30:50 +02:00
package.json Modules 2020-03-03 22:30:50 +02:00
README.md Modules 2020-03-03 22:30:50 +02:00

Google Cloud Platform logo

Google Cloud Storage: Node.js Client

release level npm version codecov

Node.js idiomatic client for Cloud Storage.

Cloud Storage allows world-wide storage and retrieval of any amount of data at any time. You can use Google Cloud Storage for a range of scenarios including serving website content, storing data for archival and disaster recovery, or distributing large data objects to users via direct download.

Read more about the client libraries for Cloud APIs, including the older Google APIs Client Libraries, in Client Libraries Explained.

Table of contents:

Quickstart

Before you begin

  1. Select or create a Cloud Platform project.
  2. Enable billing for your project.
  3. Enable the Google Cloud Storage API.
  4. Set up authentication with a service account so you can access the API from your local workstation.

Installing the client library

npm install @google-cloud/storage

Using the client library

  // Imports the Google Cloud client library
  const {Storage} = require('@google-cloud/storage');

  // Creates a client
  const storage = new Storage();
  // Creates a client from a Google service account key.
  // const storage = new Storage({keyFilename: "key.json"});

  /**
   * TODO(developer): Uncomment these variables before running the sample.
   */
  // const bucketName = 'bucket-name';

  async function createBucket() {
    // Creates the new bucket
    await storage.createBucket(bucketName);
    console.log(`Bucket ${bucketName} created.`);
  }

  createBucket();

Samples

Samples are in the samples/ directory. The samples' README.md has instructions for running the samples.

Sample Source Code Try it
Add Bucket Conditional Binding source code Open in Cloud Shell
Add Bucket Default Owner Acl source code Open in Cloud Shell
Add Bucket Iam Member source code Open in Cloud Shell
Add Bucket Owner Acl source code Open in Cloud Shell
Add File Owner Acl source code Open in Cloud Shell
Storage Get Bucket Metadata. source code Open in Cloud Shell
Copy File source code Open in Cloud Shell
Create New Bucket source code Open in Cloud Shell
Create Notification source code Open in Cloud Shell
Delete Bucket source code Open in Cloud Shell
Delete File source code Open in Cloud Shell
Delete Notification source code Open in Cloud Shell
Disable Default Event Based Hold source code Open in Cloud Shell
Disable Requester Pays source code Open in Cloud Shell
Disable Uniform Bucket Level Access source code Open in Cloud Shell
Download Encrypted File source code Open in Cloud Shell
Download File source code Open in Cloud Shell
Download File Using Requester Pays source code Open in Cloud Shell
Enable Default Event Based Hold source code Open in Cloud Shell
Enable Default KMS Key source code Open in Cloud Shell
Enable Requester Pays source code Open in Cloud Shell
Enable Uniform Bucket Level Access source code Open in Cloud Shell
Storage Set File Metadata. source code Open in Cloud Shell
Generate Encryption Key source code Open in Cloud Shell
Generate Signed Url source code Open in Cloud Shell
Generate V4 Read Signed Url source code Open in Cloud Shell
Generate V4 Upload Signed Url source code Open in Cloud Shell
Get Default Event Based Hold source code Open in Cloud Shell
Get Metadata source code Open in Cloud Shell
Get Metadata Notifications source code Open in Cloud Shell
Get Requester Pays Status source code Open in Cloud Shell
Get Retention Policy source code Open in Cloud Shell
Get Uniform Bucket Level Access source code Open in Cloud Shell
Activate HMAC SA Key. source code Open in Cloud Shell
Create HMAC SA Key. source code Open in Cloud Shell
Deactivate HMAC SA Key. source code Open in Cloud Shell
Delete HMAC SA Key. source code Open in Cloud Shell
Get HMAC SA Key Metadata. source code Open in Cloud Shell
List HMAC SA Keys Metadata. source code Open in Cloud Shell
List Buckets source code Open in Cloud Shell
List Files source code Open in Cloud Shell
List Files By Prefix source code Open in Cloud Shell
List Notifications source code Open in Cloud Shell
Lock Retention Policy source code Open in Cloud Shell
Make Public source code Open in Cloud Shell
Move File source code Open in Cloud Shell
Notifications source code Open in Cloud Shell
Print Bucket Acl source code Open in Cloud Shell
Print Bucket Acl For User source code Open in Cloud Shell
Print File Acl source code Open in Cloud Shell
Print File Acl For User source code Open in Cloud Shell
Quickstart source code Open in Cloud Shell
Release Event Based Hold source code Open in Cloud Shell
Release Temporary Hold source code Open in Cloud Shell
Remove Bucket Default Owner source code Open in Cloud Shell
Remove Bucket Iam Member source code Open in Cloud Shell
Remove Bucket Owner Acl source code Open in Cloud Shell
Remove File Owner Acl source code Open in Cloud Shell
Remove Retention Policy source code Open in Cloud Shell
Rotate Encryption Key source code Open in Cloud Shell
Set Event Based Hold source code Open in Cloud Shell
Set Retention Policy source code Open in Cloud Shell
Set Temporaryd Hold source code Open in Cloud Shell
Upload a directory to a bucket. source code Open in Cloud Shell
Upload Encrypted File source code Open in Cloud Shell
Upload File source code Open in Cloud Shell
Upload File With Kms Key source code Open in Cloud Shell
View Bucket Iam Members source code Open in Cloud Shell

The Google Cloud Storage Node.js Client API Reference documentation also contains samples.

Versioning

This library follows Semantic Versioning.

This library is considered to be General Availability (GA). This means it is stable; the code surface will not change in backwards-incompatible ways unless absolutely necessary (e.g. because of critical security issues) or with an extensive deprecation period. Issues and requests against GA libraries are addressed with the highest priority.

More Information: Google Cloud Platform Launch Stages

Contributing

Contributions welcome! See the Contributing Guide.

License

Apache Version 2.0

See LICENSE