Class CreateRedisConnectionDetails
The information about a new Redis Connection.
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class CreateRedisConnectionDetails : CreateConnectionDetails
Properties
AuthenticationType
Declaration
[Required(ErrorMessage = "AuthenticationType is required.")]
[JsonProperty(PropertyName = "authenticationType")]
[JsonConverter(typeof(StringEnumConverter))]
public RedisConnection.AuthenticationTypeEnum? AuthenticationType { get; set; }
Property Value
Type | Description |
---|---|
RedisConnection.AuthenticationTypeEnum? | Authenticationentication type for the Redis database. |
Remarks
Required
KeyStore
Declaration
[JsonProperty(PropertyName = "keyStore")]
public string KeyStore { get; set; }
Property Value
Type | Description |
---|---|
string | The base64 encoded content of the KeyStore file. |
KeyStorePassword
Declaration
[JsonProperty(PropertyName = "keyStorePassword")]
public string KeyStorePassword { get; set; }
Property Value
Type | Description |
---|---|
string | The KeyStore password. |
Password
Declaration
[JsonProperty(PropertyName = "password")]
public string Password { get; set; }
Property Value
Type | Description |
---|---|
string | The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on. |
RedisClusterId
Declaration
[JsonProperty(PropertyName = "redisClusterId")]
public string RedisClusterId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the Redis cluster. |
SecurityProtocol
Declaration
[Required(ErrorMessage = "SecurityProtocol is required.")]
[JsonProperty(PropertyName = "securityProtocol")]
[JsonConverter(typeof(StringEnumConverter))]
public RedisConnection.SecurityProtocolEnum? SecurityProtocol { get; set; }
Property Value
Type | Description |
---|---|
RedisConnection.SecurityProtocolEnum? | Security protocol for Redis. |
Remarks
Required
Servers
Declaration
[JsonProperty(PropertyName = "servers")]
public string Servers { get; set; }
Property Value
Type | Description |
---|---|
string | 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. Used for establishing the initial connection to the Redis cluster. Example: "server1.example.com:6379,server2.example.com:6379" |
TechnologyType
Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(StringEnumConverter))]
public RedisConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type | Description |
---|---|
RedisConnection.TechnologyTypeEnum? | The Redis technology type. |
Remarks
Required
TrustStore
Declaration
[JsonProperty(PropertyName = "trustStore")]
public string TrustStore { get; set; }
Property Value
Type | Description |
---|---|
string | The base64 encoded content of the TrustStore file. |
TrustStorePassword
Declaration
[JsonProperty(PropertyName = "trustStorePassword")]
public string TrustStorePassword { get; set; }
Property Value
Type | Description |
---|---|
string | The TrustStore password. |
Username
Declaration
[JsonProperty(PropertyName = "username")]
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string | The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it. |