Skip to main content

Azure DevOps repository and pipeline

Defines the settings for Azure DevOps integration, including authentication token and pipeline agent pool.

Properties

NameTypeDescriptionRequired
setupobjectAuthentication and pipeline configuration details for Azure DevOps integration.
yes

Additional Properties: not allowed
Example

{
"setup": {
"agent_pool": "Default",
"access_token": "pat_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}

setup: Setup

Authentication and pipeline configuration details for Azure DevOps integration.

Properties

NameTypeDescriptionRequired
agent_poolstringThe name of the agent pool to be used for pipeline execution. Defaults to 'Default'.
Minimal Length: 1
no
access_token
(Personal Access Token)
stringThe Personal Access Token (PAT) used to authenticate with Azure DevOps services.
Minimal Length: 52
yes

Additional Properties: not allowed
Example

{
"agent_pool": "Default",
"access_token": "pat_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}