0.0.20240509 • Published 12 days ago

@maxim_mazurok/gapi.client.admin-datatransfer_v1 v0.0.20240509

Weekly downloads
-
License
MIT
Repository
github
Last release
12 days ago

TypeScript typings for Admin SDK API datatransfer_v1

Admin SDK lets administrators of enterprise domains to view and manage resources like user, groups etc. It also provides audit and usage reports of domain. For detailed description please check documentation.

Installing

Install typings for Admin SDK API:

npm install @types/gapi.client.admin-datatransfer_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://admin.googleapis.com/$discovery/rest?version=datatransfer_v1',
  () => {
    // now we can use:
    // gapi.client.datatransfer
  }
);
// 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('admin', 'datatransfer_v1', () => {
  // now we can use:
  // gapi.client.datatransfer
});

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 data transfers between users in your organization
    'https://www.googleapis.com/auth/admin.datatransfer',

    // View data transfers between users in your organization
    'https://www.googleapis.com/auth/admin.datatransfer.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 Admin SDK API resources:

/*
Retrieves information about an application for the given application ID.
*/
await gapi.client.datatransfer.applications.get({
  applicationId: 'applicationId',
});

/*
Lists the applications available for data transfer for a customer.
*/
await gapi.client.datatransfer.applications.list({});

/*
Retrieves a data transfer request by its resource ID.
*/
await gapi.client.datatransfer.transfers.get({
  dataTransferId: 'dataTransferId',
});

/*
Inserts a data transfer request. See the [Transfer parameters](/admin-sdk/data-transfer/v1/parameters) reference for specific application requirements.
*/
await gapi.client.datatransfer.transfers.insert({});

/*
Lists the transfers for a customer by source user, destination user, or status.
*/
await gapi.client.datatransfer.transfers.list({});
0.0.20240509

12 days ago

0.0.20240507

13 days ago

0.0.20240429

20 days ago

0.0.20240423

28 days ago

0.0.20240409

1 month ago

0.0.20240402

2 months ago

0.0.20240326

2 months ago

0.0.20240321

2 months ago

0.0.20240312

2 months ago

0.0.20240304

3 months ago

0.0.20240227

3 months ago

0.0.20240220

3 months ago

0.0.20240206

3 months ago

0.0.20240130

4 months ago

0.0.20240123

4 months ago

0.0.20240116

4 months ago

0.0.20240102

5 months ago

0.0.20231219

5 months ago

0.0.20231128

6 months ago

0.0.20231107

7 months ago

0.0.20230814

9 months ago

0.0.20230815

9 months ago

0.0.20231031

7 months ago

0.0.20231113

6 months ago

0.0.20230807

10 months ago

0.0.20231017

7 months ago

0.0.20230724

10 months ago

0.0.20230802

10 months ago

0.0.20231023

7 months ago

0.0.20230918

8 months ago

0.0.20230711

10 months ago

0.0.20231127

6 months ago

0.0.20230712

10 months ago

0.0.20230914

8 months ago

0.0.20230911

8 months ago

0.0.20230829

9 months ago

0.0.20230905

9 months ago

0.0.20231117

6 months ago

0.0.20230822

9 months ago

0.0.20230704

11 months ago

0.0.20231005

7 months ago

0.0.20230626

11 months ago

0.0.20230619

11 months ago

0.0.20230612

11 months ago

0.0.20230516

1 year ago

0.0.20230426

1 year ago

0.0.20230523

12 months ago

0.0.20230528

12 months ago

0.0.20230606

12 months ago

0.0.20230316

1 year ago

0.0.20230314

1 year ago

0.0.20230321

1 year ago

0.0.20230425

1 year ago

0.0.20230407

1 year ago

0.0.20230306

1 year ago

0.0.20230406

1 year ago

0.0.20230307

1 year ago

0.0.20230207

1 year ago

0.0.20230131

1 year ago

0.0.20230212

1 year ago

0.0.20230117

1 year ago

0.0.20221115

2 years ago

0.0.20221122

1 year ago

0.0.20230110

1 year ago

0.0.20230124

1 year ago

0.0.20221109

2 years ago

0.0.20230103

1 year ago

0.0.20221108

2 years ago

0.0.20221129

1 year ago

0.0.20221205

1 year ago

0.0.20221020

2 years ago

0.0.20221004

2 years ago

0.0.20220927

2 years ago

0.0.20221018

2 years ago

0.0.20220905

2 years ago

0.0.20220919

2 years ago

0.0.20220830

2 years ago

0.0.20220823

2 years ago

0.0.20220913

2 years ago

0.0.20220816

2 years ago

0.0.20220809

2 years ago