--- id: azure-mgmt-servicebus version: "10.0.0" license: MIT license_treatment: permissive maintenance: active --- # azure-mgmt-servicebus — Microsoft Azure Servicebus Management Client Library for Python License: permissive · Maintenance: active · Downloads: 7.7M/mo ## What it is and what it does This is the official Azure SDK client library for managing Service Bus infrastructure on Microsoft Azure. It provides programmatic control over Service Bus namespaces, queues, topics, subscriptions, authorization rules, and related network configuration—the administrative layer for Azure's message broker service. Version 10.0.0 introduces hybrid model objects that behave as both dictionaries and typed models, adds network security perimeter support, geo-disaster recovery failover operations, and system metadata tracking across resources. It requires Python 3.10+ and depends on azure-mgmt-core for common ARM client logic, isodate for date parsing, and typing-extensions for runtime type hints. Use it for: - Provision and configure Service Bus namespaces, queues, and topics as part of infrastructure-as-code or deployment automation. - Manage authorization rules and access policies for Service Bus resources programmatically. - Monitor and update Service Bus namespace properties (TLS version, encryption, public network access) in production environments. - Implement disaster recovery by triggering failover operations between paired Service Bus namespaces. - Query and manage network security perimeter configurations for Service Bus in regulated environments. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Manages Azure Service Bus resources (namespaces, queues, topics, subscriptions, rules) programmatically via the Azure Resource Manager API. Yes. This is the official, actively maintained Azure SDK for Service Bus management. Low install friction, permissive license, no known vulnerabilities, and production-stable status (Development Status 5). Install it if you need to manage Service Bus resources programmatically on Azure—it is the standard tool for that task. Be aware that version 10.0.0 introduces breaking changes to model structures; review the migration guide if upgrading from earlier versions. ## Install pip install azure-mgmt-servicebus uv add azure-mgmt-servicebus poetry add azure-mgmt-servicebus ## Installing azure-mgmt-servicebus Before you install: Low install friction with a pure-Python wheel. Actively maintained; latest release 25 days old. Requires Python 3.10+. Three lightweight runtime dependencies (isodate, azure-mgmt-core, typing-extensions) with no compiled binaries. License in practice: MIT license permits commercial and private use with minimal restrictions—standard permissive terms typical of Azure SDK packages. Quickstart: pip install azure-mgmt-servicebus from azure.mgmt.servicebus import ServiceBusManagementClient import os sub_id = os.getenv("AZURE_SUBSCRIPTION_ID") client = ServiceBusManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id) Requires Python 3.10+. Authentication requires environment variables AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, and AZURE_SUBSCRIPTION_ID configured for Microsoft Entra token authentication. Verify before relying: - Whether the hybrid model migration path is straightforward for existing code upgrading to 10.0.0. - Performance characteristics when managing large numbers of Service Bus resources or namespaces. - Whether DefaultAzureCredential is available as a runtime dependency or requires separate installation. ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 7.7M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags azure service bus management, azure resource manager service bus, manage azure queues topics, azure service bus client library, azure sdk python service bus, service bus namespace administration, azure messaging infrastructure, azure-sdk, cloud-infrastructure, message-broker [View on SkillFed](https://skillfed.io/packages/azure-mgmt-servicebus) · [View on PyPI](https://pypi.org/project/azure-mgmt-servicebus/)