0.0.20240501 • Published 1 day ago

@maxim_mazurok/gapi.client.vault-v1 v0.0.20240501

Weekly downloads
-
License
MIT
Repository
github
Last release
1 day ago

TypeScript typings for Google Vault API v1

Retention and eDiscovery for Google Workspace. To work with Vault resources, the account must have the required Vault privileges and access to the matter. To access a matter, the account must have created the matter, have the matter shared with them, or have the View All Matters privilege. For example, to download an export, an account needs the Manage Exports privilege and the matter shared with them. For detailed description please check documentation.

Installing

Install typings for Google Vault API:

npm install @types/gapi.client.vault-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(
  'https://vault.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.vault
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('vault', 'v1', () => {
  // now we can use:
  // gapi.client.vault
});

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 = [
    // Manage your eDiscovery data
    'https://www.googleapis.com/auth/ediscovery',

    // View your eDiscovery data
    'https://www.googleapis.com/auth/ediscovery.readonly',
  ],
  immediate = true;
// ...

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

After that you can use Google Vault API resources:

/*
Adds an account as a matter collaborator.
*/
await gapi.client.vault.matters.addPermissions({matterId: 'matterId'});

/*
Closes the specified matter. Returns the matter with updated state.
*/
await gapi.client.vault.matters.close({matterId: 'matterId'});

/*
Counts the accounts processed by the specified query.
*/
await gapi.client.vault.matters.count({matterId: 'matterId'});

/*
Creates a matter with the given name and description. The initial state is open, and the owner is the method caller. Returns the created matter with default view.
*/
await gapi.client.vault.matters.create({});

/*
Deletes the specified matter. Returns the matter with updated state.
*/
await gapi.client.vault.matters.delete({matterId: 'matterId'});

/*
Gets the specified matter.
*/
await gapi.client.vault.matters.get({matterId: 'matterId'});

/*
Lists matters the requestor has access to.
*/
await gapi.client.vault.matters.list({});

/*
Removes an account as a matter collaborator.
*/
await gapi.client.vault.matters.removePermissions({matterId: 'matterId'});

/*
Reopens the specified matter. Returns the matter with updated state.
*/
await gapi.client.vault.matters.reopen({matterId: 'matterId'});

/*
Undeletes the specified matter. Returns the matter with updated state.
*/
await gapi.client.vault.matters.undelete({matterId: 'matterId'});

/*
Updates the specified matter. This updates only the name and description of the matter, identified by matter ID. Changes to any other fields are ignored. Returns the default view of the matter.
*/
await gapi.client.vault.matters.update({matterId: 'matterId'});

/*
Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
*/
await gapi.client.vault.operations.cancel({name: 'name'});

/*
Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
*/
await gapi.client.vault.operations.delete({name: 'name'});

/*
Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
*/
await gapi.client.vault.operations.get({name: 'name'});

/*
Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.
*/
await gapi.client.vault.operations.list({name: 'name'});
0.0.20240501

1 day ago

0.0.20240419

9 days ago

0.0.20240415

21 days ago

0.0.20240402

28 days ago

0.0.20240401

1 month ago

0.0.20240315

1 month ago

0.0.20240311

2 months ago

0.0.20240226

2 months ago

0.0.20240220

3 months ago

0.0.20240206

3 months ago

0.0.20240124

3 months ago

0.0.20240117

4 months ago

0.0.20240110

4 months ago

0.0.20231213

5 months ago

0.0.20231211

5 months ago

0.0.20231121

5 months ago

0.0.20230816

9 months ago

0.0.20231107

6 months ago

0.0.20231109

6 months ago

0.0.20230815

9 months ago

0.0.20230807

9 months ago

0.0.20231018

7 months ago

0.0.20230921

8 months ago

0.0.20230925

7 months ago

0.0.20230724

9 months ago

0.0.20231102

6 months ago

0.0.20231024

6 months ago

0.0.20230711

10 months ago

0.0.20230911

8 months ago

0.0.20230829

8 months ago

0.0.20231116

6 months ago

0.0.20230628

10 months ago

0.0.20230823

9 months ago

0.0.20231004

7 months ago

0.0.20230626

11 months ago

0.0.20230613

11 months ago

0.0.20230517

12 months ago

0.0.20230601

11 months ago

0.0.20230524

12 months ago

0.0.20230426

1 year ago

0.0.20230510

12 months ago

0.0.20230412

1 year ago

0.0.20230323

1 year ago

0.0.20230227

1 year ago

0.0.20230424

1 year ago

0.0.20230303

1 year ago

0.0.20230405

1 year ago

0.0.20230328

1 year ago

0.0.20230203

1 year ago

0.0.20230201

1 year ago

0.0.20230221

1 year ago

0.0.20221214

1 year ago

0.0.20230105

1 year ago

0.0.20221123

1 year ago

0.0.20221110

1 year ago

0.0.20221206

1 year ago

0.0.20230123

1 year ago

0.0.20221117

1 year ago

0.0.20221020

2 years ago

0.0.20221006

2 years ago

0.0.20221026

2 years ago

0.0.20221004

2 years ago

0.0.20221102

2 years ago

0.0.20220922

2 years ago

0.0.20220818

2 years ago

0.0.20220907

2 years ago

0.0.20220831

2 years ago

0.0.20220826

2 years ago

0.0.20220915

2 years ago

0.0.20220728

2 years ago