Show / Hide Table of Contents

Class DbInstanceEndpoint

The database instance node endpoint information.

Inheritance
object
DbInstanceEndpoint
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 DbInstanceEndpoint

Properties

DbInstanceId

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

Unique identifier of the database instance node.

Remarks

Required

Endpoint

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

Required

In this article
Back to top