0.0.20240504 • Published 3 days ago

@maxim_mazurok/gapi.client.oslogin-v1 v0.0.20240504

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

TypeScript typings for Cloud OS Login API v1

You can use OS Login to manage access to your VM instances using IAM roles. For detailed description please check documentation.

Installing

Install typings for Cloud OS Login API:

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

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',

    // View your data across Google Cloud services and see the email address of your Google Account
    'https://www.googleapis.com/auth/cloud-platform.read-only',

    // View and manage your Google Compute Engine resources
    'https://www.googleapis.com/auth/compute',

    // View your Google Compute Engine resources
    'https://www.googleapis.com/auth/compute.readonly',
  ],
  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 OS Login API resources:

/*
Retrieves the profile information used for logging in to a virtual machine on Google Compute Engine.
*/
await gapi.client.oslogin.users.getLoginProfile({name: 'name'});

/*
Adds an SSH public key and returns the profile information. Default POSIX account information is set when no username and UID exist as part of the login profile.
*/
await gapi.client.oslogin.users.importSshPublicKey({parent: 'parent'});
0.0.20240504

3 days ago

0.0.20240427

10 days ago

0.0.20240420

17 days ago

0.0.20240414

22 days ago

0.0.20240326

1 month ago

0.0.20240308

2 months ago

0.0.20240303

2 months ago

0.0.20240225

2 months ago

0.0.20240216

3 months ago

0.0.20240211

3 months ago

0.0.20240128

3 months ago

0.0.20240121

4 months ago

0.0.20240107

4 months ago

0.0.20231217

5 months ago

0.0.20231203

5 months ago

0.0.20231112

5 months ago

0.0.20230917

8 months ago

0.0.20230816

9 months ago

0.0.20230618

11 months ago

0.0.20231029

6 months ago

0.0.20230910

8 months ago

0.0.20231008

7 months ago

0.0.20230716

10 months ago

0.0.20230708

10 months ago

0.0.20230806

9 months ago

0.0.20230729

9 months ago

0.0.20230924

8 months ago

0.0.20230903

8 months ago

0.0.20231001

7 months ago

0.0.20231022

7 months ago

0.0.20231103

6 months ago

0.0.20230521

12 months ago

0.0.20230603

11 months ago

0.0.20230505

12 months ago

0.0.20230428

1 year ago

0.0.20230415

1 year ago

0.0.20230317

1 year ago

0.0.20230326

1 year ago

0.0.20230304

1 year ago

0.0.20230426

1 year ago

0.0.20230408

1 year ago

0.0.20230311

1 year ago

0.0.20230331

1 year ago

0.0.20230203

1 year ago

0.0.20230210

1 year ago

0.0.20230107

1 year ago

0.0.20221104

2 years ago

0.0.20230115

1 year ago

0.0.20221202

1 year ago

0.0.20221111

1 year ago

0.0.20221209

1 year ago

0.0.20230122

1 year ago

0.0.20221216

1 year ago

0.0.20221031

2 years ago

0.0.20221016

2 years ago

0.0.20221024

2 years ago

0.0.20220926

2 years ago

0.0.20220916

2 years ago

0.0.20220829

2 years ago

0.0.20220819

2 years ago

0.0.20220813

2 years ago

0.0.20220806

2 years ago