| Scope | Type | Description | Admin Consent |
|---|---|---|---|
| Application.Read.All | Application | Read all applications | Yes |
| Application.ReadWrite.All | Application | Read and write all applications | Yes |
| Application.ReadWrite.OwnedBy | Application | Manage apps that this app creates or owns | Yes |
| offline_access | Delegated | Maintain access to data you have given it access to | No |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import requests | |
| import base64 | |
| import json | |
| import pandas as pd | |
| # Retrieve variables from system environment variables | |
| organization = os.environ.get("AZURE_DEVOPS_ORG_NAME") | |
| project = os.environ.get("AZURE_DEVOPS_PROJECT_NAME") | |
| feed_id = os.environ.get("AZURE_DEVOPS_FEED_ID") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Get Azure AI Foundry Model Availability by Region | |
| # This script queries Azure AI model availability (OpenAI, AI Services, etc.) across regions and outputs to CSV | |
| param( | |
| [string]$OutputFile = "foundry-model-availability.csv", | |
| [switch]$IncludeCapacity | |
| ) | |
| Write-Host "Querying Azure AI Foundry model availability..." -ForegroundColor Cyan |
OlderNewer