Skip to content

Commit

Permalink
Support logicAppReceivers in actionGroup apis (#2511)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuelilu33 authored and sergey-shandar committed Feb 21, 2018
1 parent ad5add7 commit ba06cc2
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,13 @@
"$ref": "#/definitions/VoiceReceiver"
},
"description": "The list of voice receivers that are part of this action group."
},
"logicAppReceivers": {
"type": "array",
"items": {
"$ref": "#/definitions/LogicAppReceiver"
},
"description": "The list of logic app receivers that are part of this action group."
}
},
"required": [
Expand Down Expand Up @@ -623,7 +630,7 @@
]
},
"VoiceReceiver": {
"description": "An voice receiver.",
"description": "A voice receiver.",
"properties": {
"name": {
"type": "string",
Expand All @@ -643,6 +650,28 @@
"countryCode",
"phoneNumber"
]
},
"LogicAppReceiver": {
"description": "A logic app receiver.",
"properties": {
"name": {
"type": "string",
"description": "The name of the logic app receiver. Names must be unique across all receivers within an action group."
},
"resourceId": {
"type": "string",
"description": "The azure resource id of the logic app receiver."
},
"callbackUrl": {
"type": "string",
"description": "The callback url where http request sent to."
}
},
"required": [
"name",
"resourceId",
"callbackUrl"
]
},
"ReceiverStatus": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@
"countryCode": "1",
"phoneNumber": "1234567890"
}
],
"logicAppReceivers": [
{
"name": "Sample logicApp",
"resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp",
"callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w"
}
]
}
}
Expand Down Expand Up @@ -148,6 +155,13 @@
"countryCode": "1",
"phoneNumber": "1234567890"
}
],
"logicAppReceivers": [
{
"name": "Sample logicApp",
"resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp",
"callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w"
}
]
}
}
Expand Down Expand Up @@ -226,6 +240,13 @@
"countryCode": "1",
"phoneNumber": "1234567890"
}
],
"logicAppReceivers": [
{
"name": "Sample logicApp",
"resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp",
"callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w"
}
]
}
}
Expand Down

0 comments on commit ba06cc2

Please sign in to comment.