Skip to content

Commit 59fbc58

Browse files
updating service bus sdk type status
1 parent 8fd5904 commit 59fbc58

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Each trigger and binding extension also has its own minimum version requirement,
230230
|-|-|-|-|
231231
| [Azure Blobs][blob-sdk-types] | **Generally Available** | **Generally Available** | _SDK types not recommended.<sup>1</sup>_ |
232232
| [Azure Queues][queue-sdk-types] | **Generally Available** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
233-
| [Azure Service Bus][servicebus-sdk-types] | **Preview support<sup>2</sup>** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
233+
| [Azure Service Bus][servicebus-sdk-types] | **Generally Available**<sup>2</sup> | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
234234
| [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>_ | **Generally Available** | _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>_ |

includes/functions-bindings-service-bus-trigger-dotnet-isolated-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ When you want the function to process a single message, the Service Bus trigger
1313
| `string` | The message as a string. Use when the message is simple text. |
1414
| `byte[]` | The bytes of the message. |
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-
| [ServiceBusReceivedMessage] | _(Preview<sup>1</sup>)_<br/>The message object. |
16+
| [ServiceBusReceivedMessage]<sup>1</sup> | The message object. |
1717

1818
When you want the function to process a batch of messages, the Service Bus trigger can bind to the following types:
1919

2020
| Type | Description |
2121
| --- | --- |
2222
| `T[]` where `T` is one of the single message types | An array of events from the batch. Each entry represents one event. |
2323

24-
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.ServiceBus 5.10.0-preview2 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.ServiceBus/5.10.0-preview2) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types). [Version 5.12.0-preview1 and later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.ServiceBus/5.12.0-preview1) requires moving the common dependencies forward to their GA versions. Specifically, you should use [Microsoft.Azure.Functions.Worker 1.18.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker/1.18.0) and [Microsoft.Azure.Functions.Worker.Sdk 1.12.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk/1.12.0).
24+
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.ServiceBus 5.12.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.ServiceBus/5.12.0) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
2525

2626
> [!NOTE]
2727
> The isolated process model does not yet support message settlement scenarios for Service Bus triggers.

0 commit comments

Comments
 (0)