consortium_members
Creates, updates, deletes, gets or lists a consortium_members resource.
Overview
| Name | consortium_members |
| Type | Resource |
| Id | azure.confidential_ledger_dataplane.consortium_members |
Fields
The following fields are returned by SELECT queries:
- list_consortium_members
| Name | Datatype | Description |
|---|---|---|
id | string | Identifier assigned to the member. Required. |
certificate | string | PEM-encoded certificate associated with the member. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_consortium_members | select | ledger_endpoint | Lists the consortium members. Consortium members can manage the Confidential Ledger. |
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
- list_consortium_members
Lists the consortium members. Consortium members can manage the Confidential Ledger.
SELECT
id,
certificate
FROM azure.confidential_ledger_dataplane.consortium_members
WHERE ledger_endpoint = '{{ ledger_endpoint }}' -- required
;