0.0.20240423 • Published 20 days ago

@maxim_mazurok/gapi.client.bigqueryconnection-v1beta1 v0.0.20240423

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

TypeScript typings for BigQuery Connection API v1beta1

Allows users to manage BigQuery connections to external data sources. For detailed description please check documentation.

Installing

Install typings for BigQuery Connection API:

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

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 in Google BigQuery and see the email address for your Google Account
    'https://www.googleapis.com/auth/bigquery',

    // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
    'https://www.googleapis.com/auth/cloud-platform',
  ],
  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 BigQuery Connection API resources:

0.0.20240423

20 days ago

0.0.20240418

25 days ago

0.0.20240323

2 months ago

0.0.20240229

2 months ago

0.0.20240214

3 months ago

0.0.20240211

3 months ago

0.0.20240203

3 months ago

0.0.20240124

4 months ago

0.0.20240106

4 months ago

0.0.20231209

5 months ago

0.0.20231203

6 months ago

0.0.20231009

7 months ago

0.0.20230715

10 months ago

0.0.20230812

9 months ago

0.0.20231112

6 months ago

0.0.20231013

7 months ago

0.0.20231030

7 months ago

0.0.20230708

10 months ago

0.0.20230926

8 months ago

0.0.20230806

9 months ago

0.0.20231021

7 months ago

0.0.20230625

11 months ago

0.0.20230618

11 months ago

0.0.20230614

11 months ago

0.0.20230520

12 months ago

0.0.20230506

1 year ago

0.0.20230326

1 year ago

0.0.20230304

1 year ago

0.0.20230423

1 year ago

0.0.20230402

1 year ago

0.0.20230226

1 year ago

0.0.20230319

1 year ago

0.0.20230408

1 year ago

0.0.20230312

1 year ago

0.0.20230205

1 year ago

0.0.20230129

1 year ago

0.0.20230219

1 year ago

0.0.20230211

1 year ago

0.0.20230121

1 year ago

0.0.20230107

1 year ago

0.0.20230115

1 year ago

0.0.20220819

2 years ago

0.0.20220910

2 years ago

0.0.20220913

2 years ago

0.0.20220903

2 years ago

0.0.20220826

2 years ago

0.0.20220812

2 years ago

0.0.20220807

2 years ago