Skip to main content

pipeline_template_definitions

Creates, updates, deletes, gets or lists a pipeline_template_definitions resource.

Overview

Namepipeline_template_definitions
TypeResource
Idazure.devops.pipeline_template_definitions

Fields

The following fields are returned by SELECT queries:

The pipeline template definitions have been fetched successfully.

NameDatatypeDescription
idstringUnique identifier of the pipeline template.
descriptionstringDescription of the pipeline enabled by the template.
inputsarrayList of input parameters required by the template to create a pipeline.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectLists all pipeline templates which can be used to configure an Azure Pipeline.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription

SELECT examples

Lists all pipeline templates which can be used to configure an Azure Pipeline.

SELECT
id,
description,
inputs
FROM azure.devops.pipeline_template_definitions
;