Functions/Get-DqContext.ps1

. (Join-Path -Path $SharedTypesPath -ChildPath "DqConnectionTypes.ps1")

Function Get-DqContext
{
  <#
    .SYNOPSIS
      Deze functie vraagt de huidige verbindinggegevens op naar een DQ Monitor Webservice.
   
    .DESCRIPTION
      De Get-DqContext haalt verbindinggegevens op, die eerder is opgeslagen via Set-DqContext, over een DQ Monitor Webservice.
         
    .INPUTS
      Geen.
   
    .OUTPUTS
      Een [DqConnection] object.
   
    .EXAMPLE
      PS> Get-DqContext
       
      PortalUrl ApiUrl StsUrl
      ------ ------ ------
      https://woongeluk.dq-monitor.nl/ https://woongeluk-api.dq-monitor.nl/api/ https://woongeluk-sts.dq-monitor.nl/oauth/ro
   
    .LINK
      Set-DqContent
  #>

  [OutputType([DqConnection])]
  [CmdletBinding()]
  Param()

  Validate-Context -ErrorAction Stop

  Return $DqConnectionSettings
}