0.0.20241027 • Published 9 months ago

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

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months 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.20241027

9 months ago

0.0.20241013

9 months ago

0.0.20240919

9 months ago

0.0.20240905

10 months ago

0.0.20240727

11 months ago

0.0.20240602

1 year ago

0.0.20240526

1 year ago

0.0.20240803

11 months ago

0.0.20240815

11 months ago

0.0.20240616

1 year ago

0.0.20240629

1 year ago

0.0.20240623

1 year ago

0.0.20240714

12 months ago

0.0.20240423

1 year ago

0.0.20240418

1 year ago

0.0.20240323

1 year ago

0.0.20240229

1 year ago

0.0.20240214

1 year ago

0.0.20240211

1 year ago

0.0.20240203

1 year ago

0.0.20240124

1 year ago

0.0.20240106

1 year ago

0.0.20231209

2 years ago

0.0.20231203

2 years ago

0.0.20231009

2 years ago

0.0.20230715

2 years ago

0.0.20230812

2 years ago

0.0.20231112

2 years ago

0.0.20231013

2 years ago

0.0.20231030

2 years ago

0.0.20230708

2 years ago

0.0.20230926

2 years ago

0.0.20230806

2 years ago

0.0.20231021

2 years ago

0.0.20230625

2 years ago

0.0.20230618

2 years ago

0.0.20230614

2 years ago

0.0.20230520

2 years ago

0.0.20230506

2 years ago

0.0.20230326

2 years ago

0.0.20230304

2 years ago

0.0.20230423

2 years ago

0.0.20230402

2 years ago

0.0.20230226

2 years ago

0.0.20230319

2 years ago

0.0.20230408

2 years ago

0.0.20230312

2 years ago

0.0.20230205

2 years ago

0.0.20230129

2 years ago

0.0.20230219

2 years ago

0.0.20230211

2 years ago

0.0.20230121

2 years ago

0.0.20230107

2 years ago

0.0.20230115

2 years ago

0.0.20220819

3 years ago

0.0.20220910

3 years ago

0.0.20220913

3 years ago

0.0.20220903

3 years ago

0.0.20220826

3 years ago

0.0.20220812

3 years ago

0.0.20220807

3 years ago