Skip to content

Commit 4ca527c

Browse files
Merge pull request #248075 from mattchenderson/tablestemp
updating tables
2 parents 386767b + 7acfd28 commit 4ca527c

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

articles/azure-functions/dotnet-isolated-in-process-differences.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Use the following table to compare feature and functional differences between th
4545

4646
<sup>3</sup> C# Script functions also run in-process and use the same libraries as in-process class library functions. For more information, see the [Azure Functions C# script (.csx) developer reference](functions-reference-csharp.md).
4747

48-
<sup>4</sup> Service SDK types include types from the [Azure SDK for .NET](/dotnet/azure/sdk/azure-sdk-for-dotnet) such as [BlobClient](/dotnet/api/azure.storage.blobs.blobclient). For the isolated process model, support from some extensions is currently in preview, and Service Bus triggers do not yet support message settlement scenarios.
48+
<sup>4</sup> Service SDK types include types from the [Azure SDK for .NET](/dotnet/azure/sdk/azure-sdk-for-dotnet) such as [BlobClient](/dotnet/api/azure.storage.blobs.blobclient). For the isolated process model, Service Bus triggers do not yet support message settlement scenarios.
4949

5050
<sup>5</sup> ASP.NET Core types are not supported for .NET Framework.
5151

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@ For some service-specific binding types, binding data can be provided using type
280280

281281
| Dependency | Version requirement |
282282
|-|-|
283-
|[Microsoft.Azure.Functions.Worker]| For **Generally Available** extensions in the table below: 1.18.0 or later<br/>For extensions that have **preview support**: 1.15.0-preview1 |
284-
|[Microsoft.Azure.Functions.Worker.Sdk]|For **Generally Available** extensions in the table below: 1.13.0 or later<br/>For extensions that have **preview support**: 1.11.0-preview1 |
283+
|[Microsoft.Azure.Functions.Worker]| 1.18.0 or later |
284+
|[Microsoft.Azure.Functions.Worker.Sdk]| 1.13.0 or later |
285285

286286
When testing SDK types locally on your machine, you will also need to use [Azure Functions Core Tools version 4.0.5000 or later](./functions-run-local.md). You can check your current version using the command `func version`.
287287

@@ -294,7 +294,7 @@ Each trigger and binding extension also has its own minimum version requirement,
294294
| [Azure Service Bus][servicebus-sdk-types] | **Generally Available**<sup>2</sup> | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
295295
| [Azure Event Hubs][eventhub-sdk-types] | **Generally Available** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
296296
| [Azure Cosmos DB][cosmos-sdk-types] | _SDK types not used<sup>3</sup>_ | **Generally Available** | _SDK types not recommended.<sup>1</sup>_ |
297-
| [Azure Tables][tables-sdk-types] | _Trigger does not exist_ | **Preview support** | _SDK types not recommended.<sup>1</sup>_ |
297+
| [Azure Tables][tables-sdk-types] | _Trigger does not exist_ | **Generally Available** | _SDK types not recommended.<sup>1</sup>_ |
298298
| [Azure Event Grid][eventgrid-sdk-types] | **Generally Available** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
299299

300300
[blob-sdk-types]: ./functions-bindings-storage-blob.md?tabs=isolated-process%2Cextensionv5&pivots=programming-language-csharp#binding-types

articles/azure-functions/functions-bindings-storage-table.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@ Functions version 1.x doesn't support isolated worker process. To use the isolat
204204

205205
[ITableEntity]: /dotnet/api/azure.data.tables.itableentity
206206
[TableClient]: /dotnet/api/azure.data.tables.tableclient
207-
[TableEntity]: /dotnet/api/azure.data.tables.tableentity
208207

209208
[CloudTable]: /dotnet/api/microsoft.azure.cosmos.table.cloudtable
210209

@@ -222,9 +221,7 @@ Functions version 1.x doesn't support isolated worker process. To use the isolat
222221
[Microsoft.Azure.Cosmos.Table]: /dotnet/api/microsoft.azure.cosmos.table
223222
[Microsoft.WindowsAzure.Storage.Table]: /dotnet/api/microsoft.windowsazure.storage.table
224223

225-
[NuGet package]: https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage
226224
[storage-4.x]: https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/4.0.5
227-
[storage-5.x]: https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/5.0.0
228225
[table-api-package]: https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Tables/
229226

230227
[extension bundle]: ./functions-bindings-register.md#extension-bundles

includes/functions-bindings-table-input-dotnet-isolated-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ When working with a single table entity, the Azure Tables input binding can bind
1111
| Type | Description |
1212
| --- | --- |
1313
| A JSON serializable type that implements [ITableEntity] | Functions attempts to deserialize the entity into a plain-old CLR object (POCO) type. The type must implement [ITableEntity] or have a string `RowKey` property and a string `PartitionKey` property. |
14-
| [TableEntity] | _(Preview<sup>1</sup>)_<br/>The entity as a dictionary-like type. |
14+
| [TableEntity]<sup>1</sup> | The entity as a dictionary-like type. |
1515

1616
When working with multiple entities from a query, the Azure Tables input binding can bind to the following types:
1717

1818
| Type | Description |
1919
| --- | --- |
2020
| `IEnumerable<T>` where `T` implements [ITableEntity] | An enumeration of entities returned by the query. Each entry represents one entity. The type `T` must implement [ITableEntity] or have a string `RowKey` property and a string `PartitionKey` property.|
21-
| [TableClient] | _(Preview<sup>1</sup>)_<br/>A client connected to the table. This offers the most control for processing the table and can be used to write to it if the connection has sufficient permission.|
21+
| [TableClient]<sup>1</sup> | A client connected to the table. This offers the most control for processing the table and can be used to write to it if the connection has sufficient permission.|
2222

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

2525
[ITableEntity]: /dotnet/api/azure.data.tables.itableentity
2626
[TableClient]: /dotnet/api/azure.data.tables.tableclient

0 commit comments

Comments
 (0)