0.0.20240512 • Published 8 days ago

@maxim_mazurok/gapi.client.kmsinventory-v1 v0.0.20240512

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

TypeScript typings for KMS Inventory API v1

For detailed description please check documentation.

Installing

Install typings for KMS Inventory API:

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

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 KMS Inventory API resources:

0.0.20240512

8 days ago

0.0.20240505

15 days ago

0.0.20240427

22 days ago

0.0.20240420

29 days ago

0.0.20240414

1 month ago

0.0.20240324

2 months ago

0.0.20240317

2 months ago

0.0.20240310

2 months ago

0.0.20240303

3 months ago

0.0.20240225

3 months ago

0.0.20240218

3 months ago

0.0.20240211

3 months ago

0.0.20240204

4 months ago

0.0.20240128

4 months ago

0.0.20240120

4 months ago

0.0.20240113

4 months ago

0.0.20240107

4 months ago

0.0.20231210

5 months ago

0.0.20231203

6 months ago

0.0.20230917

8 months ago

0.0.20231029

7 months ago

0.0.20231105

7 months ago

0.0.20230910

8 months ago

0.0.20231008

7 months ago

0.0.20230716

10 months ago

0.0.20230812

9 months ago

0.0.20231112

6 months ago

0.0.20231015

7 months ago

0.0.20230708

11 months ago

0.0.20230806

10 months ago

0.0.20230729

10 months ago

0.0.20230723

10 months ago

0.0.20230820

9 months ago

0.0.20230903

9 months ago

0.0.20230702

11 months ago

0.0.20230923

8 months ago

0.0.20231001

8 months ago

0.0.20231022

7 months ago

0.0.20230625

11 months ago

0.0.20230618

11 months ago

0.0.20230521

12 months ago

0.0.20230514

1 year ago

0.0.20230511

1 year ago

0.0.20230611

11 months ago

0.0.20230528

12 months ago

0.0.20230429

1 year ago

0.0.20230603

12 months ago

0.0.20230415

1 year ago

0.0.20230408

1 year ago