-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ServiceBus Messaging Integration Events with EventGrid to the Eve…
…ntGrid spec (#3030)
- Loading branch information
1 parent
f0face3
commit 3a55b9e
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
71 changes: 71 additions & 0 deletions
71
specification/eventgrid/data-plane/Microsoft.ServiceBus/stable/2018-01-01/ServiceBus.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"swagger": "2.0", | ||
"info": { | ||
"version": "2018-01-01", | ||
"title": "Schema of Azure ServiceBus Messaging events published to Azure Event Grid", | ||
"description": "Describes the schema of the Azure ServiceBus Messaging events published to Azure Event Grid. This corresponds to the Data property of an EventGridEvent." | ||
}, | ||
"paths": {}, | ||
"definitions": { | ||
"ServiceBusActiveMessagesAvailableWithNoListenersEventData": { | ||
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.ActiveMessagesAvailableWithNoListeners event.", | ||
"type": "object", | ||
"properties": { | ||
"namespaceName": { | ||
"description": "The namespace name of the Microsoft.ServiceBus resource.", | ||
"type": "string" | ||
}, | ||
"requestUri": { | ||
"description": "The endpoint of the Microsoft.ServiceBus resource.", | ||
"type": "string" | ||
}, | ||
"entityType": { | ||
"description": "The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'.", | ||
"type": "string" | ||
}, | ||
"queueName": { | ||
"description": "The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null.", | ||
"type": "string" | ||
}, | ||
"topicName": { | ||
"description": "The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null.", | ||
"type": "string" | ||
}, | ||
"subscriptionName": { | ||
"description": "The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null.", | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"ServiceBusDeadletterMessagesAvailableWithNoListenersEventData": { | ||
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.ServiceBus.DeadletterMessagesAvailableWithNoListenersEvent event.", | ||
"type": "object", | ||
"properties": { | ||
"namespaceName": { | ||
"description": "The namespace name of the Microsoft.ServiceBus resource.", | ||
"type": "string" | ||
}, | ||
"requestUri": { | ||
"description": "The endpoint of the Microsoft.ServiceBus resource.", | ||
"type": "string" | ||
}, | ||
"entityType": { | ||
"description": "The entity type of the Microsoft.ServiceBus resource. Could be one of 'queue' or 'subscriber'.", | ||
"type": "string" | ||
}, | ||
"queueName": { | ||
"description": "The name of the Microsoft.ServiceBus queue. If the entity type is of type 'subscriber', then this value will be null.", | ||
"type": "string" | ||
}, | ||
"topicName": { | ||
"description": "The name of the Microsoft.ServiceBus topic. If the entity type is of type 'queue', then this value will be null.", | ||
"type": "string" | ||
}, | ||
"subscriptionName": { | ||
"description": "The name of the Microsoft.ServiceBus topic's subscription. If the entity type is of type 'queue', then this value will be null.", | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains 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