providers_defaults
Creates, updates, deletes, gets or lists a providers_defaults
resource.
Overview
Name | providers_defaults |
Type | Resource |
Id | azure.attestation.providers_defaults |
Fields
The following fields are returned by SELECT
queries:
- list
Retrieved information about the default provider.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Describes Attestation service status. |
systemData | object | The system metadata relating to this resource |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | Get 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Get the default provider
SELECT
location,
properties,
systemData,
tags
FROM azure.attestation.providers_defaults
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;