icinga-powershell-framework/lib/config/New-IcingaPowerShellConfigItem.psm1
2019-10-05 21:56:23 +02:00

14 lines
342 B
PowerShell

function New-IcingaPowerShellConfigItem()
{
param(
$ConfigObject,
[string]$ConfigKey,
$ConfigValue = $null
);
if ($null -eq $ConfigValue) {
$ConfigValue = (New-Object -TypeName PSOBject);
}
$ConfigObject | Add-Member -MemberType NoteProperty -Name $ConfigKey -Value $ConfigValue;
}