Created
July 28, 2015 12:39
-
-
Save Kevin-Bronsdijk/5c483b1b570b96016d63 to your computer and use it in GitHub Desktop.
azure-logic-app-conditions-success-and-failure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
"conditions": [ { | |
"dependsOn": "name_of_the_action" | |
} ] | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
"conditions": [ | |
{ | |
"expression": "first expression returning true/false" | |
}, | |
{ | |
"expression": "second expression returning true/false" | |
}] | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
"conditions": [ | |
{ | |
"expression": "@and(expression1, expression2) " | |
}] | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@equals(actions('http').status, 'Succeeded') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@equals(actions('http').status, 'Failed') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment