enclave_quotes
Creates, updates, deletes, gets or lists an enclave_quotes resource.
Overview
| Name | enclave_quotes |
| Type | Resource |
| Id | azure.confidential_ledger_dataplane.enclave_quotes |
Fields
The following fields are returned by SELECT queries:
- get_enclave_quotes
| Name | Datatype | Description |
|---|---|---|
currentNodeId | string | Id of the Confidential Ledger node responding to the request. Required. |
enclaveQuotes | object | Dictionary of enclave quotes, indexed by node id. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_enclave_quotes | select | ledger_endpoint | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
ledger_endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client ledgerEndpoint parameter. (default: ) |
SELECT examples
- get_enclave_quotes
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
;