{"id":918,"date":"2021-01-26T11:26:33","date_gmt":"2021-01-26T19:26:33","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/azure-sdk\/?p=918"},"modified":"2021-03-03T10:33:32","modified_gmt":"2021-03-03T18:33:32","slug":"eventhubs-clients","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/azure-sdk\/eventhubs-clients\/","title":{"rendered":"How to choose the right Azure Event Hubs .NET client library type for your application"},"content":{"rendered":"<p><a href=\"https:\/\/azure.microsoft.com\/services\/event-hubs\/\">Azure Event Hubs<\/a> is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This lets you process and analyze the massive amounts of data produced by your connected devices and applications. Once Event Hubs has collected the data, you can retrieve, transform, and store it using any real-time analytics provider, such as <a href=\"https:\/\/azure.microsoft.com\/services\/stream-analytics\/\">Azure Stream Analytics<\/a>, or with batching\/storage adapters.<\/p>\n<p>Since its introduction, the Event Hubs service and the libraries used to interact with it have been evolving to offer more features and a world-class experience for developers. As a consequence of continual improvement while avoiding changes that may break existing applications, several generations of libraries for Azure Event Hubs have been released into the ecosystem. In addition to there being multiple libraries, each offers a slightly different set of clients for use in applications. Because of the number of options, it can be confusing to know which is best suited for your application.<\/p>\n<p>This article will focus on the current generation client library, <code>Azure.Messaging.EventHubs<\/code>, which we recommend for developing of new applications and, where possible when enhancing existing applications. Our goal is that, after reading, you have an understanding of the producer, consumer, and processor types that are offered and the scenarios where they are best applied.<\/p>\n<h2>Event Hubs Client Library Packages for .NET<\/h2>\n<h3>Azure.Messaging.EventHubs<\/h3>\n<p><a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/README.md\">Azure.Messaging.EventHubs<\/a> is the current generation of the library and is under active development, with improvements and new features being released on a regular cadence. It supports the <code>netstandard2.0<\/code> platform, allowing it to be used with a wide range of host environments including .NET 5, .NET Core, and the full .NET Framework. The library retains high-level feature parity with the previous generation, <code>Microsoft.Azure.EventHubs<\/code>, but with a more discrete client hierarchy and improved API.<\/p>\n<p>The <code>Azure.Messaging.EventHubs<\/code> library is part of the initiative to improve the development experience across Azure services. To this end, it follows a set of uniform <a href=\"https:\/\/azure.github.io\/azure-sdk\/general_introduction.html\">design guidelines<\/a> intended to drive a consistent experience across development languages and employ established API patterns for all Azure services. The library also follows a set of <a href=\"https:\/\/azure.github.io\/azure-sdk\/dotnet_introduction.html\">.NET-specific guidelines<\/a> to ensure that the .NET SDK has a natural and idiomatic feel that mirrors that of the .NET base class libraries.<\/p>\n<p>The <code>Azure.Messaging.EventHubs<\/code> library also provides the ability to share in some of the cross-service improvements made to the Azure development experience, such as a unified diagnostics pipeline offering a common view of the activities across each of the client libraries. Another key improvement is a streamlined and simplified experience for authentication using the new <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/identity\/Azure.Identity\/README.md\">Azure.Identity<\/a> library to share credentials between the clients for different Azure services.<\/p>\n<h3>Microsoft.Azure.EventHubs <em>(legacy)<\/em><\/h3>\n<p>This is the previous generation library, the first to be dedicated to Event Hubs. This library is still supported by Microsoft, and will be well into the future. However, development is focused only on bug fixes and critical updates. It will not be receiving the new features and enhancements developed for <code>Azure.Messaging.EventHubs<\/code>.<\/p>\n<p>We recommend using this library only for legacy applications that have an existing dependency on it, not for developing new applications.<\/p>\n<h3>Windows.Azure.ServiceBus <em>(legacy)<\/em><\/h3>\n<p>This is the oldest of the legacy libraries, supporting the Azure Messaging offerings as a whole rather than being dedicated to any one service. This design stems from when Event Hubs was still bound to Service Bus and was not a true stand-alone product. The library supports only the full .NET Framework and is not compatible with .NET Core. It offers a different feature set than the more recent client libraries, and does not have high-level feature parity with the newer generations.<\/p>\n<p>While this library is still supported by Microsoft, development is limited to critical bug fixes. It will not be receiving the new features and enhancements developed for <code>Azure.Messaging.EventHubs<\/code>. We recommend using this library only for legacy applications that have an existing dependency on it, not for developing new applications.<\/p>\n<h2>Choosing a Client from Azure.Messaging.EventHubs<\/h2>\n<table>\n<thead>\n<tr>\n<th>\n        I want to&#8230;\n      <\/th>\n<th>\n        Event Hubs clients\n      <\/th>\n<th>\n        More information\n      <\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>\n        Explore Event Hubs by publishing and reading events\n      <\/td>\n<td style=\"white-space:nowrap\">\n        EventHubProducerClient<br \/> and<br \/> EventHubConsumerClient\n      <\/td>\n<td>\n        <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\/Sample01_HelloWorld.md\">Sample<\/a>\n      <\/td>\n<\/tr>\n<tr>\n<td>\n        Publish events\n      <\/td>\n<td>\n        EventHubProducerClient\n      <\/td>\n<td>\n        <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\/Sample04_PublishingEvents.md\">Sample<\/a>\n      <\/td>\n<\/tr>\n<tr>\n<td>\n        Read events from all partitions of an Event Hub in a typical production application, using Azure Storage Blobs to store checkpoint and load balancing data\n      <\/td>\n<td>\n        EventProcessorClient\n      <\/td>\n<td>\n        <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs.Processor\/samples\/Sample04_ProcessingEvents.md\">Sample<\/a>\n      <\/td>\n<\/tr>\n<tr>\n<td>\n        Read events from a single partition of an Event Hub\n      <\/td>\n<td>\n        EventConsumerClient\n      <\/td>\n<td>\n        <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\/Sample05_ReadingEvents.md#read-events-from-a-partition\">Sample<\/a>\n      <\/td>\n<\/tr>\n<tr>\n<td>\n        Read events from all partitions of an Event Hub and store checkpoint and load balancing data somewhere other than Azure Storage Blobs\n      <\/td>\n<td style=\"white-space:nowrap\">\n        EventProcessor<TPartition>\n      <\/td>\n<td>\n        <a href=\"https:\/\/devblogs.microsoft.com\/azure-sdk\/custom-event-processor\/\">Article<\/a>\n      <\/td>\n<\/tr>\n<tr>\n<td>\n        Read events from a single partition of an Event Hub for an application with high-throughput needs\n      <\/td>\n<td>\n        PartitionReceiver\n      <\/td>\n<td>\n        <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\/Sample05_ReadingEvents.md#read-events-from-a-partition-using-the-partitionreceiver\">Sample<\/a>\n      <\/td>\n<\/tr>\n<tr>\n<td>\n        Read events from all partitions of an Event Hub for an application with high-throughput needs\n      <\/td>\n<td style=\"white-space:nowrap\">\n        EventProcessor<TPartition>\n      <\/td>\n<td>\n        <a href=\"https:\/\/devblogs.microsoft.com\/azure-sdk\/custom-event-processor\/\">Article<\/a>\n      <\/td>\n<\/tr>\n<tr>\n<td>\n        Read events from a single partition of an Event Hub using a batch-based approach\n      <\/td>\n<td>\n        PartitionReceiver\n      <\/td>\n<td>\n        <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\/Sample05_ReadingEvents.md#read-events-from-a-partition-using-the-partitionreceiver\">Sample<\/a>\n      <\/td>\n<\/tr>\n<tr>\n<td>\n        Read events from all partitions of an Event Hub using a batch-based approach\n      <\/td>\n<td style=\"white-space:nowrap\">\n        EventProcessor<TPartition>\n      <\/td>\n<td>\n        <a href=\"https:\/\/devblogs.microsoft.com\/azure-sdk\/custom-event-processor\/\">Article<\/a>\n      <\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Azure.Messaging.EventHubs Client Details<\/h2>\n<p>The <code>Azure.Messaging.EventHubs<\/code> library has the goal of providing an approachable onboarding experience for developers new to messaging and\/or Event Hubs, focusing on enabling a quick initial feedback loop for publishing and consuming events. As developers shift from exploration to tackling real-world production scenarios, the library offers a gradual step-up path, building on the onboarding experience with additional robustness while maintaining a familiar API surface. For applications with high-throughput or special needs, a set of primitives are available to allow developers to work at a low-level and assert more control.<\/p>\n<p>Each Event Hubs client targets a specific area of Event Hubs functionality, presenting an API focused on a concrete set of scenarios. We believe this avoids the distraction of a more complex API surface with areas which are likely to be needed only for more specialized scenarios. To support this design, the client hierarchy has been organized to align with two general categories, mainstream and specialized.<\/p>\n<p>The mainstream set of clients were designed to address the most common production application scenarios and to provide an onboarding experience for those new to Event Hubs. The specialized set of clients focus on high-throughput and enabling developers to assert a higher degree of control. This section will briefly introduce the clients in both categories, though samples will continue to focus heavily on the mainstream clients.<\/p>\n<h3>Mainstream<\/h3>\n<h4>Event Hub Producer Client<\/h4>\n<p>The <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\/Sample04_PublishingEvents.md\">EventHubProducerClient<\/a> is responsible for publishing event data to the associated Event Hub. The client supports a flexible set of options when publishing, offering a reasonable set of defaults for exploring Event Hubs and for the majority of production scenarios. As application needs become more specialized, the options can be tuned to allow for greater control over publishing and optionally bypassing some of the validation offered by the client for higher throughput.<\/p>\n<h4>Event Hub Consumer Client<\/h4>\n<p>The <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\/Sample05_ReadingEvents.md\">EventHubConsumerClient<\/a> serves as the onboarding point for consuming events by reading from all partitions without the rigor and complexity that you would need in a production application. This is intended to streamline and simplify exploration, allowing developers a feedback loop without the need to understand many of the underlying details.<\/p>\n<p>The production scenario for the <code>EventHubConsumerClient<\/code> is focused on reading events from a single partition with an iterator-based approach, providing a streaming experience using the <code>await foreach<\/code> syntax of an asynchronous enumerable. This pattern allow events to be read in a continuous fashion, waiting if no events are available, or with a timeout that allows control to be returned to the body of the loop on a predictable schedule for heartbeats and other activities.<\/p>\n<p>For reading events from all partitions in a production scenario, we strongly recommend using the <code>EventProcessorClient<\/code> or <code>EventProcessor&lt;TPartition&gt;<\/code> over the <code>EventHubConsumerClient<\/code>.<\/p>\n<h4>Event Processor Client<\/h4>\n<p>The <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs.Processor\/samples\/Sample04_ProcessingEvents.md\">EventProcessorClient<\/a> is intended to serve as the primary consumer of events in production scenarios for the majority of workloads. It is responsible for reading and processing events for all partitions of an Event Hub and collaborates with other <code>EventProcessorClient<\/code> instances using the same Event Hub and consumer group to balance work between them. A high degree of fault tolerance is built-in, allowing the processor to be resilient in the face of errors.<\/p>\n<p>A key feature of the <code>EventProcessorClient<\/code> is allowing the application to track which events have been processed and persisting them to some form or durable storage so that progress is resilient across failures and observed as instances scale up or down and load-balance. This process is commonly referred to as <a href=\"https:\/\/docs.microsoft.com\/azure\/event-hubs\/event-hubs-features#checkpointing\">checkpointing<\/a> and the persisted state as a checkpoint. This version of the <code>EventProcessorClient<\/code> supports only Azure Storage Blobs as a backing store; the <a href=\"https:\/\/docs.microsoft.com\/dotnet\/api\/azure.messaging.eventhubs.primitives.eventprocessor-1?view=azure-dotnet\">EventProcessor<TPartition><\/a> supports implementing other storage providers.<\/p>\n<p>The <code>EventProcessorClient<\/code> is located in the <a href=\"https:\/\/www.nuget.org\/packages\/Azure.Messaging.EventHubs.Processor\/\">Azure.Messaging.EventHubs.Processor<\/a> package.<\/p>\n<h3>Specialized<\/h3>\n<h4>Partition Receiver<\/h4>\n<p>The <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\/Sample05_ReadingEvents.md#read-events-from-a-partition-using-the-partitionreceiver\">PartitionReceiver<\/a> is responsible for consuming events from a specific partition of an Event Hub, offering a lower-level API with greater control over resource use. The <code>PartitionReceiver<\/code> utilizes a batch-based pull model for applications requesting events. This allows Event Hubs service communication and network activities to be deterministic, initiated by an application request and avoids the need for implicit background operations.<\/p>\n<p>Each <code>PartitionReceiver<\/code> represents a single consumer scope with one lifespan, able to read events from a partition in a stateful manner and with predictable resource use. Because each instance is self-contained, the <code>PartitionReceiver<\/code> supports creating multiple receivers for the same partition concurrently, with each able to independently read from a different location in the event stream.<\/p>\n<h4>Event Processor<TPartition><\/h4>\n<p>The <a href=\"https:\/\/docs.microsoft.com\/dotnet\/api\/azure.messaging.eventhubs.primitives.eventprocessor-1?view=azure-dotnet\">EventProcessor<TPartition><\/a> provides a base to create a custom client for reading and processing events for all partitions of an Event Hub. It collaborates to balance work with other clients derived from <code>EventProcessor&lt;TPartition&gt;<\/code> as well as <code>EventProcessorClient<\/code> instances using the same Event Hub and consumer group. A high degree of fault tolerance is built-in, allowing the derived processors to be resilient in the face of errors.<\/p>\n<p>Though it serves a similar role to the <code>EventProcessorClient<\/code>, the <code>EventProcessor&lt;TPartition&gt;<\/code> provides a lower-level API with less ceremony and greater control over resource use. It offers native batch-based processing via method override rather than using the event handler pattern to process a single event at a time. The <code>EventProcessor&lt;TPartition&gt;<\/code> also enables defining a custom partition context for applications that wish to track additional state while processing.<\/p>\n<p>While the <code>EventProcessorClient<\/code> is an opinionated implementation strongly bound to Azure Storage Blobs, the <code>EventProcessor&lt;TPartition&gt;<\/code> has no affiliation to a specific storage provider, allowing data-bound operations to be fully controlled by the derived client via method overload.<\/p>\n<h2>Azure Event Hubs Information<\/h2>\n<p>The Event Hubs client library offers an extensive set of samples, covering many of the core concepts of messaging and Event Hubs as well as usage of the client. They are organized by package and can be found in the GitHub repository:<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/tree\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/samples\">Azure.Messaging.EventHubs samples<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/tree\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs.Processor\/samples\">Azure.Messaging.EventHubs.Processor samples<\/a><\/li>\n<\/ul>\n<p>More detail on the design and philosophy for the <code>PartitionReceiver<\/code> and <code>EventProcessor&lt;TPartition&gt;<\/code> can be found in their respective design documents:<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/design\/proposal-partition-receiver.md\">PartitionReceiver design<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-net\/blob\/master\/sdk\/eventhub\/Azure.Messaging.EventHubs\/design\/proposal-event-processor%7BT%7D.md\">EventProcessor<TPartition> design<\/a><\/li>\n<\/ul>\n<p>General information on Azure Event Hubs can be found on the Microsoft Docs site under the product documentation. Some key documents are:<\/p>\n<ul>\n<li><a href=\"https:\/\/docs.microsoft.com\/azure\/event-hubs\/event-hubs-about\">What is Azure Event Hubs?<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/azure\/event-hubs\/event-hubs-features\">Event Hubs terminology<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/azure\/event-grid\/compare-messaging-services\">Azure messaging services comparison<\/a><\/li>\n<\/ul>\n<p><!-- FOOTER: DO NOT EDIT OR REMOVE --> <div  class=\"d-flex justify-content-center\"><a class=\"cta_button_link btn-primary mb-24\" href=\"https:\/\/aka.ms\/azsdk\/releases\" target=\"_blank\">Azure SDK Releases<\/a><\/div><\/p>\n<h2>Azure SDK Blog Contributions<\/h2>\n<p>Thank you for reading this Azure SDK blog post! We hope that you learned something new and welcome you to share this post. We are open to Azure SDK blog contributions. Please contact us at <a href=\"&#109;&#x61;&#105;&#x6c;&#116;&#x6f;&#58;&#x61;z&#115;&#x64;&#107;&#x62;&#108;&#x6f;&#103;&#x40;&#109;&#105;&#x63;&#114;&#x6f;&#115;&#x6f;&#102;&#x74;&#46;&#x63;o&#109;\">&#x61;z&#115;&#x64;&#107;&#x62;&#108;&#x6f;&#103;&#x40;&#109;&#105;&#x63;&#114;&#x6f;&#115;&#x6f;&#102;&#x74;&#46;&#x63;o&#109;<\/a> with your topic and we&#8217;ll get you set up as a guest blogger.<\/p>\n<h2>Azure SDK Links<\/h2>\n<ul>\n<li>Azure SDK Website: <a href=\"https:\/\/aka.ms\/azsdk\">aka.ms\/azsdk<\/a><\/li>\n<li>Azure SDK Intro (3 minute video): <a href=\"https:\/\/aka.ms\/azsdk\/intro\">aka.ms\/azsdk\/intro<\/a><\/li>\n<li>Azure SDK Intro Deck (PowerPoint deck): <a href=\"https:\/\/aka.ms\/azsdk\/intro\/deck\">aka.ms\/azsdk\/intro\/deck<\/a><\/li>\n<li>Azure SDK Releases: <a href=\"https:\/\/aka.ms\/azsdk\/releases\">aka.ms\/azsdk\/releases<\/a><\/li>\n<li>Azure SDK Blog: <a href=\"https:\/\/aka.ms\/azsdk\/blog\">aka.ms\/azsdk\/blog<\/a><\/li>\n<li>Azure SDK Twitter: <a href=\"https:\/\/twitter.com\/AzureSDK\">twitter.com\/AzureSDK<\/a><\/li>\n<li>Azure SDK Design Guidelines: <a href=\"https:\/\/aka.ms\/azsdk\/guide\">aka.ms\/azsdk\/guide<\/a><\/li>\n<li>Azure SDKs &amp; Tools: <a href=\"https:\/\/azure.microsoft.com\/downloads\">azure.microsoft.com\/downloads<\/a><\/li>\n<li>Azure SDK Central Repository: <a href=\"https:\/\/github.com\/azure\/azure-sdk#azure-sdk\">github.com\/azure\/azure-sdk<\/a><\/li>\n<li>Azure SDK for .NET: <a href=\"https:\/\/github.com\/azure\/azure-sdk-for-net\">github.com\/azure\/azure-sdk-for-net<\/a><\/li>\n<li>Azure SDK for Java: <a href=\"https:\/\/github.com\/azure\/azure-sdk-for-java\">github.com\/azure\/azure-sdk-for-java<\/a><\/li>\n<li>Azure SDK for Python: <a href=\"https:\/\/github.com\/azure\/azure-sdk-for-python\">github.com\/azure\/azure-sdk-for-python<\/a><\/li>\n<li>Azure SDK for JavaScript\/TypeScript: <a href=\"https:\/\/github.com\/azure\/azure-sdk-for-js\">github.com\/azure\/azure-sdk-for-js<\/a><\/li>\n<li>Azure SDK for Android: <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-android\">github.com\/Azure\/azure-sdk-for-android<\/a><\/li>\n<li>Azure SDK for iOS: <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-ios\">github.com\/Azure\/azure-sdk-for-ios<\/a><\/li>\n<li>Azure SDK for Go: <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-go\">github.com\/Azure\/azure-sdk-for-go<\/a><\/li>\n<li>Azure SDK for C: <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-c\">github.com\/Azure\/azure-sdk-for-c<\/a><\/li>\n<li>Azure SDK for C++: <a href=\"https:\/\/github.com\/Azure\/azure-sdk-for-cpp\">github.com\/Azure\/azure-sdk-for-cpp<\/a><\/li>\n<\/ul>\n<p><!-- FOOTER: DO NOT EDIT OR REMOVE --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this post, we&#8217;ll explore the various Event Hubs client types and help you determine which one best fits your application.<\/p>\n","protected":false},"author":51183,"featured_media":922,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[701,750,785],"class_list":["post-918","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-azure-sdk","tag-net","tag-azure-sdk","tag-event-hubs"],"acf":[],"blog_post_summary":"<p>In this post, we&#8217;ll explore the various Event Hubs client types and help you determine which one best fits your application.<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts\/918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/users\/51183"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/comments?post=918"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts\/918\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/media\/922"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/media?parent=918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/categories?post=918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/tags?post=918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}