Amit
Amit

Reputation: 1

Using PythonSDK for Azure to provision servicebus resources

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

Answers (1)

Gaurav Mantri
Gaurav Mantri

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

Related Questions