Show / Hide Table of Contents

Class PeComanagedDatabaseConnectionDetails

Connection details of the private endpoints.

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

Properties

Hosts

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

List of hosts and port for private endpoint accessed database resource.

Remarks

Required

Protocol

Declaration
[JsonProperty(PropertyName = "protocol")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PeComanagedDatabaseConnectionDetails.ProtocolEnum? Protocol { get; set; }
Property Value
Type Description
PeComanagedDatabaseConnectionDetails.ProtocolEnum?

Protocol used for connection requests for private endpoint accssed database resource.

ServiceName

Declaration
[JsonProperty(PropertyName = "serviceName")]
public string ServiceName { get; set; }
Property Value
Type Description
string

Database service name used for connection requests.

In this article
Back to top