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

KafkaBootstrapServer

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

Represents a Kafka bootstrap server with host name, optional port defaults to 9092, and an optional private ip.

interface KafkaBootstrapServer {
host?: string;
port?: number;
privateIpAddress?: string;
}

§Properties

§
host?: string
[src]

Required. The name or address of a host.

§
port?: number
[src]

Optional. The port of an endpoint usually specified for a connection.

§
privateIpAddress?: string
[src]

Optional. The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.