vw_configurations
Creates, updates, deletes, gets or lists a vw_configurations
resource.
Overview
Name | vw_configurations |
Type | View |
Id | azure.mysql.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, '$.currentValue') as "current_value",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.documentationLink') as "documentation_link",
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",
JSON_EXTRACT(properties, '$.isReadOnly') as "is_read_only",
JSON_EXTRACT(properties, '$.isConfigPendingRestart') as "is_config_pending_restart",
JSON_EXTRACT(properties, '$.isDynamicConfig') as "is_dynamic_config",
subscriptionId,
resourceGroupName,
serverName,
configurationName
FROM azure.mysql.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, '$.currentValue') as "current_value",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.documentationLink') as "documentation_link",
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",
json_extract_path_text(properties, '$.isReadOnly') as "is_read_only",
json_extract_path_text(properties, '$.isConfigPendingRestart') as "is_config_pending_restart",
json_extract_path_text(properties, '$.isDynamicConfig') as "is_dynamic_config",
subscriptionId,
resourceGroupName,
serverName,
configurationName
FROM azure.mysql.configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';