vw_pipelines
Creates, updates, deletes, gets or lists a vw_pipelines
resource.
Overview
Name | vw_pipelines |
Type | View |
Id | azure.devops.vw_pipelines |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.pipelineId') as "pipeline_id",
JSON_EXTRACT(properties, '$.organization') as "organization",
JSON_EXTRACT(properties, '$.project') as "project",
JSON_EXTRACT(properties, '$.bootstrapConfiguration') as "bootstrap_configuration",
subscriptionId,
resourceGroupName,
pipelineName
FROM azure.devops.pipelines
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.pipelineId') as "pipeline_id",
json_extract_path_text(properties, '$.organization') as "organization",
json_extract_path_text(properties, '$.project') as "project",
json_extract_path_text(properties, '$.bootstrapConfiguration') as "bootstrap_configuration",
subscriptionId,
resourceGroupName,
pipelineName
FROM azure.devops.pipelines
WHERE subscriptionId = 'replace-me';