Public/Api/Pipelines/Pipelines/New-AzDoPipeline.ps1
function New-AzDoPipeline { <# .SYNOPSIS Creates an Azure Pipeline .DESCRIPTION Creates an Azure Pipeline in a given Azure Project based on a repo .EXAMPLE $newAzDoPipelineSplat = @{ CollectionUri = "https://dev.azure.com/contoso" PAT = "***" PipelineName = "Pipeline 1" RepoName = "Repo 1" ProjectName = "Project 1" } New-AzDoPipeline @newAzDoPipelineSplat This example creates a new Azure Pipeline using the PowerShell pipeline .EXAMPLE Get-AzDoProject -CollectionUri "https://dev.azure.com/contoso" -PAT $PAT | Get-AzDoRepo -RepoName 'Repo 1' -PAT $PAT | New-AzDoPipeline -PipelineName "Pipeline 1" -PAT $PAT This example creates a new Azure Pipeline .OUTPUTS PSobject. An object containing the name, the folder and the URI of the pipeline .NOTES #> [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'High')] param ( # Collection Uri of the organization [Parameter(Mandatory, ValueFromPipelineByPropertyName)] [string] $CollectionUri, # Project where the pipeline will be created. [Parameter(Mandatory, ValueFromPipelineByPropertyName)] [string] $ProjectName, # Name of the Pipeline [Parameter(Mandatory, ValueFromPipelineByPropertyName)] [string] $PipelineName, # Name of the Repository containing the YAML-sourcecode [Parameter(Mandatory, ValueFromPipelineByPropertyName)] $RepoName, # Path of the YAML-sourcecode in the Repository [Parameter(ValueFromPipelineByPropertyName)] [string] $Path = '/main.yaml' ) Process { $getAzDoRepoSplat = @{ CollectionUri = $CollectionUri ProjectName = $ProjectName RepoName = $RepoName } $RepoId = (Get-AzDoRepo @getAzDoRepoSplat).RepoId $body = @{ name = $PipelineName folder = $null configuration = @{ type = "yaml" path = $Path repository = @{ id = $RepoId type = "azureReposGit" } } } $params = @{ uri = "$CollectionUri/$ProjectName/_apis/pipelines" version = "7.1-preview.1" Method = 'POST' } if ($PSCmdlet.ShouldProcess($ProjectName, "Create pipeline named: $($PSStyle.Bold)$PipelineName$($PSStyle.Reset)")) { $body | Invoke-AzDoRestMethod @params | ForEach-Object { [PSCustomObject]@{ CollectionUri = $CollectionUri ProjectName = $ProjectName RepoName = $RepoName PipelineName = $_.name PipelineFolder = $_.folder PipelineUrl = $_.url PipelineId = $_.id } } } else { $Body | Format-List return } } } |