vw_discovered_asset_endpoint_profiles
Creates, updates, deletes, gets or lists a vw_discovered_asset_endpoint_profiles
resource.
Overview
Name | vw_discovered_asset_endpoint_profiles |
Type | View |
Id | azure.device_registry.vw_discovered_asset_endpoint_profiles |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
JSON_EXTRACT(properties, '$.targetAddress') as "target_address",
JSON_EXTRACT(properties, '$.additionalConfiguration') as "additional_configuration",
JSON_EXTRACT(properties, '$.supportedAuthenticationMethods') as "supported_authentication_methods",
JSON_EXTRACT(properties, '$.endpointProfileType') as "endpoint_profile_type",
JSON_EXTRACT(properties, '$.discoveryId') as "discovery_id",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
discoveredAssetEndpointProfileName
FROM azure.device_registry.discovered_asset_endpoint_profiles
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
json_extract_path_text(properties, '$.targetAddress') as "target_address",
json_extract_path_text(properties, '$.additionalConfiguration') as "additional_configuration",
json_extract_path_text(properties, '$.supportedAuthenticationMethods') as "supported_authentication_methods",
json_extract_path_text(properties, '$.endpointProfileType') as "endpoint_profile_type",
json_extract_path_text(properties, '$.discoveryId') as "discovery_id",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
discoveredAssetEndpointProfileName
FROM azure.device_registry.discovered_asset_endpoint_profiles
WHERE subscriptionId = 'replace-me';