{"id":17924413,"url":"https://github.com/itpropro/azureapiutils","last_synced_at":"2026-01-21T14:03:50.241Z","repository":{"id":231718780,"uuid":"778023000","full_name":"itpropro/AzureApiUtils","owner":"itpropro","description":"Helper utilities for interacting with Azure and Graph APIs","archived":false,"fork":false,"pushed_at":"2024-04-25T21:10:09.000Z","size":226,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T18:41:11.251Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.powershellgallery.com/packages/AzureApiUtils","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itpropro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-26T23:48:04.000Z","updated_at":"2024-04-25T21:10:12.000Z","dependencies_parsed_at":"2024-04-05T14:52:36.389Z","dependency_job_id":"0b514d64-b7de-496a-8e72-b0b690d1466d","html_url":"https://github.com/itpropro/AzureApiUtils","commit_stats":null,"previous_names":["itpropro/azureapiutils"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/itpropro/AzureApiUtils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2FAzureApiUtils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2FAzureApiUtils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2FAzureApiUtils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2FAzureApiUtils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itpropro","download_url":"https://codeload.github.com/itpropro/AzureApiUtils/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2FAzureApiUtils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28634787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-28T20:48:42.309Z","updated_at":"2026-01-21T14:03:50.225Z","avatar_url":"https://github.com/itpropro.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AzureApiUtils module\n\n![PowerShell Gallery Version (including pre-releases)](https://img.shields.io/powershellgallery/v/AzureApiUtils?labelColor=181818\u0026color=4578d2\u0026label=PS%20Gallery%20Version)\n![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/AzureApiUtils?labelColor=181818\u0026color=4578d2\u0026label=PS%20Gallery%20Downloads)\n![Code Coverage](https://img.shields.io/badge/coverage-96.15%25-yellow?labelColor=181818\u0026color=4578d2\u0026label=Test%20Coverage)\n\n## Features\n\n- ✨ Automatic retry and pagination handling\n- 💪 Easy interactions with Azure and Graph APIs\n- 🚀 Simplified permission management for Managed Identities\n\n## Installation\n\n```PowerShell\nInstall-Module AzureApiUtils\n```\n\n## First steps\n\nBefore using the functions in this module, you need to install and import the `Microsoft.Graph.Authentication` module, which is used for authenticating to the Graph API.\n\n```powershell\nInstall-Module Microsoft.Graph.Authentication\n```\n\nYou also need to authenticate to the Graph API using the `Connect-MgGraph` cmdlet. This needs to be done in the same session where you plan to use the `AzureApiUtils` functions.\n\n```powershell\nConnect-MgGraph\n```\n\n### Available functions\n\n- `Add-AppPermission`: Adds application permissions to an app in Entra ID. Made to simplify permission management with Managed Identities. \n- `Get-AppPermission`: Retrieves application permissions from an app in Entra ID. Made to simplify permission management with Managed Identities. \n- `Remove-AppPermission`: Removes application permissions from an app in Entra ID. Made to simplify permission management with Managed Identities. \n- `Invoke-AzureRequest`: Invokes a request to Azure and handles pagination. Is a high level wrapper around `Invoke-RetryRequest`, you normally only need this.\n- `Invoke-GraphApiRequest`: Invokes a Graph API request. Is a high level wrapper around `Invoke-GraphApiRetryRequest`, with support for pagination. You normally only need this\n- `Invoke-GraphApiRetryRequest`: Invokes a Graph API request with retry logic for rate limiting.\n- `Invoke-RetryRequest`: Invokes a request with retry logic for rate limiting.\n- `New-AuthorizationHeader`: Generates an authorization header for HTTP requests.\n\n### Available functions\n\n\u003cdetails\u003e\n\u003csummary\u003eFunction list\u003c/summary\u003e\n\n- Add-AppPermission\n- Get-AppPermission\n- Invoke-AzureRequest\n- Invoke-GraphApiRequest\n- Invoke-GraphApiRetryRequest\n- Invoke-RetryRequest\n- New-AuthorizationHeader\n- Remove-AppPermission\n\n\u003c/details\u003e\n\n## Contribution\n\nSee [Contributing Guide](https://github.com/itpropro/AzureApiUtils/blob/main/CONTRIBUTING.md).\n\n## License\n\nMade with :heart:\n\nPublished under [MIT License](./LICENCE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitpropro%2Fazureapiutils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitpropro%2Fazureapiutils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitpropro%2Fazureapiutils/lists"}