com.azure.security.attestation.models.AttestationDataInterpretation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-security-attestation Show documentation
Show all versions of azure-security-attestation Show documentation
This package contains Microsoft Azure SDK for the Microsoft Azure Attestation service.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.security.attestation.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/** Defines values for AttestationDataInterpretation. */
public final class AttestationDataInterpretation extends ExpandableStringEnum {
/**
* Static value BINARY for AttestationDataInterpretation.
*
* When the attestation service receives the Data, it should interpret the data as
* binary, and return the data in the {@link AttestationResult#getEnclaveHeldData()} property.
*
*/
public static final AttestationDataInterpretation BINARY = fromString("BINARY");
/**
* Static value JSON for AttestationDataInterpretation.
*
* When the attestation service receives the RunTime Data, it should interpret the data as
* binary, and return the data in the {@link AttestationResult#getRuntimeClaims()} property
*
*/
public static final AttestationDataInterpretation JSON = fromString("JSON");
/**
* Creates or finds a AttestationType from its string representation.
*
* @param name a name to look for.
* @return the corresponding AttestationType.
*/
public static AttestationDataInterpretation fromString(String name) {
return fromString(name, AttestationDataInterpretation.class);
}
/** @return known AttestationType values. */
public static Collection values() {
return values(AttestationDataInterpretation.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy