I'm finding absolutely 0 documentation about how to output from Stream Analytics to Azure Synapse Analytics as an output... I've got it configured in the portal but when I export the template all of the details about this output are lost besides the name.
I tried building it from scratch and there's no documentation at all. How do I write this into an ARM template? I have the following...
"outputs": [
{
"name": "synapse-output",
"properties": {
"datasource": {
"type": "",
"properties": {
}
}
}
}
]
And there are no details about how to fill it in... what is the Type for this type of output and how do I even fill in the properties with 0 documentation?