vw_workflows
Creates, updates, deletes, gets or lists a vw_workflows
resource.
Overview
Name | vw_workflows |
Type | View |
Id | azure_extras.developer_hub.vw_workflows |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.githubWorkflowProfile') as "github_workflow_profile",
JSON_EXTRACT(properties, '$.artifactGenerationProperties') as "artifact_generation_properties",
JSON_EXTRACT(properties, '$.azurePipelineProfile') as "azure_pipeline_profile",
subscriptionId,
resourceGroupName,
workflowName
FROM azure_extras.developer_hub.workflows
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.githubWorkflowProfile') as "github_workflow_profile",
json_extract_path_text(properties, '$.artifactGenerationProperties') as "artifact_generation_properties",
json_extract_path_text(properties, '$.azurePipelineProfile') as "azure_pipeline_profile",
subscriptionId,
resourceGroupName,
workflowName
FROM azure_extras.developer_hub.workflows
WHERE subscriptionId = 'replace-me';