Show / Hide Table of Contents

Class NetworkDetails

Network details for the database system.

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

Properties

IsReaderEndpointEnabled

Declaration
[JsonProperty(PropertyName = "isReaderEndpointEnabled")]
public bool? IsReaderEndpointEnabled { get; set; }
Property Value
Type Description
bool?

Specifies if the reader endpoint is enabled on the dbSystem.

NsgIds

Declaration
[JsonProperty(PropertyName = "nsgIds")]
public List<string> NsgIds { get; set; }
Property Value
Type Description
List<string>

List of customer Network Security Group OCIDs associated with the database system.

PrimaryDbEndpointPrivateIp

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

Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.

SubnetId

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

The OCID of the customer subnet associated with the database system.

Remarks

Required

In this article
Back to top