Skip to main content

metadata_configuration

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

Overview

Namemetadata_configuration
TypeResource
Idazure.security_attestation.metadata_configuration

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
claims_supportedarraySet of claims supported by the OpenID metadata endpoint.
id_token_signing_alg_values_supportedarrayList of the supported signing algorithms.
issuerstringIssuer tenant base endpoint.
jwks_uristringThe URI to retrieve the signing keys.
response_types_supportedarrayTypes supported in the OpenID metadata API.
revocation_endpointstringRevocation endpoint.

Methods

The following methods are available for this resource:

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

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: )

SELECT examples

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
;