0.0.20241010 • Published 10 months ago

@maxim_mazurok/gapi.client.workstations-v1 v0.0.20241010

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

TypeScript typings for Cloud Workstations API v1

Allows administrators to create managed developer environments in the cloud. For detailed description please check documentation.

Installing

Install typings for Cloud Workstations API:

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

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

0.0.20241010

10 months ago

0.0.20241009

10 months ago

0.0.20240916

11 months ago

0.0.20240904

11 months ago

0.0.20240821

12 months ago

0.0.20240709

1 year ago

0.0.20240805

12 months ago

0.0.20240723

1 year ago

0.0.20240803

1 year ago

0.0.20240528

1 year ago

0.0.20240820

12 months ago

0.0.20240520

1 year ago

0.0.20240716

1 year ago

0.0.20240619

1 year ago

0.0.20240508

1 year ago

0.0.20240424

1 year ago

0.0.20240417

1 year ago

0.0.20240409

1 year ago

0.0.20240318

1 year ago

0.0.20240301

1 year ago

0.0.20240221

1 year ago

0.0.20240131

2 years ago

0.0.20240130

2 years ago

0.0.20240117

2 years ago

0.0.20240101

2 years ago

0.0.20231129

2 years ago

0.0.20231101

2 years ago

0.0.20231018

2 years ago

0.0.20231011

2 years ago

0.0.20231001

2 years ago

0.0.20230925

2 years ago

0.0.20230904

2 years ago

0.0.20230802

2 years ago