vw_troubleshooters
Creates, updates, deletes, gets or lists a vw_troubleshooters
resource.
Overview
Name | vw_troubleshooters |
Type | View |
Id | azure_extras.help.vw_troubleshooters |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.solutionId') as "solution_id",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.steps') as "steps",
scope,
troubleshooterName
FROM azure_extras.help.troubleshooters
WHERE scope = 'replace-me' AND troubleshooterName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.solutionId') as "solution_id",
json_extract_path_text(properties, '$.parameters') as "parameters",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.steps') as "steps",
scope,
troubleshooterName
FROM azure_extras.help.troubleshooters
WHERE scope = 'replace-me' AND troubleshooterName = 'replace-me';