Skip to main content

providers_default_by_locations

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

Overview

Nameproviders_default_by_locations
TypeResource
Idazure.attestation.providers_default_by_locations

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
getselectlocation, subscriptionIdGet the default provider by location.

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
locationstringThe location of the default provider.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get the default provider by location.

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