vw_recommendation_metadata
Creates, updates, deletes, gets or lists a vw_recommendation_metadata
resource.
Overview
Name | vw_recommendation_metadata |
Type | View |
Id | azure.advisor.vw_recommendation_metadata |
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, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.dependsOn') as "depends_on",
JSON_EXTRACT(properties, '$.applicableScenarios') as "applicable_scenarios",
JSON_EXTRACT(properties, '$.supportedValues') as "supported_values",
name
FROM azure.advisor.recommendation_metadata
WHERE name = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.dependsOn') as "depends_on",
json_extract_path_text(properties, '$.applicableScenarios') as "applicable_scenarios",
json_extract_path_text(properties, '$.supportedValues') as "supported_values",
name
FROM azure.advisor.recommendation_metadata
WHERE name = 'replace-me';