Files
Gabriela Araujo Britto 6ae7ddbc23 Update tslint configs
2020-02-21 15:41:51 -08:00
..

TypeScript typings for Cloud Storage JSON API v1

Stores and retrieves potentially large, immutable data objects. For detailed description please check documentation.

Installing

Install typings for Cloud Storage JSON API:

npm install @types/gapi.client.storage@v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load("client", () => { 
    // now we can use gapi.client
    // ... 
});

Then load api client wrapper:

gapi.client.load('storage', 'v1', () => {
    // now we can use gapi.client.storage
    // ... 
});

Don't forget to authenticate your client before sending any request to resources:


// declare client_id registered in Google Developers Console
var client_id = '',
    scope = [     
        // View and manage your data across Google Cloud Platform services
        'https://www.googleapis.com/auth/cloud-platform',
    
        // View your data across Google Cloud Platform services
        'https://www.googleapis.com/auth/cloud-platform.read-only',
    
        // Manage your data and permissions in Google Cloud Storage
        'https://www.googleapis.com/auth/devstorage.full_control',
    
        // View your data in Google Cloud Storage
        'https://www.googleapis.com/auth/devstorage.read_only',
    
        // Manage your data in Google Cloud Storage
        'https://www.googleapis.com/auth/devstorage.read_write',
    ],
    immediate = true;
// ...

gapi.auth.authorize({ client_id: client_id, scope: scope, immediate: immediate }, authResult => {
    if (authResult && !authResult.error) {
        /* handle succesfull authorization */
    } else {
        /* handle authorization error */
    }
});            

After that you can use Cloud Storage JSON API resources:

    
/* 
Permanently deletes the ACL entry for the specified entity on the specified bucket.  
*/
await gapi.client.bucketAccessControls.delete({ bucket: "bucket", entity: "entity",  }); 
    
/* 
Returns the ACL entry for the specified entity on the specified bucket.  
*/
await gapi.client.bucketAccessControls.get({ bucket: "bucket", entity: "entity",  }); 
    
/* 
Creates a new ACL entry on the specified bucket.  
*/
await gapi.client.bucketAccessControls.insert({ bucket: "bucket",  }); 
    
/* 
Retrieves ACL entries on the specified bucket.  
*/
await gapi.client.bucketAccessControls.list({ bucket: "bucket",  }); 
    
/* 
Updates an ACL entry on the specified bucket. This method supports patch semantics.  
*/
await gapi.client.bucketAccessControls.patch({ bucket: "bucket", entity: "entity",  }); 
    
/* 
Updates an ACL entry on the specified bucket.  
*/
await gapi.client.bucketAccessControls.update({ bucket: "bucket", entity: "entity",  }); 
    
/* 
Permanently deletes an empty bucket.  
*/
await gapi.client.buckets.delete({ bucket: "bucket",  }); 
    
/* 
Returns metadata for the specified bucket.  
*/
await gapi.client.buckets.get({ bucket: "bucket",  }); 
    
/* 
Returns an IAM policy for the specified bucket.  
*/
await gapi.client.buckets.getIamPolicy({ bucket: "bucket",  }); 
    
/* 
Creates a new bucket.  
*/
await gapi.client.buckets.insert({ project: "project",  }); 
    
/* 
Retrieves a list of buckets for a given project.  
*/
await gapi.client.buckets.list({ project: "project",  }); 
    
/* 
Updates a bucket. Changes to the bucket will be readable immediately after writing, but configuration changes may take time to propagate. This method supports patch semantics.  
*/
await gapi.client.buckets.patch({ bucket: "bucket",  }); 
    
/* 
Updates an IAM policy for the specified bucket.  
*/
await gapi.client.buckets.setIamPolicy({ bucket: "bucket",  }); 
    
/* 
Tests a set of permissions on the given bucket to see which, if any, are held by the caller.  
*/
await gapi.client.buckets.testIamPermissions({ bucket: "bucket", permissions: "permissions",  }); 
    
/* 
Updates a bucket. Changes to the bucket will be readable immediately after writing, but configuration changes may take time to propagate.  
*/
await gapi.client.buckets.update({ bucket: "bucket",  }); 
    
/* 
Stop watching resources through this channel  
*/
await gapi.client.channels.stop({  }); 
    
/* 
Permanently deletes the default object ACL entry for the specified entity on the specified bucket.  
*/
await gapi.client.defaultObjectAccessControls.delete({ bucket: "bucket", entity: "entity",  }); 
    
/* 
Returns the default object ACL entry for the specified entity on the specified bucket.  
*/
await gapi.client.defaultObjectAccessControls.get({ bucket: "bucket", entity: "entity",  }); 
    
