powershellwrapper icon indicating copy to clipboard operation
powershellwrapper copied to clipboard

Audit module against current IT Glue API documentation

Open davidhaymond opened this issue 3 years ago • 2 comments

Review the current IT Glue API docs and verify that the module still has 100% feature parity.

It might be neat to find a way to automate some of this. Maybe create an API schema that we can test against? It would be easier to update the schema file than to go through all the source code.

davidhaymond avatar Dec 05 '22 17:12 davidhaymond

Here's my quick and (very) dirty initial attempt at starting something...to get the brain juices flowing if nothing else. https://gist.github.com/oOblik/71afdde3820e24aceb974ad4664918e0

oOblik avatar Sep 23 '23 06:09 oOblik

Check out this tool created by Angus Warrens & Kelvin Tegelaar. I was able to get it to start working again if you comment out the following on lines 18-21. It doesn't pull everything but it's an excellent start to automating some endpoint checks.

AzGlue | API Endpoint Scraper.ps1

    if (-not $labelFull) {
        Write-Host "No match: $($item.className)"
       continue
    } 

Celerium avatar Sep 23 '23 22:09 Celerium