Show / Hide Table of Contents

Class ChromeOsDevice.CpuStatusReportsData

Inheritance
System.Object
ChromeOsDevice.CpuStatusReportsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class CpuStatusReportsData

Properties

CpuTemperatureInfo

List of CPU temperature samples.

Declaration
[JsonProperty("cpuTemperatureInfo")]
public virtual IList<ChromeOsDevice.CpuStatusReportsData.CpuTemperatureInfoData> CpuTemperatureInfo { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ChromeOsDevice.CpuStatusReportsData.CpuTemperatureInfoData>

CpuUtilizationPercentageInfo

Declaration
[JsonProperty("cpuUtilizationPercentageInfo")]
public virtual IList<int? > CpuUtilizationPercentageInfo { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int32>>

ReportTime

System.DateTime representation of ReportTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? ReportTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

ReportTimeRaw

Date and time the report was received.

Declaration
[JsonProperty("reportTime")]
public virtual string ReportTimeRaw { get; set; }
Property Value
Type Description
System.String
Back to top