ps/Modules/Alkami.DevOps.TeamCity/Public/Get-TeamCityAgentHostnames.ps1
2023-05-30 22:51:22 -07:00

11 lines
234 B
PowerShell

function Get-TeamCityAgentHostnames {
<#
.SYNOPSIS
Returns an array of hostnames of the TeamCity agent instances
#>
[CmdletBinding()]
[OutputType([string[]])]
param()
return Get-TeamCityHostnames -Type Agent
}