ps/Modules/Alkami.PowerShell.Choco/Public/Get-ValidHotfixServerTiers.ps1

15 lines
340 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function Get-ValidHotfixServerTiers {
<#
.SYNOPSIS
Returns an array of valid Server Tiers(types) to be used in Hotfix manifests as a target
#>
[CmdletBinding()]
[OutputType([string[]])]
param()
[array]$validHotfixServerTiers = @(
"APP",
"WEB",
"ALL"
)
return $validHotfixServerTiers
}