0.0.20240424 • Published 9 days ago

@maxim_mazurok/gapi.client.workstations-v1beta v0.0.20240424

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

TypeScript typings for Cloud Workstations API v1beta

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-v1beta --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=v1beta',
  () => {
    // 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', 'v1beta', () => {
  // 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.20240424

9 days ago

0.0.20240417

16 days ago

0.0.20240409

26 days ago

0.0.20240318

1 month ago

0.0.20240301

2 months ago

0.0.20240221

2 months ago

0.0.20240131

3 months ago

0.0.20240130

3 months ago

0.0.20240117

4 months ago

0.0.20240101

4 months ago

0.0.20231129

5 months ago

0.0.20230717

10 months ago

0.0.20231011

7 months ago

0.0.20230904

8 months ago

0.0.20231018

7 months ago

0.0.20230726

9 months ago

0.0.20230925

8 months ago

0.0.20230802

9 months ago

0.0.20231001

7 months ago

0.0.20230630

10 months ago

0.0.20231101

6 months ago

0.0.20230607

11 months ago

0.0.20230619

11 months ago

0.0.20230501

1 year ago

0.0.20230517

12 months ago

0.0.20230531

11 months ago

0.0.20230510

12 months ago

0.0.20230327

1 year ago

0.0.20230423

1 year ago

0.0.20230412

1 year ago

0.0.20230314

1 year ago

0.0.20230308

1 year ago

0.0.20230405

1 year ago

0.0.20230301

1 year ago

0.0.20230220

1 year ago

0.0.20230201

1 year ago

0.0.20230208

1 year ago

0.0.20230113

1 year ago

0.0.20230105

1 year ago

0.0.20221214

1 year ago