Show / Hide Table of Contents

Class MeasuredBootReportMeasurements

A list of Trusted Platform Module (TPM) Platform Configuration Register (PCR) entries.

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

Properties

Actual

Declaration
[JsonProperty(PropertyName = "actual")]
public List<MeasuredBootEntry> Actual { get; set; }
Property Value
Type Description
List<MeasuredBootEntry>

The list of actual PCR entries measured during boot.

Policy

Declaration
[JsonProperty(PropertyName = "policy")]
public List<MeasuredBootEntry> Policy { get; set; }
Property Value
Type Description
List<MeasuredBootEntry>

The list of expected PCR entries to use during verification.

In this article
Back to top