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