Azure DevOps repository and pipeline
Defines the settings for Azure DevOps integration, including authentication token and pipeline agent pool.
Properties
Name | Type | Description | Required |
---|---|---|---|
setup | object | Authentication 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
Name | Type | Description | Required |
---|---|---|---|
agent_pool | string | The name of the agent pool to be used for pipeline execution. Defaults to 'Default'. Minimal Length: 1 | no |
access_token (Personal Access Token) | string | The 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"
}