function Get-ConfigurationDataMapValue { [CmdletBinding()] Param( [Parameter(Mandatory=$true)] $Map, [Parameter(Mandatory=$true)] [string] $Key ) return $Map[$Key] }