AzureDevOpsAPIUtils.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# Distributed Tasks functions . (Join-Path $PSScriptRoot "DistributedTasks/Get-AzureDevOpsAgentPools.ps1") . (Join-Path $PSScriptRoot "DistributedTasks/Add-AzureDevOpsAgentPool.ps1") . (Join-Path $PSScriptRoot "DistributedTasks/Get-AzureDevOpsDeploymentGroups.ps1") . (Join-Path $PSScriptRoot "DistributedTasks/Add-AzureDevOpsDeploymentGroup.ps1") . (Join-Path $PSScriptRoot "DistributedTasks/Get-AzureDevOpsAgents.ps1") . (Join-Path $PSScriptRoot "DistributedTasks/Remove-AzureDevOpsAgent.ps1") . (Join-Path $PSScriptRoot "DistributedTasks/Get-AzureDevOpsVariableGroups.ps1") . (Join-Path $PSScriptRoot "DistributedTasks/Add-AzureDevOpsVariableGroup.ps1") . (Join-Path $PSScriptRoot "DistributedTasks/Update-AzureDevOpsVariableGroup.ps1") # Agents functions . (Join-Path $PSScriptRoot "Agents/Get-AzureDevOpsAgentInstallParameters.ps1") . (Join-Path $PSScriptRoot "Agents/Get-AzureDevOpsAgentUnInstallParameters.ps1") |