public/New-PACRestMethodJsonBody.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
function New-PACRestMethodJsonBody { [CmdletBinding()] param ( # body values [Parameter(Position=0)] [hashtable] $Values ) begin {} process { if ($Values) { New-Object RestMethodJsonBody @($Values) } else { New-Object RestMethodJsonBody @() } } end {} } |