providers_default_by_locations
Creates, updates, deletes, gets or lists a providers_default_by_locations
resource.
Overview
Name | providers_default_by_locations |
Type | Resource |
Id | azure.attestation.providers_default_by_locations |
Fields
The following fields are returned by SELECT
queries:
- get
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 |
---|---|---|---|---|
get | select | location , subscriptionId | Get 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.
Name | Datatype | Description |
---|---|---|
location | string | The location of the default provider. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
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
;