Skip to main content

tcb_baselines

Creates, updates, deletes, gets or lists a tcb_baselines resource.

Overview

Nametcb_baselines
TypeResource
Idazure.security_attestation.tcb_baselines

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
tcbBaselinesarrayList of Azure supported baseline details for the TEE type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectattestation_type, endpointRetrieves a list of all Azure supported baseline details for the a TEE type along with an indication of which one is in enforced for the attestation provider. Retrieves a list of all Azure supported baseline details for the a TEE type along with an indication of which one is in enforced for the attestation provider.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
attestation_typestringSpecifies the trusted execution environment to be used to validate the evidence. Known values are: "SgxEnclave", "OpenEnclave", "AzureGuest", "SevSnpVm", "Tpm", and "TdxVm". Required.
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: )

SELECT examples

Retrieves a list of all Azure supported baseline details for the a TEE type along with an indication of which one is in enforced for the attestation provider. Retrieves a list of all Azure supported baseline details for the a TEE type along with an indication of which one is in enforced for the attestation provider.

SELECT
tcbBaselines
FROM azure.security_attestation.tcb_baselines
WHERE attestation_type = '{{ attestation_type }}' -- required
AND endpoint = '{{ endpoint }}' -- required
;