Show / Hide Table of Contents

Class OlvmCpuTopology

CPU Topology in OLVM

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

Properties

Cores

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

Number of cores

Sockets

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

Number of sockets

Threads

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

Number of threads

In this article
Back to top