TrustedInfrastructureHostsHardwareTpmInfo

The Tpm.Info structure contains information that describes a TPM device.


Properties

boolean
active Required

The TPM status. Inactive TPMs cannot be used for sealing or attestation.


banks Required

The list of the PCR banks of the TPM device.


integer as int64
major_version Required

The TPM major version number.


integer as int64
minor_version Required

The TPM minor version number.


string
firmware_version Optional

The TPM firmware version. if unset, firmware version is not available.


string
manufacturer Optional

The TPM manufacturer. if unset, manufacturer is not available.


string
model Optional

The TPM model. if unset, model is not available.

JSON Example

{
	"active": false,
	"banks": [
		{
			"algorithm": "SHA256",
			"pcrs": {
				"key": "string"
			}
		}
	],
	"major_version": 0,
	"minor_version": 0
}

Feedback

Was this page helpful?