Show / Hide Table of Contents

Class AdditionalComputeCapabilityDetails

Additional details about the COMPUTE capability.

Inheritance
object
AdditionalCapabilityDetails
AdditionalComputeCapabilityDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ClusterplacementgroupsService.Models
Assembly: OCI.DotNetSDK.Clusterplacementgroups.dll
Syntax
public class AdditionalComputeCapabilityDetails : AdditionalCapabilityDetails

Properties

Count

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

The number of instances or size of the resource.

MemoryInGBs

Declaration
[JsonProperty(PropertyName = "memoryInGBs")]
public float? MemoryInGBs { get; set; }
Property Value
Type Description
float?

The amount of memory (in GBs) needed in the instance.

Nvmes

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

The number of NVMe drives to use for storage.

Ocpus

Declaration
[JsonProperty(PropertyName = "ocpus")]
public float? Ocpus { get; set; }
Property Value
Type Description
float?

The number of OCPUs needed in the instance.

In this article
Back to top