endpoints/RestPSRoutes.json
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
[ { "RequestType": "GET", "RequestURL": "/proc", "RequestCommand": "Get-Process -ProcessName PowerShell -ErrorAction SilentlyContinue | Select-Object -Property ProcessName,Id -ErrorAction SilentlyContinue" }, { "RequestType": "GET", "RequestURL": "/endpoint/status", "RequestCommand": "return 1" }, { "RequestType": "GET", "RequestURL": "/endpoint/routes", "RequestCommand": "c:/RestPS/endPoints/GET/Invoke-GetRoutes.ps1" }, { "RequestType": "GET", "RequestURL": "/process", "RequestCommand": "c:/RestPS/endPoints/GET/Invoke-GetProcess.ps1" }, { "RequestType": "PUT", "RequestURL": "/Service", "RequestCommand": "c:/RestPS/endPoints/PUT/Invoke-GetProcess.ps1" }, { "RequestType": "POST", "RequestURL": "/data", "RequestCommand": "c:/RestPS/endPoints/POST/Invoke-GetProcess.ps1" }, { "RequestType": "DELETE", "RequestURL": "/data", "RequestCommand": "c:/RestPS/endPoints/DELETE/Invoke-GetProcess.ps1" } ] |