Reputation: 1
I want to use Azure Python SDK to provision ServiceBus queue. I am able to find one package https://pypi.org/project/azure-servicebus/ but it seems to be taking queue name as input. can you please guide me how I can provision Azure service bus queue using python SDK
Upvotes: 0
Views: 56
Reputation: 136196
The package you would want to use is azure-mgmt-servicebus
. The method you would need to use for creating a queue is create_or_update
.
Upvotes: 1