skillfed

azure-mgmt-frontdoor

Microsoft Azure Frontdoor Management Client Library for Python

azure-mgmt-frontdoor v2.0.0 212.9K downloads/30d#9,448 on PyPI5,588
Permissive license MIT Active released

What it is and what it does

This is the official Azure SDK client library for managing Azure Front Door—a global content delivery and load balancing service. It wraps the Azure control plane API, allowing you to create, update, delete, and inspect Front Door instances, routing rules, backend pools, health probes, WAF policies, and related resources programmatically from Python.

Version 2.0.0 introduces breaking changes: many model properties have been reorganized under nested `properties` objects to support hybrid dictionary-and-model semantics. The library depends on azure-mgmt-core for common Azure SDK infrastructure and isodate for date handling. It requires Python 3.10+ and authenticates via Microsoft Entra using credential objects.

Use it for:

  • Automate provisioning and configuration of Azure Front Door instances and routing rules in infrastructure-as-code pipelines.
  • Programmatically manage WAF policies and security rules across multiple Front Door resources.
  • Query and monitor Front Door health probe settings, backend pool status, and latency metrics.
  • Integrate Front Door management into custom Azure resource orchestration or multi-cloud deployment tools.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Manages Azure Front Door resources—CDN, load balancing, and WAF policies—via the Azure control plane API.

Yes. This is the official, actively maintained Azure SDK for Front Door management. Low install friction, no known vulnerabilities, permissive MIT license, and broad Python version support (3.10–3.14). Install it if you need to manage Azure Front Door resources from Python; version 2.0.0 requires migration of code using the old flat model structure, so review the breaking changes before upgrading from earlier versions.

Install

azure-mgmt-frontdoor on PyPI

pip

pip install azure-mgmt-frontdoor

uv

uv add azure-mgmt-frontdoor

poetry

poetry add azure-mgmt-frontdoor

Installing azure-mgmt-frontdoor

Before you install

Low friction: pure Python wheel with three lightweight runtime dependencies (isodate, azure-mgmt-core, typing-extensions). Active maintenance—last commit 2026-08-14, release 45 days old. Requires Python 3.10+.

License in practice

MIT license permits commercial and private use with minimal restrictions.

Quickstart

pip install azure-mgmt-frontdoor

from azure.mgmt.frontdoor import FrontDoorManagementClient
from azure.identity import DefaultAzureCredential
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = FrontDoorManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)

Requires Azure subscription and environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, AZURE_SUBSCRIPTION_ID.

Verify before relying

  • Whether version 2.0.0's hybrid model migration path is documented clearly enough for existing users.
  • Performance characteristics and rate limits when managing large numbers of Front Door resources.
  • Whether azure-identity is required as a runtime dependency or only as an optional authentication provider.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 3 — isodate, azure-mgmt-core, typing-extensions
Maintenance actively maintained — 45 days since the last release
Last repo commit
First released
Downloads 212,868/month — #9,448 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: azure_mgmt_frontdoor-2.0.0-py3-none-any.whl

Keywords: azure, azure sdk

Development Status :: 5 - Production/StableProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14

Tags

azure front door managementazure cdn api clientazure load balancing sdkazure waf policy managementazure frontdoor python sdk
azure-sdkcloud-infrastructure

More WWW/HTTP packages