# @maxim_mazurok/gapi.client.cloudkms-v1

> TypeScript typings for Cloud Key Management Service (KMS) API v1

Latest version **0.3.20260903** (published 2026-09-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install @maxim_mazurok/gapi.client.cloudkms-v1
pnpm add @maxim_mazurok/gapi.client.cloudkms-v1
yarn add @maxim_mazurok/gapi.client.cloudkms-v1
bun add @maxim_mazurok/gapi.client.cloudkms-v1
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads; no esm support; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.3.20260903 |
| Published | 2026-09-12 |
| First published | 2022-08-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 318.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 59 |
| Author | Maxim Mazurok |
| Maintainers | maxim_mazurok |

## Links

- npm: https://www.npmjs.com/package/@maxim_mazurok/gapi.client.cloudkms-v1
- Repository: https://github.com/Maxim-Mazurok/google-api-typings-generator
- Homepage: https://github.com/Maxim-Mazurok/google-api-typings-generator#readme
- Issues: https://github.com/Maxim-Mazurok/google-api-typings-generator/issues
- npm.io page: https://npm.io/package/@maxim_mazurok/gapi.client.cloudkms-v1

## Dependencies (2)

- [@types/gapi.client](https://npm.io/package/@types/gapi.client.md) *
- [@types/gapi.client.discovery-v1](https://npm.io/package/@types/gapi.client.discovery-v1.md) *

## Recent versions

- 0.3.20260903 (latest) — 2026-09-12
- 0.3.20260827 — 2026-09-03
- 0.3.20260821 — 2026-08-29
- 0.3.20260814 — 2026-08-20
- 0.3.20260806 — 2026-08-12
- 0.3.20260803 — 2026-08-07
- 0.3.20260721 — 2026-07-25
- 0.3.20260709 — 2026-07-16
- 0.3.20260702 — 2026-07-08
- 0.3.20260611 — 2026-06-29
- 0.2.20260611 — 2026-06-18
- 0.2.20260608 — 2026-06-11
- 0.2.20260522 — 2026-06-07
- 0.2.20260226 — 2026-03-18
- 0.1.20260226 — 2026-03-06
- … 130 more at https://npm.io/package/@maxim_mazurok/gapi.client.cloudkms-v1/versions

## README

# TypeScript typings for Cloud Key Management Service (KMS) API v1

Manages keys and performs cryptographic operations in a central cloud service, for direct use by other cloud resources and applications.
For detailed description please check [documentation](https://cloud.google.com/kms/).

## Installing

Install typings for Cloud Key Management Service (KMS) API:

```
npm install @types/gapi.client.cloudkms-v1 --save-dev
```

## TypeScript 6.0+

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

```json
{
  "compilerOptions": {
    "types": ["gapi", "gapi.auth2", "gapi.client", "gapi.client.cloudkms-v1"]
  }
}
```

## Usage

You need to initialize Google API client in your code:

```typescript
gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});
```

Then load api client wrapper:

```typescript
gapi.client.load(
  'https://cloudkms.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.cloudkms
  },
);
```

```typescript
// 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('cloudkms', 'v1', () => {
  // now we can use:
  // gapi.client.cloudkms
});
```

Don't forget to authenticate your client before sending any request to resources:

```typescript
// 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 and manage your keys and secrets stored in Cloud Key Management Service
    'https://www.googleapis.com/auth/cloudkms',
  ],
  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 Key Management Service (KMS) API resources: <!-- TODO: make this work for multiple namespaces -->

```typescript
/*
Returns the AutokeyConfig for a folder or project.
*/
await gapi.client.cloudkms.folders.getAutokeyConfig({name: 'name'});

/*
Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
*/
await gapi.client.cloudkms.folders.getKajPolicyConfig({name: 'name'});

/*
Returns the effective Cloud KMS Autokey configuration for a given project or folder. Note on permissions: - If called on a project (`projects/{project}`), requires `cloudkms.projects.showEffectiveAutokeyConfig`. - If called on a folder (`folders/{folder}`), requires `cloudkms.folders.showEffectiveAutokeyConfig`.
*/
await gapi.client.cloudkms.folders.showEffectiveAutokeyConfig({
  parent: 'parent',
});

/*
Updates the AutokeyConfig for a folder or a project. The caller must have both `cloudkms.autokeyConfigs.update` permission on the parent folder and `cloudkms.cryptoKeys.setIamPolicy` permission on the provided key project. A KeyHandle creation in the folder's descendant projects will use this configuration to determine where to create the resulting CryptoKey.
*/
await gapi.client.cloudkms.folders.updateAutokeyConfig({name: 'name'});

/*
Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
*/
await gapi.client.cloudkms.folders.updateKajPolicyConfig({name: 'name'});

/*
Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
*/
await gapi.client.cloudkms.organizations.getKajPolicyConfig({name: 'name'});

/*
Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
*/
await gapi.client.cloudkms.organizations.updateKajPolicyConfig({name: 'name'});

/*
Returns the AutokeyConfig for a folder or project.
*/
await gapi.client.cloudkms.projects.getAutokeyConfig({name: 'name'});

/*
Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
*/
await gapi.client.cloudkms.projects.getKajPolicyConfig({name: 'name'});

/*
Returns the effective Cloud KMS Autokey configuration for a given project or folder. Note on permissions: - If called on a project (`projects/{project}`), requires `cloudkms.projects.showEffectiveAutokeyConfig`. - If called on a folder (`folders/{folder}`), requires `cloudkms.folders.showEffectiveAutokeyConfig`.
*/
await gapi.client.cloudkms.projects.showEffectiveAutokeyConfig({
  parent: 'parent',
});

/*
Returns the KeyAccessJustificationsEnrollmentConfig of the resource closest to the given project in hierarchy.
*/
await gapi.client.cloudkms.projects.showEffectiveKeyAccessJustificationsEnrollmentConfig(
  {project: 'project'},
);

/*
Returns the KeyAccessJustificationsPolicyConfig of the resource closest to the given project in hierarchy.
*/
await gapi.client.cloudkms.projects.showEffectiveKeyAccessJustificationsPolicyConfig(
  {project: 'project'},
);

/*
Updates the AutokeyConfig for a folder or a project. The caller must have both `cloudkms.autokeyConfigs.update` permission on the parent folder and `cloudkms.cryptoKeys.setIamPolicy` permission on the provided key project. A KeyHandle creation in the folder's descendant projects will use this configuration to determine where to create the resulting CryptoKey.
*/
await gapi.client.cloudkms.projects.updateAutokeyConfig({name: 'name'});

/*
Updates the KeyAccessJustificationsPolicyConfig for a given organization, folder, or project.
*/
await gapi.client.cloudkms.projects.updateKajPolicyConfig({name: 'name'});
```

For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.cloudkms-v1#Provenance:~:text=none-,Provenance,-Built%20and%20signed)

---
_Source: https://npm.io/package/@maxim_mazurok/gapi.client.cloudkms-v1 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
