pipeline_template_definitions
Creates, updates, deletes, gets or lists a pipeline_template_definitions
resource.
Overview
Name | pipeline_template_definitions |
Type | Resource |
Id | azure.devops.pipeline_template_definitions |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Unique identifier of the pipeline template. |
description | string | Description of the pipeline enabled by the template. |
inputs | array | List of input parameters required by the template to create a pipeline. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists 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
;