Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added definitions for SubscriptionValidationEventData and Subscriptio…
…nDeletedEventData.
  • Loading branch information
kalyanaj committed May 11, 2018
commit f357468f584e763047c3a49aedd0248cbec1ef59
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,30 @@
"type": "string"
}
}
},
"SubscriptionValidationEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.EventGrid.SubscriptionValidationEvent.",
"type": "object",
"properties": {
"validationCode": {
"description": "The validation code sent by Azure Event Grid to validate an event subscription. To complete the validation handshake, the subscriber must either respond with this validation code as part of the validation response, or perform a GET request on the validationUrl (available starting version 2018-05-01-preview).",
"type": "string"
},
"validationUrl": {
"description": "The validation URL sent by Azure Event Grid (available starting version 2018-05-01-preview). To complete the validation handshake, the subscriber must either respond with the validationCode as part of the validation response, or perform a GET request on the validationUrl (available starting version 2018-05-01-preview).",
"type": "string"
}
}
},
"SubscriptionDeletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.EventGrid.SubscriptionDeletedEvent.",
"type": "object",
"properties": {
"eventSubscriptionId": {
"description": "The Azure resource ID of the deleted event subscription.",
"type": "string"
}
}
}
},
"parameters": {
Expand Down