Show / Hide Table of Contents

Class OlvmCpu

CPU attributes in OLVM

Inheritance
object
OlvmCpu
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 OlvmCpu

Properties

Architecture

Declaration
[JsonProperty(PropertyName = "architecture")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmCpu.ArchitectureEnum? Architecture { get; set; }
Property Value
Type Description
OlvmCpu.ArchitectureEnum?

CPU architecture

Core

Declaration
[JsonProperty(PropertyName = "core")]
public List<OlvmCore> Core { get; set; }
Property Value
Type Description
List<OlvmCore>

List of cores of this CPU

CpuTopology

Declaration
[JsonProperty(PropertyName = "cpuTopology")]
public OlvmCpuTopology CpuTopology { get; set; }
Property Value
Type Description
OlvmCpuTopology

CpuTune

Declaration
[JsonProperty(PropertyName = "cpuTune")]
public OlvmCpuTune CpuTune { get; set; }
Property Value
Type Description
OlvmCpuTune

Level

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

Level of this CPU

Mode

Declaration
[JsonProperty(PropertyName = "mode")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmCpu.ModeEnum? Mode { get; set; }
Property Value
Type Description
OlvmCpu.ModeEnum?

CPU mode

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

A human-readable name in plain text.

Speed

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

Speed of this CPU

Type

Declaration
[JsonProperty(PropertyName = "type")]
public string Type { get; set; }
Property Value
Type Description
string

CPU type

In this article
Back to top