metadata_configuration
Creates, updates, deletes, gets or lists a metadata_configuration resource.
Overview
| Name | metadata_configuration |
| Type | Resource |
| Id | azure.security_attestation.metadata_configuration |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
claims_supported | array | Set of claims supported by the OpenID metadata endpoint. |
id_token_signing_alg_values_supported | array | List of the supported signing algorithms. |
issuer | string | Issuer tenant base endpoint. |
jwks_uri | string | The URI to retrieve the signing keys. |
response_types_supported | array | Types supported in the OpenID metadata API. |
revocation_endpoint | string | Revocation endpoint. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | endpoint | Retrieves the OpenID Configuration data for the Azure Attestation Service. Retrieves metadata about the attestation signing keys in use by the attestation service. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: ) |
SELECT examples
- get
Retrieves the OpenID Configuration data for the Azure Attestation Service. Retrieves metadata about the attestation signing keys in use by the attestation service.
SELECT
claims_supported,
id_token_signing_alg_values_supported,
issuer,
jwks_uri,
response_types_supported,
revocation_endpoint
FROM azure.security_attestation.metadata_configuration
WHERE endpoint = '{{ endpoint }}' -- required
;