Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

KerberosConfig

import type { KerberosConfig } from "https://googleapis.deno.dev/v1/metastore:v1.ts";

Configuration information for a Kerberos principal.

interface KerberosConfig {
keytab?: Secret;
krb5ConfigGcsUri?: string;
principal?: string;
}

§Properties

§
keytab?: Secret
[src]

A Kerberos keytab file that can be used to authenticate a service principal with a Kerberos Key Distribution Center (KDC).

§
krb5ConfigGcsUri?: string
[src]

A Cloud Storage URI that specifies the path to a krb5.conf file. It is of the form gs://{bucket_name}/path/to/krb5.conf, although the file does not need to be named krb5.conf explicitly.

§
principal?: string
[src]

A Kerberos principal that exists in the both the keytab the KDC to authenticate as. A typical principal is of the form primary/instance@REALM, but there is no exact format.