Azure Function - Python - ServiceBus Output Binding - Setting Custom Properties
问题 I have an Azure Function written in Python that has an Service Bus (Topic) output binding. The function is triggered by another queue, we process some files from a blobl storage and then put another message in a queue. My function.json file looks like that: { "bindings": [ { "type": "serviceBus", "connection": "Omnibus_Input_Send_Servicebus", "name": "outputMessage", "queueName": "validation-output-queue", "accessRights": "send", "direction": "out" } ], "disabled": false } In my function, I