Skip to main content

providers_defaults

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

Overview

Nameproviders_defaults
TypeResource
Idazure.attestation.providers_defaults

Fields

The following fields are returned by SELECT queries:

Retrieved information about the default provider.

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectDescribes Attestation service status.
systemDataobjectThe system metadata relating to this resource
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdGet the default provider

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
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get the default provider

SELECT
location,
properties,
systemData,
tags
FROM azure.attestation.providers_defaults
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;