exam questions

Exam AZ-204 All Questions

View all questions & answers for the AZ-204 exam

Exam AZ-204 topic 6 question 37 discussion

Actual exam question from Microsoft's AZ-204
Question #: 37
Topic #: 6
[All AZ-204 Questions]

HOTSPOT -

You develop several Azure Functions app functions to process JSON documents from a third-party system. The third-party system publishes events to Azure Event Grid to include hundreds of event types, such as billing, inventory, and shipping updates.

Events must be sent to a single endpoint for the Azure Functions app to process. The events must be filtered by event type before processing. You must have authorization and authentication control to partition your tenants to receive the event data.

You need to configure Azure Event Grid.

Which configuration should you use? To answer, select the appropriate values in the answer area.

NOTE: Each correct selection is worth one point.

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
MatejB
Highly Voted 2 years ago
Check this from official trainig material: https://learn.microsoft.com/en-us/training/modules/azure-event-grid/2-event-grid-overview 1. custom topic Because according to link: "Topics. The event grid topic provides an endpoint where the source sends events(...)Custom topics are application and third-party topics" 2. event subscription Because according to link: "Event subscriptions. A subscription tells Event Grid which events on a topic you're interested in receiving. When creating the subscription, you provide an endpoint for handling the event"
upvoted 42 times
Chris2349
1 year, 10 months ago
Received the same question today on the exam, 15th of June 2023. Scored 887. Answered the same.
upvoted 3 times
...
...
mmdex
Highly Voted 2 years, 1 month ago
I don't know, but from the description of the event domain, I'd say the correct answer is: 1. event domain 2. event subscription https://learn.microsoft.com/en-us/azure/event-grid/event-domains 1. event domain: Using event domain, the third party system does not send data directly to topics. Event domain provides a single endpoint for the system to publish events. 2. event subscription: Azure functions are event handlers. They use subscriptions. It is true that the event domain also provides a single subscription endpoint, but the handler would then receive all events, not just a filtered set as required: "Event domains also allow for domain-scope subscriptions. An event subscription on an event domain will receive all events sent to the domain regardless of the topic the events are sent to." https://learn.microsoft.com/en-us/azure/event-grid/event-domains#domain-scope-subscriptions
upvoted 18 times
warchoon
2 years, 1 month ago
So. It must be 1. event domain 2. event domain You can see the endpoint is the same https://learn.microsoft.com/en-us/azure/event-grid/includes/media/event-grid-domain-example-use-case/contoso-construction-example.png
upvoted 1 times
overhill
5 months ago
Incorrect, the endpoint is for the third party. the subscription is for the az function
upvoted 1 times
...
warchoon
2 years, 1 month ago
https://learn.microsoft.com/en-us/azure/event-grid/how-to-event-domains?tabs=azurecli#create-topics-and-subscriptions:~:text=topics/demotopic1%22%20%5C-,%2D%2Dendpoint,-https%3A//contoso.azurewebsites
upvoted 1 times
...
...
...
Thameur01
Most Recent 3 days, 12 hours ago
1. custom topic 2. event subscription
upvoted 1 times
...
Iaminall
1 month ago
HOPE NEVER SEE YOU AGAIN.
upvoted 1 times
...
BrownieP
2 months, 1 week ago
1. Custom Topic 2. Event Subscription
upvoted 1 times
...
overhill
5 months ago
3rd parties cannot call a system topic endpoint, it has to be the domain. for function they subscribe to subscriptions
upvoted 1 times
overhill
5 months ago
Hence Event Domain Event Subscription
upvoted 1 times
overhill
5 months ago
Domains also give you authentication and authorization control over each topic so you can partition your tenants.
upvoted 1 times
...
overhill
5 months ago
I'm Adjusting my answer to: Event Domain Event Domain
upvoted 1 times
overhill
5 months ago
Functions can subscribe to Domains and receive all the topics from that domain
upvoted 1 times
...
...
...
...
Vichu_1607
6 months, 2 weeks ago
Third Party system endpoint to send events b. Custom Topic: A custom topic is a user-defined endpoint that your application sends events to. In this case, the third-party system would send events to this custom topic. Azure Function app endpoint to handle filtered events d. Event Subscription: An event subscription is a mechanism that defines the destination (the Azure Function app in this case) where the events of a certain type should be sent. You can filter the events that the subscription receives by event type.
upvoted 1 times
...
8ac3742
8 months, 1 week ago
the answer to "Third-party system endpoint to send events" is (3) event domain because (1) event domain can offer authentication over each topic on different tenants, the question mentioned "ou must have authorization and authentication control to partition your tenants to receive the event data" (2) the third-party system can send the events with topic being defined in the payload or header to one single endpoint . The answer to "Azure Functions app endpoint to handle filtered events" is Event Subscription because event subscription can filter event by type.
upvoted 2 times
...
FeriAZ
1 year, 2 months ago
1. event domain management tool within Azure Event Grid that provides a layer for routing and security. It is designed for scenarios with multiple publishers and subscribers, making it ideal for situations where events are coming from a third-party system intended for multiple tenants. 2. event subscription sed to subscribe to events from an Event Grid topic, system topic, or domain. It directs specific events to a handler based on filter criteria, which in this case would be the Azure Functions app.
upvoted 1 times
...
130nk3r5
1 year, 4 months ago
Third Party system to send events? Event Domain or Custom Topic (Both should be right) https://learn.microsoft.com/en-us/azure/event-grid/event-domains https://learn.microsoft.com/en-us/training/modules/azure-event-grid/2-event-grid-overview Azure functions app endpoint to handle filtered events? Event Subscription Explanation: Event Domains are a management and authentication scope for event topics. They provide an endpoint where publishers can send events to, and they are useful when you want to provide multi-tenant isolation. Event Subscription is a mechanism to deliver events from event handlers such as Azure Functions, Logic Apps, or your own custom HTTP listener. You can filter the events that a subscription receives by specifying filter criteria.
upvoted 2 times
...
CarlosTheBoldest
1 year, 4 months ago
I got this question on my exam, 2023Dec, go with what I remember was the most voted answer. Score 902, most of the questions were here, slightly different on wording because the Azure Ad <-> Entra Id change. Case was City Power & Light. Good luck! Important tip, you have access to microsoft learn during the exam!
upvoted 3 times
...
AndySmith
1 year, 5 months ago
According to below link / Figure: 1) 3rd party publishes to Domain EP of Event Grid service 2) Azure Functions and others subscribe to Event Subscription. https://learn.microsoft.com/en-us/azure/event-grid/event-domains?tabs=event-grid-event-schema#example-use-case The excerpt from that page, which supports the Q's requirements (for event domain): "Use event domains to: 1) Manage multitenant eventing architectures at scale. 2) Manage your authentication and authorization. 3) Partition your topics without managing each individually. 4) Avoid individually publishing to each of your topic endpoints. " So, I would go with: 1) event domain 2) event subscription
upvoted 1 times
...
devex
1 year, 7 months ago
1. event domain 2. event subscription Regarding 1.... Requirement: "You must have authorization and authentication control to partition your tenants to receive the event data." From: https://learn.microsoft.com/en-us/azure/event-grid/event-domains "Domains also give you authentication and authorization control over each topic so you can partition your tenants"
upvoted 2 times
...
kvtborad
1 year, 8 months ago
I got this question on 6th August 2023. I was confused so chose a custom topic for the both boxs passed with 904. I got a Case study: city and Lights. All questions are from ExamTopics.
upvoted 4 times
...
dy0917
1 year, 11 months ago
1.Custom topic 2.Event subscriptions
upvoted 2 times
...
nekkilodeon
1 year, 11 months ago
1.Custom topic 2.Event domain
upvoted 2 times
...
surprise0011
2 years ago
i received this one on 2023-04-17, I did not know what to do I selected custom topic twice. I passed with 926. This definitely need more reasarch because it is still there
upvoted 5 times
adilkhan
1 year, 12 months ago
were all the questions from exam topics? please reply
upvoted 2 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago