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

GoldengateKafkaSchemaRegistryConnectionProperties

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

The properties of GoldengateKafkaSchemaRegistryConnection.

interface GoldengateKafkaSchemaRegistryConnectionProperties {
authenticationType?:
| "AUTHENTICATION_TYPE_UNSPECIFIED"
| "NONE"
| "BASIC"
| "MUTUAL";
keyStoreFile?: string;
keyStorePassword?: string;
keyStorePasswordSecretVersion?: string;
password?: string;
passwordSecretVersion?: string;
sslKeyPassword?: string;
sslKeyPasswordSecretVersion?: string;
technologyType?: string;
trustStoreFile?: string;
trustStorePassword?: string;
trustStorePasswordSecretVersion?: string;
url?: string;
username?: string;
}

§Properties

§
authenticationType?: "AUTHENTICATION_TYPE_UNSPECIFIED" | "NONE" | "BASIC" | "MUTUAL"
[src]

Optional. Used authentication mechanism to access Schema Registry.

§
keyStoreFile?: string
[src]

Optional. The content of the KeyStore file.

§
keyStorePassword?: string
[src]

Optional. Input only. The KeyStore password in plain text.

§
keyStorePasswordSecretVersion?: string
[src]

Optional. Input only. The resource name of a secret version in Secret Manager which contains the KeyStore password. Format: projects/{project}/secrets/{secret}/versions/{version}.

§
password?: string
[src]

Optional. Input only. The password to access Schema Registry in plain text.

§
passwordSecretVersion?: string
[src]

Optional. Input only. The resource name of a secret version in Secret Manager which contains the password to access Schema Registry using basic authentication. Format: projects/{project}/secrets/{secret}/versions/{version}.

§
sslKeyPassword?: string
[src]

Optional. Input only. The password for the cert inside the KeyStore in plain text.

§
sslKeyPasswordSecretVersion?: string
[src]

Optional. Input only. The resource name of a secret version in Secret Manager which contains the password for the cert inside the KeyStore. Format: projects/{project}/secrets/{secret}/versions/{version}.

§
technologyType?: string
[src]

Optional. The technology type of KafkaSchemaRegistryConnection.

§
trustStoreFile?: string
[src]

Optional. The content of the TrustStore file.

§
trustStorePassword?: string
[src]

Optional. Input only. The TrustStore password in plain text.

§
trustStorePasswordSecretVersion?: string
[src]

Optional. Input only. The resource name of a secret version in Secret Manager which contains the TrustStore password. Format: projects/{project}/secrets/{secret}/versions/{version}.

§
url?: string
[src]

Optional. Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'

§
username?: string
[src]

Optional. The username to access Schema Registry using basic authentication. This value is injected into 'schema.registry.basic.auth.user.info=user:password' configuration property.