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

DatabaseConnectionStringProfile

import type { DatabaseConnectionStringProfile } from "https://googleapis.deno.dev/v1/oracledatabase:v1.ts";
interface DatabaseConnectionStringProfile {
readonly consumerGroup?:
| "CONSUMER_GROUP_UNSPECIFIED"
| "HIGH"
| "MEDIUM"
| "LOW"
| "TP"
| "TPURGENT";
readonly displayName?: string;
readonly hostFormat?: "HOST_FORMAT_UNSPECIFIED" | "FQDN" | "IP";
readonly isRegional?: boolean;
readonly protocol?: "PROTOCOL_UNSPECIFIED" | "TCP" | "TCPS";
readonly sessionMode?: "SESSION_MODE_UNSPECIFIED" | "DIRECT" | "INDIRECT";
readonly syntaxFormat?:
| "SYNTAX_FORMAT_UNSPECIFIED"
| "LONG"
| "EZCONNECT"
| "EZCONNECTPLUS";
readonly tlsAuthentication?: "TLS_AUTHENTICATION_UNSPECIFIED" | "SERVER" | "MUTUAL";
readonly value?: string;
}

§Properties

§
readonly consumerGroup?: "CONSUMER_GROUP_UNSPECIFIED" | "HIGH" | "MEDIUM" | "LOW" | "TP" | "TPURGENT"
[src]

Output only. The current consumer group being used by the connection.

§
readonly displayName?: string
[src]

Output only. The display name for the database connection.

§
readonly hostFormat?: "HOST_FORMAT_UNSPECIFIED" | "FQDN" | "IP"
[src]

Output only. The host name format being currently used in connection string.

§
readonly isRegional?: boolean
[src]

Output only. This field indicates if the connection string is regional and is only applicable for cross-region Data Guard.

§
readonly protocol?: "PROTOCOL_UNSPECIFIED" | "TCP" | "TCPS"
[src]

Output only. The protocol being used by the connection.

§
readonly sessionMode?: "SESSION_MODE_UNSPECIFIED" | "DIRECT" | "INDIRECT"
[src]

Output only. The current session mode of the connection.

§
readonly syntaxFormat?: "SYNTAX_FORMAT_UNSPECIFIED" | "LONG" | "EZCONNECT" | "EZCONNECTPLUS"
[src]

Output only. The syntax of the connection string.

§
readonly tlsAuthentication?: "TLS_AUTHENTICATION_UNSPECIFIED" | "SERVER" | "MUTUAL"
[src]

Output only. This field indicates the TLS authentication type of the connection.

§
readonly value?: string
[src]

Output only. The value of the connection string.