@confluentinc/schemaregistry
Version:
Node.js client for Confluent Schema Registry
13 lines (12 loc) • 419 B
TypeScript
import { KmsClient, KmsDriver } from "../kms-registry";
export declare class HcVaultDriver implements KmsDriver {
static PREFIX: string;
static TOKEN_ID: string;
static NAMESPACE: string;
/**
* Register the HashiCorp Vault driver with the KMS registry.
*/
static register(): void;
getKeyUrlPrefix(): string;
newKmsClient(config: Map<string, string>, keyUrl?: string): KmsClient;
}