Show / Hide Table of Contents

Class InfrastructureServer

Database Infrastructure Server details.

Inheritance
object
InfrastructureServer
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataccService.Models
Assembly: OCI.DotNetSDK.Datacc.dll
Syntax
public class InfrastructureServer

Properties

BaseVmCount

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

Number of database virtual machines hosted on the server.

ComputeCapacity

Declaration
[JsonProperty(PropertyName = "computeCapacity")]
public ComputeCapacityDetails ComputeCapacity { get; set; }
Property Value
Type Description
ComputeCapacityDetails

Id

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

The OCID of the Oracle Data Server of Infrastructure.

Remarks

Required

IlomIpAddress

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

Database Infrastructure Server ILOM IP address.

Remarks

Required

IlomName

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

Database Infrastructure Server ILOM name.

Remarks

Required

InstanceVmCount

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

Number of instances hosted on the server.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InfrastructureServerLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
InfrastructureServerLifecycleState?

The current state of the Database Infrastructure server.

Remarks

Required

ServerIpAddress

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

Database Infrastructure Server IP address.

Remarks

Required

ServerName

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

Database Infrastructure Server name.

Remarks

Required

In this article
Back to top