Show / Hide Table of Contents

Class ChromeOsDevice.TpmVersionInfoData

Trusted Platform Module (TPM) (Read-only)

Inheritance
System.Object
ChromeOsDevice.TpmVersionInfoData
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 TpmVersionInfoData

Properties

Family

TPM family. We use the TPM 2.0 style encoding, e.g.: TPM 1.2: "1.2" -> 312e3200 TPM 2.0: "2.0" -> 322e3000

Declaration
[JsonProperty("family")]
public virtual string Family { get; set; }
Property Value
Type Description
System.String

FirmwareVersion

TPM firmware version.

Declaration
[JsonProperty("firmwareVersion")]
public virtual string FirmwareVersion { get; set; }
Property Value
Type Description
System.String

Manufacturer

TPM manufacturer code.

Declaration
[JsonProperty("manufacturer")]
public virtual string Manufacturer { get; set; }
Property Value
Type Description
System.String

SpecLevel

TPM specification level. See Library Specification for TPM 2.0 and Main Specification for TPM 1.2.

Declaration
[JsonProperty("specLevel")]
public virtual string SpecLevel { get; set; }
Property Value
Type Description
System.String

TpmModel

TPM model number.

Declaration
[JsonProperty("tpmModel")]
public virtual string TpmModel { get; set; }
Property Value
Type Description
System.String

VendorSpecific

Vendor-specific information such as Vendor ID.

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