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

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

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

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
;