Show / Hide Table of Contents

Class DBOSConfigInstance

Configuration parameters defined for external databases instance level.

Inheritance
object
DatabaseConfigurationMetricGroup
DBOSConfigInstance
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 DBOSConfigInstance : DatabaseConfigurationMetricGroup

Properties

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

NumCPUCores

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

Number of CPU cores available (includes subcores of multicore CPUs as well as single-core CPUs).

NumCPUSockets

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

Number of CPU Sockets available.

NumCPUs

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

Total number of CPUs available.

PhysicalMemoryBytes

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

Total number of bytes of physical memory.

In this article
Back to top