vw_providers_default_by_locations
Creates, updates, deletes, gets or lists a vw_providers_default_by_locations
resource.
Overview
Name | vw_providers_default_by_locations |
Type | View |
Id | azure.attestation.vw_providers_default_by_locations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
systemData as system_data,
JSON_EXTRACT(properties, '$.trustModel') as "trust_model",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.attestUri') as "attest_uri",
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
JSON_EXTRACT(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
JSON_EXTRACT(properties, '$.tpmAttestationAuthentication') as "tpm_attestation_authentication",
subscriptionId,
location
FROM azure.attestation.providers_default_by_locations
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
location as location,
tags as tags,
systemData as system_data,
json_extract_path_text(properties, '$.trustModel') as "trust_model",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.attestUri') as "attest_uri",
json_extract_path_text(properties, '$.publicNetworkAccess') as "public_network_access",
json_extract_path_text(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
json_extract_path_text(properties, '$.tpmAttestationAuthentication') as "tpm_attestation_authentication",
subscriptionId,
location
FROM azure.attestation.providers_default_by_locations
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';