How to list all the queues or topics that exist for a service bus entity?
jawadkalia opened this issue · 3 comments
jawadkalia commented
https://learn.microsoft.com/en-us/rest/api/servicebus/enumeration
How to perform that operation using this library?
minghuaw commented
This is a management API that uses a HTTP request. The crate as of now only implements the AMQP side of the SDK, and thus this operation is not supported by the crate. However, since it is a HTTP request, it should be fairly straightforward to implement it using the reqwest
crate.
jawadkalia commented
Thank you so much!
Would you be adding http capabilities in this crate in the future?