Show / Hide Table of Contents

Class DBExternalInstance

Configuration parameters defined for external databases instance level.

Inheritance
object
DatabaseConfigurationMetricGroup
DBExternalInstance
Inherited Members
DatabaseConfigurationMetricGroup.TimeCollected
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 DBExternalInstance : DatabaseConfigurationMetricGroup

Properties

CpuCount

Declaration
[JsonProperty(PropertyName = "cpuCount")]
public int? CpuCount { get; set; }
Property Value
Type Description
int?

Total number of CPUs allocated for the host.

DatabaseStatus

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

Status of the database.

Edition

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

The edition of the database.

HostMemoryCapacity

Declaration
[JsonProperty(PropertyName = "hostMemoryCapacity")]
public double HostMemoryCapacity { get; set; }
Property Value
Type Description
double

Total amount of usable Physical RAM Memory available in gigabytes.

HostName

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

Host name of the database instance.

Remarks

Required

InstanceName

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

Name of the database instance.

Remarks

Required

InstanceRole

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

Role (permissions) of the database instance.

Logins

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

Indicates if logins are allowed or restricted.

Parallel

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

Indicates whether the instance is mounted in cluster database mode (YES) or not (NO).

StartupTime

Declaration
[JsonProperty(PropertyName = "startupTime")]
public DateTime? StartupTime { get; set; }
Property Value
Type Description
DateTime?

Start up time of the database instance.

Status

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

Status of the instance.

Version

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

Database version.

In this article
Back to top