vw_solution_types
Creates, updates, deletes, gets or lists a vw_solution_types
resource.
Overview
Name | vw_solution_types |
Type | View |
Id | azure.hybrid_connectivity.vw_solution_types |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.solutionType') as "solution_type",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.supportedAzureRegions') as "supported_azure_regions",
JSON_EXTRACT(properties, '$.solutionSettings') as "solution_settings",
subscriptionId,
resourceGroupName,
solutionType
FROM azure.hybrid_connectivity.solution_types
WHERE subscriptionId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.solutionType') as "solution_type",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.supportedAzureRegions') as "supported_azure_regions",
json_extract_path_text(properties, '$.solutionSettings') as "solution_settings",
subscriptionId,
resourceGroupName,
solutionType
FROM azure.hybrid_connectivity.solution_types
WHERE subscriptionId = 'replace-me';