function Get-AlkamiConnectionParameters() { <# .SYNOPSIS Get Alkami connection parameters for Service Fabric #> [HashTable]$connParams = @{} $machineName = GetMachineName -useMachineName $True $connectionEndpoint = [string]::Concat($machineName, ":19000") $connParams.Add("ConnectionEndpoint", $connectionEndpoint) return $connParams }