Show / Hide Table of Contents

Class ConnectionDetails

Database system connection information. Used to connect to PostgreSQL instance(s).

Inheritance
object
ConnectionDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class ConnectionDetails

Properties

CaCertificate

Declaration
[Required(ErrorMessage = "CaCertificate is required.")]
[JsonProperty(PropertyName = "caCertificate")]
public string CaCertificate { get; set; }
Property Value
Type Description
string

The CA certificate to be used by the PosgreSQL client to connect to the database. The CA certificate is used to authenticate the server identity. It is issued by PostgreSQL Service Private CA.

Remarks

Required

InstanceEndpoints

Declaration
[Required(ErrorMessage = "InstanceEndpoints is required.")]
[JsonProperty(PropertyName = "instanceEndpoints")]
public List<DbInstanceEndpoint> InstanceEndpoints { get; set; }
Property Value
Type Description
List<DbInstanceEndpoint>

The list of database instance node endpoints in the database system.

Remarks

Required

PrimaryDbEndpoint

Declaration
[Required(ErrorMessage = "PrimaryDbEndpoint is required.")]
[JsonProperty(PropertyName = "primaryDbEndpoint")]
public Endpoint PrimaryDbEndpoint { get; set; }
Property Value
Type Description
Endpoint
Remarks

Required

ReaderEndpoint

Declaration
[JsonProperty(PropertyName = "readerEndpoint")]
public Endpoint ReaderEndpoint { get; set; }
Property Value
Type Description
Endpoint
In this article
Back to top