1

I cannot deploy a Stream Analytics Job for IoT Edge automatically, since that I haven't find way to specify Edge as Hosted Environment. This property seems to be still not implemented in ARM Template, Powershell and Azure CLI.

user2297037
  • 1,167
  • 2
  • 14
  • 34

1 Answers1

2

sorry for this, we will add this in the documentation shortly In the meantime you can use the following parameter: JobType="edge" We'll add all the info in the doc. Thanks, JS

Jean-Sébastien
  • 737
  • 3
  • 7
  • Hello JS, When trying to deploy my edge asa job (and having "jobType": "Edge" specified), I get the following error message : "Current operation is not supported for the API version and JobType 'Edge' specified in the client request". Any idea or documentation on how to ARM-deploy an edge job ? – Sam Vanhoutte Feb 07 '19 at 12:17
  • Hi, for ARM template you can use: "properties": {     "sku": {       "name": "standard"     },       "eventsLateArrivalMaxDelayInSeconds": 1,       "jobType": "edge",     "inputs": [… } For the API, more info in this doc: https://learn.microsoft.com/en-us/azure/stream-analytics/stream-analytics-cicd-api – Jean-Sébastien Feb 13 '19 at 23:47