Public/Get-SDPProxySecureSsh.ps1

function Get-SDPProxySecureSsh {
    param(
        [parameter()]
        [string] $k2context = 'k2rfconnection'
    )

    $endpoint = "proxy_secure_ssh"

    $results = Invoke-SDPRestCall -endpoint $endpoint -method GET -parameterList $PSBoundParameters -k2context $k2context
    return $results
}