npm.io
0.3.20260911 • Published 5d ago

@maxim_mazurok/gapi.client.cloudbilling-v1beta

Licence
MIT
Version
0.3.20260911
Deps
2
Size
68 kB
Vulns
0
Weekly
0
Stars
59

TypeScript typings for Cloud Billing API v1beta

Allows developers to manage billing for their Google Cloud Platform projects programmatically. For detailed description please check documentation.

Installing

Install typings for Cloud Billing API:

npm install @types/gapi.client.cloudbilling-v1beta --save-dev

TypeScript 6.0+

TypeScript 6.0 changed types to default to []. You must now explicitly list type packages in tsconfig.json:

{
  "compilerOptions": {
    "types": [
      "gapi",
      "gapi.auth2",
      "gapi.client",
      "gapi.client.cloudbilling-v1beta"
    ]
  }
}

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

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 Google Cloud Platform billing accounts
    'https://www.googleapis.com/auth/cloud-billing',

    // View your Google Cloud Platform billing accounts
    'https://www.googleapis.com/auth/cloud-billing.readonly',

    // 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 Cloud Billing API resources:

/*
Gets a publicly listed SKU group.
*/
await gapi.client.cloudbilling.skuGroups.get({name: 'name'});

/*
Lists all publicly listed SKU groups.
*/
await gapi.client.cloudbilling.skuGroups.list({});

/*
Analyzes cost data for a billing account and/or specific projects. Returns a natural language summary and supporting datasets.
*/
await gapi.client.cloudbilling.generateInsights({});

For provenance information see Provenance section on NPM