Skip to main content

enclave_quotes

Creates, updates, deletes, gets or lists an enclave_quotes resource.

Overview

Nameenclave_quotes
TypeResource
Idazure.confidential_ledger_dataplane.enclave_quotes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
currentNodeIdstringId of the Confidential Ledger node responding to the request. Required.
enclaveQuotesobjectDictionary of enclave quotes, indexed by node id. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_enclave_quotesselectledger_endpointGets quotes for all nodes of the Confidential Ledger. A quote is an SGX enclave measurement that can be used to verify the validity of a node and its enclave.

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
ledger_endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client ledgerEndpoint parameter. (default: )

SELECT examples

Gets quotes for all nodes of the Confidential Ledger. A quote is an SGX enclave measurement that can be used to verify the validity of a node and its enclave.

SELECT
currentNodeId,
enclaveQuotes
FROM azure.confidential_ledger_dataplane.enclave_quotes
WHERE ledger_endpoint = '{{ ledger_endpoint }}' -- required
;