vw_configurations
Creates, updates, deletes, gets or lists a vw_configurations
resource.
Overview
Name | vw_configurations |
Type | View |
Id | azure.maria_db.vw_configurations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.value') as "value",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.defaultValue') as "default_value",
JSON_EXTRACT(properties, '$.dataType') as "data_type",
JSON_EXTRACT(properties, '$.allowedValues') as "allowed_values",
JSON_EXTRACT(properties, '$.source') as "source",
subscriptionId,
resourceGroupName,
serverName,
configurationName
FROM azure.maria_db.configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.value') as "value",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.defaultValue') as "default_value",
json_extract_path_text(properties, '$.dataType') as "data_type",
json_extract_path_text(properties, '$.allowedValues') as "allowed_values",
json_extract_path_text(properties, '$.source') as "source",
subscriptionId,
resourceGroupName,
serverName,
configurationName
FROM azure.maria_db.configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';