Show / Hide Table of Contents

Class OcpuUtilizationInfo

Ocpu utilization for a VM host

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

Properties

Host

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

Host name of VM

OcpuCapacityNumber

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

Number of total OCPU capacity on the host

OcpuUtilizationNumber

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

Number of OCPU utilized

In this article
Back to top