Socket
Socket
Sign inDemoInstall

@google-cloud/kms

Package Overview
Dependencies
119
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @google-cloud/kms

Google Cloud Key Management Service (KMS) API client for Node.js


Version published
Maintainers
1
Created

Readme

Source

Google Cloud Platform logo

Google Cloud Key Management Service: Node.js Client

release level npm version codecov

Google Cloud Key Management Service (KMS) API client for Node.js

Read more about the client libraries for Cloud APIs, including the older Google APIs Client Libraries, in Client Libraries Explained.

Table of contents:

Quickstart

Before you begin

  1. Select or create a Cloud Platform project.
  2. Enable billing for your project.
  3. Enable the Google Cloud Key Management Service API.
  4. Set up authentication with a service account so you can access the API from your local workstation.

Installing the client library

npm install @google-cloud/kms

Using the client library

async function quickstart(
  projectId = 'your-project-id' // Your GCP projectId
) {
  // Imports the @google-cloud/kms client library
  const kms = require('@google-cloud/kms');

  // Instantiates an authorized client
  const client = new kms.KeyManagementServiceClient();

  // Lists keys in the "global" location.
  const locationId = 'global';

  // Lists key rings
  const parent = client.locationPath(projectId, locationId);
  const [keyRings] = await client.listKeyRings({parent});

  // Display the results
  if (keyRings.length) {
    console.log('Key rings:');
    keyRings.forEach(keyRing => console.log(keyRing.name));
  } else {
    console.log(`No key rings found.`);
  }
}

Samples

Samples are in the samples/ directory. The samples' README.md has instructions for running the samples.

SampleSource CodeTry it
Add Member To Crypto Key Policysource codeOpen in Cloud Shell
Add Member To Key Ring Policysource codeOpen in Cloud Shell
Create Crypto Keysource codeOpen in Cloud Shell
Create Crypto Key Versionsource codeOpen in Cloud Shell
Create Keyringsource codeOpen in Cloud Shell
Decryptsource codeOpen in Cloud Shell
Destroy Crypto Key Versionsource codeOpen in Cloud Shell
Disable Crypto Key Versionsource codeOpen in Cloud Shell
Enable Crypto Key Versionsource codeOpen in Cloud Shell
Encryptsource codeOpen in Cloud Shell
Get Crypto Keysource codeOpen in Cloud Shell
Get Crypto Key Iam Policysource codeOpen in Cloud Shell
Get Keyringsource codeOpen in Cloud Shell
Get Keyring Iam Policysource codeOpen in Cloud Shell
List Crypto Key Versionssource codeOpen in Cloud Shell
List Crypto Keyssource codeOpen in Cloud Shell
List Keyringssource codeOpen in Cloud Shell
Quickstartsource codeOpen in Cloud Shell
Remove Member Crypto Key Policysource codeOpen in Cloud Shell
Remove Member From Key Ring Policysource codeOpen in Cloud Shell
Restore Crypto Key Versionsource codeOpen in Cloud Shell
Set Primary Crypto Key Versionsource codeOpen in Cloud Shell

The Google Cloud Key Management Service Node.js Client API Reference documentation also contains samples.

Versioning

This library follows Semantic Versioning.

This library is considered to be in beta. This means it is expected to be mostly stable while we work toward a general availability release; however, complete stability is not guaranteed. We will address issues and requests against beta libraries with a high priority.

More Information: Google Cloud Platform Launch Stages

Contributing

Contributions welcome! See the Contributing Guide.

License

Apache Version 2.0

See LICENSE

Keywords

FAQs

Last updated on 20 May 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc