Skip to main content

consortium_members

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

Overview

Nameconsortium_members
TypeResource
Idazure.confidential_ledger_dataplane.consortium_members

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringIdentifier assigned to the member. Required.
certificatestringPEM-encoded certificate associated with the member. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_consortium_membersselectledger_endpointLists 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.

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

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
;