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

GoldengateRedisConnectionProperties

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

The properties of GoldengateRedisConnection.

interface GoldengateRedisConnectionProperties {
authenticationType?: "REDIS_AUTHENTICATION_TYPE_UNSPECIFIED" | "NONE" | "BASIC";
keyStoreFile?: string;
keyStorePassword?: string;
keyStorePasswordSecretVersion?: string;
password?: string;
passwordSecretVersion?: string;
redisClusterId?: string;
securityProtocol?:
| "REDIS_SECURITY_PROTOCOL_UNSPECIFIED"
| "PLAIN"
| "TLS"
| "MTLS";
servers?: string;
technologyType?: string;
trustStoreFile?: string;
trustStorePassword?: string;
trustStorePasswordSecretVersion?: string;
username?: string;
}

§Properties

§
authenticationType?: "REDIS_AUTHENTICATION_TYPE_UNSPECIFIED" | "NONE" | "BASIC"
[src]

Optional. Authentication type for Redis.

§
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 Oracle Goldengate uses for Redis connection in plain text.

§
passwordSecretVersion?: string
[src]

Optional. Input only. The resource name of a secret version in Secret Manager which contains the password Oracle Goldengate uses for Redis connection. Format: projects/{project}/secrets/{secret}/versions/{version}.

§
redisClusterId?: string
[src]

Optional. The OCID of the Redis cluster.

§
securityProtocol?: "REDIS_SECURITY_PROTOCOL_UNSPECIFIED" | "PLAIN" | "TLS" | "MTLS"
[src]

Optional. Security protocol for Redis.

§
servers?: string
[src]

Optional. Comma separated list of Redis server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 6379. Example: "server1.example.com:6379,server2.example.com:6379"

§
technologyType?: string
[src]

Optional. The technology type of RedisConnection.

§
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}.

§
username?: string
[src]

Optional. The username Oracle Goldengate uses to connect the associated system of the given technology.