Show / Hide Table of Contents

Class VmClusterSummary

Partial information about the VM Cluster which includes name, memory allocated etc.

Inheritance
object
VmClusterSummary
Inherited Members
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 VmClusterSummary

Properties

CpuAllocated

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

The CPU allocated on a VM Cluster.

DbNodesCount

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

The number of DB nodes on a VM Cluster.

MemoryAllocatedInGBs

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

The memory allocated on a VM Cluster.

VmclusterName

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

The name of the VM Cluster.

Remarks

Required

In this article
Back to top