vw_key_values
Creates, updates, deletes, gets or lists a vw_key_values
resource.
Overview
Name | vw_key_values |
Type | View |
Id | azure.app_configuration.vw_key_values |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.key') as "key",
json_extract_path_text(properties, '$.label') as "label",
json_extract_path_text(properties, '$.value') as "value",
json_extract_path_text(properties, '$.contentType') as "content_type",
json_extract_path_text(properties, '$.eTag') as "e_tag",
json_extract_path_text(properties, '$.lastModified') as "last_modified",
json_extract_path_text(properties, '$.locked') as "locked",
json_extract_path_text(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';