Scripts/library/Get-AzDevOpsVariableGroups.ps1
function Get-AzDevOpsVariableGroups { <# .SYNOPSIS Gets Azure DevOps Variable Groups. .DESCRIPTION Gets Variable Groups from Azure Devops Library. .EXAMPLE Get-AzDevOpsVariableGroups -Project 'ProjectName' .EXAMPLE Get-AzDevOpsVariableGroups -Project 'ProjectName' -Name 'VariableGroupName' #> [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string]$Project, [string]$Name = '*' ) $variableGroupsUri = "https://$($script:sharedData.CoreServer)/$($script:sharedData.Organization)/$Project/_apis/distributedtask/variablegroups?api-version=$($script:sharedData.ApiVersionPreview)" try { Write-Output -InputObject (Invoke-RestMethod -Uri $variableGroupsUri -Method Get -Headers $script:sharedData.Header).value | Where-Object { $_.name -imatch "^$Name$" } | ForEach-Object { $_ | Add-Member @{ project = $Project } -PassThru } } catch { throw $_ } } |