0.0.20250604 • Published 9 months ago

@maxim_mazurok/gapi.client.config-v1 v0.0.20250604

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

TypeScript typings for Infrastructure Manager API v1

Creates and manages Google Cloud Platform resources and infrastructure. For detailed description please check documentation.

Installing

Install typings for Infrastructure Manager API:

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

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 = [
    // 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 Infrastructure Manager API resources:

0.0.20250409

11 months ago

0.0.20250528

9 months ago

0.0.20250604

9 months ago

0.0.20250205

1 year ago

0.0.20250129

1 year ago

0.0.20250521

9 months ago

0.0.20250417

10 months ago

0.0.20250219

1 year ago

0.0.20250101

1 year ago

0.0.20241106

1 year ago

0.0.20250507

10 months ago

0.0.20250108

1 year ago

0.0.20250428

10 months ago

0.0.20250423

10 months ago

0.0.20250226

12 months ago

0.0.20250319

11 months ago

0.0.20241211

1 year ago

0.0.20250115

1 year ago

0.0.20250312

11 months ago

0.0.20250122

1 year ago

0.0.20241205

1 year ago

0.0.20241023

1 year ago

0.0.20241014

1 year ago

0.0.20241009

1 year ago

0.0.20241007

1 year ago

0.0.20240918

1 year ago

0.0.20240911

1 year ago

0.0.20240904

1 year ago

0.0.20240828

1 year ago

0.0.20240821

2 years ago

0.0.20240717

2 years ago

0.0.20240619

2 years ago

0.0.20240807

2 years ago

0.0.20240708

2 years ago

0.0.20240724

2 years ago

0.0.20240515

2 years ago

0.0.20240626

2 years ago

0.0.20240527

2 years ago

0.0.20240814

2 years ago

0.0.20240605

2 years ago

0.0.20240731

2 years ago

0.0.20240710

2 years ago

0.0.20240612

2 years ago

0.0.20240508

2 years ago

0.0.20240426

2 years ago

0.0.20240424

2 years ago

0.0.20240410

2 years ago