Show / Hide Table of Contents

Class InstalledDatabaseDetails

The details of the database running on-premises or on a compute instance.

Inheritance
object
DatabaseDetails
InstalledDatabaseDetails
Inherited Members
DatabaseDetails.InfrastructureType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class InstalledDatabaseDetails : DatabaseDetails

Properties

InstanceId

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

The OCID of the compute instance on which the database is running.

IpAddresses

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

The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.

ListenerPort

Declaration
[Required(ErrorMessage = "ListenerPort is required.")]
[JsonProperty(PropertyName = "listenerPort")]
public int? ListenerPort { get; set; }
Property Value
Type Description
int?

The port number of the database listener.

Remarks

Required

ServiceName

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

The service name of the database registered as target database.

Remarks

Required

In this article
Back to top