Is there a way for me to send a message directly into a Azure service bus deadletter queue for a subscription without doing this operation on the parent subscription?
Here is a bit more detail about the problem :
We have a Azure function that has a service bus trigger on it, once a message is received, it hands the message over to a durable function orchestrator and completes the original message.
The problem we are trying to solve is how do we move the message into the deadletter queue for the subscription if the durable function orchestrator fails (after retries have exhausted).