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
The following fields are returned by SELECT
queries:
- list
The pipeline template definitions have been fetched successfully.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists 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.
Name | Datatype | Description |
---|
SELECT
examples
- list
Lists all pipeline templates which can be used to configure an Azure Pipeline.
SELECT
id,
description,
inputs
FROM azure.devops.pipeline_template_definitions
;