icinga-powershell-framework/lib/webserver/Get-IcingaRESTPathElement.psm1

22 lines
434 B
PowerShell
Raw Normal View History

function Get-IcingaRESTPathElement()
{
param(
[Hashtable]$Request = @{},
[int]$Index = 0
);
if ($null -eq $Request -Or $Request.Count -eq 0) {
return '';
}
if ($Request.ContainsKey('RequestPath') -eq $FALSE) {
return '';
}
if (($Index + 1) -gt $Request.RequestPath.PathArray.Count) {
return '';
}
return $Request.RequestPath.PathArray[$Index];
}