Show / Hide Table of Contents

Class MeasuredBootReport

The measured boot report for a shielded instance.

Inheritance
object
MeasuredBootReport
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 MeasuredBootReport

Properties

IsPolicyVerificationSuccessful

Declaration
[Required(ErrorMessage = "IsPolicyVerificationSuccessful is required.")]
[JsonProperty(PropertyName = "isPolicyVerificationSuccessful")]
public bool? IsPolicyVerificationSuccessful { get; set; }
Property Value
Type Description
bool?

Whether the verification succeeded, and the new values match the expected values.

Remarks

Required

Measurements

Declaration
[JsonProperty(PropertyName = "measurements")]
public MeasuredBootReportMeasurements Measurements { get; set; }
Property Value
Type Description
MeasuredBootReportMeasurements
In this article
Back to top