/* 
Creates a new default object ACL entry on the specified bucket.  
*/
await gapi.client.defaultObjectAccessControls.insert({ bucket: "bucket",  }); 
    
/* 
Retrieves default object ACL entries on the specified bucket.  
*/
await gapi.client.defaultObjectAccessControls.list({ bucket: "bucket",  }); 
    
/* 
Updates a default object ACL entry on the specified bucket. This method supports patch semantics.  
*/
await gapi.client.defaultObjectAccessControls.patch({ bucket: "bucket", entity: "entity",  }); 
    
/* 
Updates a default object ACL entry on the specified bucket.  
*/
await gapi.client.defaultObjectAccessControls.update({ bucket: "bucket", entity: "entity",  }); 
    
/* 
Permanently deletes a notification subscription.  
*/
await gapi.client.notifications.delete({ bucket: "bucket", notification: "notification",  }); 
    
/* 
View a notification configuration.  
*/
await gapi.client.notifications.get({ bucket: "bucket", notification: "notification",  }); 
    
/* 
Creates a notification subscription for a given bucket.  
*/
await gapi.client.notifications.insert({ bucket: "bucket",  }); 
    
/* 
Retrieves a list of notification subscriptions for a given bucket.  
*/
await gapi.client.notifications.list({ bucket: "bucket",  }); 
    
/* 
Permanently deletes the ACL entry for the specified entity on the specified object.  
*/
await gapi.client.objectAccessControls.delete({ bucket: "bucket", entity: "entity", object: "object",  }); 
    
/* 
Returns the ACL entry for the specified entity on the specified object.  
*/
await gapi.client.objectAccessControls.get({ bucket: "bucket", entity: "entity", object: "object",  }); 
    
/* 
Creates a new ACL entry on the specified object.  
*/
await gapi.client.objectAccessControls.insert({ bucket: "bucket", object: "object",  }); 
    
/* 
Retrieves ACL entries on the specified object.  
*/
await gapi.client.objectAccessControls.list({ bucket: "bucket", object: "object",  }); 
    
/* 
Updates an ACL entry on the specified object. This method supports patch semantics.  
*/
await gapi.client.objectAccessControls.patch({ bucket: "bucket", entity: "entity", object: "object",  }); 
    
/* 
Updates an ACL entry on the specified object.  
*/
await gapi.client.objectAccessControls.update({ bucket: "bucket", entity: "entity", object: "object",  }); 
    
/* 
Concatenates a list of existing objects into a new object in the same bucket.  
*/
await gapi.client.objects.compose({ destinationBucket: "destinationBucket", destinationObject: "destinationObject",  }); 
    
/* 
Copies a source object to a destination object. Optionally overrides metadata.  
*/
await gapi.client.objects.copy({ destinationBucket: "destinationBucket", destinationObject: "destinationObject", sourceBucket: "sourceBucket", sourceObject: "sourceObject",  }); 
    
/* 
Deletes an object and its metadata. Deletions are permanent if versioning is not enabled for the bucket, or if the generation parameter is used.  
*/
await gapi.client.objects.delete({ bucket: "bucket", object: "object",  }); 
    
/* 
Retrieves an object or its metadata.  
*/
await gapi.client.objects.get({ bucket: "bucket", object: "object",  }); 
    
/* 
Returns an IAM policy for the specified object.  
*/
await gapi.client.objects.getIamPolicy({ bucket: "bucket", object: "object",  }); 
    
/* 
Stores a new object and metadata.  
*/
await gapi.client.objects.insert({ bucket: "bucket",  }); 
    
/* 
Retrieves a list of objects matching the criteria.  
*/
await gapi.client.objects.list({ bucket: "bucket",  }); 
    
/* 
Updates an object's metadata. This method supports patch semantics.  
*/
await gapi.client.objects.patch({ bucket: "bucket", object: "object",  }); 
    
/* 
Rewrites a source object to a destination object. Optionally overrides metadata.  
*/
await gapi.client.objects.rewrite({ destinationBucket: "destinationBucket", destinationObject: "destinationObject", sourceBucket: "sourceBucket", sourceObject: "sourceObject",  }); 
    
/* 
Updates an IAM policy for the specified object.  
*/
await gapi.client.objects.setIamPolicy({ bucket: "bucket", object: "object",  }); 
    
/* 
Tests a set of permissions on the given object to see which, if any, are held by the caller.  
*/
await gapi.client.objects.testIamPermissions({ bucket: "bucket", object: "object", permissions: "permissions",  }); 
    
/* 
Updates an object's metadata.  
*/
await gapi.client.objects.update({ bucket: "bucket", object: "object",  }); 
    
/* 
Watch for changes on all objects in a bucket.  
*/
await gapi.client.objects.watchAll({ bucket: "bucket",  });