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
- vw_providers_default_by_locations
- providers_default_by_locations
Name | Datatype | Description |
---|---|---|
attest_uri | text | field from the properties object |
location | text | The geo-location where the resource lives |
private_endpoint_connections | text | field from the properties object |
public_network_access | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
tags | text | Resource tags. |
tpm_attestation_authentication | text | field from the properties object |
trust_model | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Status of attestation service. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, subscriptionId | Get the default provider by location. |
SELECT
examples
Get the default provider by location.
- vw_providers_default_by_locations
- providers_default_by_locations
SELECT
attest_uri,
location,
private_endpoint_connections,
public_network_access,
status,
subscriptionId,
system_data,
tags,
tpm_attestation_authentication,
trust_model
FROM azure.attestation.vw_providers_default_by_locations
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
location,
properties,
systemData,
tags
FROM azure.attestation.providers_default_by_locations
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';