Technical & DevelopmentIntermediate
azure-mgmt-apimanagement-dotnet
API Management provisioning via ARM
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/microsoft/skills --skill azure-mgmt-apimanagement-dotnetnpx skills add https://github.com/microsoft/skills --skill azure-mgmt-apimanagement-dotnetOr paste this URL into your assistant to install:
Overview
What This Skill Does
Management plane SDK for Azure API Management in .NET. Handles provisioning and configuration of APIM services, APIs, products, subscriptions, policies, users, groups, gateways, and backends through Azure Resource Manager.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure.ResourceManager.ApiManagement (.NET)
Management plane SDK for provisioning and managing Azure API Management resources via Azure Resource Manager.
⚠️ Management vs Data Plane
- This SDK (Azure.ResourceManager.ApiManagement): Create services, APIs, products, subscriptions, policies, users, groups
- Data Plane: Direct API calls to your APIM gateway endpoints
Installation
dotnet add package Azure.ResourceManager.ApiManagement
dotnet add package Azure.Identity
Current Version: v1.3.0
Environment Variables
AZURE_SUBSCRIPTION_ID=<your-subscription-id> # Required: Azure subscription ID
AZURE_TOKEN_CREDENTIALS=prod # Required only if DefaultAzureCredential is used in production
AZURE_TENANT_ID=<tenant-id> # For service principal auth (optional)
AZURE_CLIENT_ID=<client-id> # For service principal auth (optional)
AZURE_CLIENT_SECRET=<client-secret> # For service principal auth (optional)
Lines 1 - 26 of 308
Recommendations