Advertisement
Guest User

ct_synapse_query

a guest
Jan 13th, 2022
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. "name": "[concat(parameters('workspaceName'), '/myPipeline')]",
  2. "type": "Microsoft.Synapse/workspaces/pipelines",
  3. "apiVersion": "2019-06-01-preview",
  4. "properties": {
  5. "activities": [
  6. {
  7. "name": "Do Something",
  8. "type": "GetMetadata",
  9. "dependsOn": [],
  10. "policy": {
  11. "timeout": "7.00:00:00",
  12. "retry": 0,
  13. "retryIntervalInSeconds": 30,
  14. "secureOutput": false,
  15. "secureInput": false
  16. },
  17. },
  18. {
  19. "name": "My Pipeline",
  20. "type": "IfCondition",
  21. "userProperties": [],
  22. "typeProperties": {
  23. "expression": {
  24. "value": "@not(empty(activity('Do Something').output.childitems))",
  25. "type": "Expression"
  26. },
  27. "ifTrueActivities": [
  28. {
  29. "name": "Do something in pipeline",
  30. "type": "SqlPoolStoredProcedure",
  31. "sqlPool": {
  32. "referenceName": "devdatasqldb01",
  33. "type": "SqlPoolReference"
  34. },
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement