CoreOps/Get-SDPSystemPartialParameters.ps1
function Get-SDPSystemPartialParameters { param( [parameter()] [string] $k2context = 'k2rfconnection' ) $endpoint = "system/partial_system_parameters" $results = Invoke-SDPRestCall -endpoint $endpoint -method GET -parameterList $PSBoundParameters -k2context $k2context return $results } |