Class AttestationData

java.lang.Object
com.azure.security.attestation.models.AttestationData

public final class AttestationData extends Object
The AttestationData class represents data sent to the Attestation service as either InitTimeData or RunTimeData.
  • Constructor Details

    • AttestationData

      public AttestationData(BinaryData data, AttestationDataInterpretation interpretation)
      Creates a new AttestationData object for the data and how it should be interpreted by the attestation service.
      Parameters:
      data - - Data to be set.
      interpretation - - How the data should be interpreted.
    • AttestationData

      public AttestationData(AttestationData that)
      Copy constructor to create a new AttestationData object from an existing AttestationData object.
      Parameters:
      that - - AttestationData object to copy values from.
  • Method Details

    • getData

      public BinaryData getData()
      Returns the data with which this AttestationData was created.
      Returns:
      The data configured for this object.
    • getInterpretation

      public AttestationDataInterpretation getInterpretation()
      Returns the interpretation of this attestation data.
      Returns:
      The expected in interpretation for the data.