Skip to main content

vw_key_values

Creates, updates, deletes, gets or lists a vw_key_values resource.

Overview

Namevw_key_values
TypeView
Idazure.app_configuration.vw_key_values

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.key') as "key",
JSON_EXTRACT(properties, '$.label') as "label",
JSON_EXTRACT(properties, '$.value') as "value",
JSON_EXTRACT(properties, '$.contentType') as "content_type",
JSON_EXTRACT(properties, '$.eTag') as "e_tag",
JSON_EXTRACT(properties, '$.lastModified') as "last_modified",
JSON_EXTRACT(properties, '$.locked') as "locked",
JSON_EXTRACT(properties, '$.tags') as "tags",
subscriptionId,
resourceGroupName,
configStoreName,
keyValueName
FROM azure.app_configuration.key_values
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND configStoreName = 'replace-me' AND keyValueName = 'replace-me';