Skip to content

Commit a02e483

Browse files
updating queue and event hub sdk type status
1 parent 16db8e8 commit a02e483

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ Each trigger and binding extension also has its own minimum version requirement,
229229
| Service | Trigger | Input binding | Output binding |
230230
|-|-|-|-|
231231
| [Azure Blobs][blob-sdk-types] | **Generally Available** | **Generally Available** | _SDK types not recommended.<sup>1</sup>_ |
232-
| [Azure Queues][queue-sdk-types] | **Preview support** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
232+
| [Azure Queues][queue-sdk-types] | **Generally Available** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
233233
| [Azure Service Bus][servicebus-sdk-types] | **Preview support<sup>2</sup>** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
234-
| [Azure Event Hubs][eventhub-sdk-types] | **Preview support** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
234+
| [Azure Event Hubs][eventhub-sdk-types] | **Generally Available** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
235235
| [Azure Cosmos DB][cosmos-sdk-types] | _SDK types not used<sup>3</sup>_ | **Preview support** | _SDK types not recommended.<sup>1</sup>_ |
236236
| [Azure Tables][tables-sdk-types] | _Trigger does not exist_ | **Preview support** | _SDK types not recommended.<sup>1</sup>_ |
237237
| [Azure Event Grid][eventgrid-sdk-types] | **Generally Available** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |

includes/functions-bindings-event-hubs-trigger-dotnet-isolated-types.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ When you want the function to process a single event, the Event Hubs trigger can
1313
| `string` | The event as a string. Use when the event is simple text. |
1414
| `byte[]` | The bytes of the event. |
1515
| JSON serializable types | When an event contains JSON data, Functions tries to deserialize the JSON data into a plain-old CLR object (POCO) type. |
16-
| [Azure.Messaging.EventHubs.EventData] | _(Preview<sup>1</sup>)_<br/>The event object.<br/>If you are migrating from any older versions of the Event Hubs SDKs, note that this version drops support for the legacy `Body` type in favor of [EventBody](/dotnet/api/azure.messaging.eventhubs.eventdata.eventbody).|
16+
| [Azure.Messaging.EventHubs.EventData]<sup>1</sup> | The event object.<br/>If you are migrating from any older versions of the Event Hubs SDKs, note that this version drops support for the legacy `Body` type in favor of [EventBody](/dotnet/api/azure.messaging.eventhubs.eventdata.eventbody).|
1717

1818
When you want the function to process a batch of events, the Event Hubs trigger can bind to the following types:
1919

2020
| Type | Description |
2121
| --- | --- |
2222
| `string[]` | An array of events from the batch, as strings. Each entry represents one event. |
23-
| `EventData[]` | _(Preview<sup>1</sup>)_<br/>An array of events from the batch, as instances of [Azure.Messaging.EventHubs.EventData]. Each entry represents one event. |
24-
| `T[]` where `T` is a JSON serializable type | _(Preview<sup>1</sup>)_<br/>An array of events from the batch, as instances of a custom POCO type. Each entry represents one event. |
23+
| `EventData[]` <sup>1</sup> | An array of events from the batch, as instances of [Azure.Messaging.EventHubs.EventData]. Each entry represents one event. |
24+
| `T[]` where `T` is a JSON serializable type<sup>1</sup> | An array of events from the batch, as instances of a custom POCO type. Each entry represents one event. |
2525

26-
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.EventHubs 5.4.1-preview1 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.EventHubs/5.4.1-preview1) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
26+
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.EventHubs 5.5.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.EventHubs/5.5.0) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
2727

2828
[Azure.Messaging.EventHubs.EventData]: /dotnet/api/azure.messaging.eventhubs.eventdata

includes/functions-bindings-storage-queue-trigger-dotnet-isolated-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ The queue trigger can bind to the following types:
1313
| `string` | The message content as a string. Use when the message is simple text.. |
1414
| `byte[]` | The bytes of the message. |
1515
| JSON serializable types | When a queue message contains JSON data, Functions tries to deserialize the JSON data into a plain-old CLR object (POCO) type. |
16-
| [QueueMessage]| _(Preview<sup>1</sup>)_<br/>The message. |
17-
| [BinaryData]| _(Preview<sup>1</sup>)_<br/>The bytes of the message. |
16+
| [QueueMessage]<sup>1</sup>| The message. |
17+
| [BinaryData]<sup>1</sup>| The bytes of the message. |
1818

19-
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues 5.1.3-preview1 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues/5.1.3-preview1) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
19+
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues 5.2.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues/5.2.0) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
2020

2121
[QueueMessage]: /dotnet/api/azure.storage.queues.models.queuemessage
2222
[BinaryData]: /dotnet/api/system.binarydata

0 commit comments

Comments
 (0)