mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2026-02-03 12:19:29 -05:00
19 lines
269 B
PowerShell
19 lines
269 B
PowerShell
|
|
function Get-IcingaProviderElement()
|
||
|
|
{
|
||
|
|
param (
|
||
|
|
$Object = $null
|
||
|
|
);
|
||
|
|
|
||
|
|
if ($null -eq $Object) {
|
||
|
|
return @();
|
||
|
|
}
|
||
|
|
|
||
|
|
try {
|
||
|
|
return $Object.PSObject.Properties
|
||
|
|
} catch {
|
||
|
|
return @();
|
||
|
|
}
|
||
|
|
|
||
|
|
return @();
|
||
|
|
}
|