Skip to content

Commit 718d0a4

Browse files
updating cosmos for SDK types
1 parent a02e483 commit 718d0a4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ For some service-specific binding types, binding data can be provided using type
220220
| Dependency | Version requirement |
221221
|-|-|
222222
|[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 |
223-
|[Microsoft.Azure.Functions.Worker.Sdk]|For **Generally Available** extensions in the table below: 1.12.0 or later<br/>For extensions that have **preview support**: 1.11.0-preview1 |
223+
|[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 |
224224

225225
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`.
226226

@@ -232,7 +232,7 @@ Each trigger and binding extension also has its own minimum version requirement,
232232
| [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>_ |
234234
| [Azure Event Hubs][eventhub-sdk-types] | **Generally Available** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
235-
| [Azure Cosmos DB][cosmos-sdk-types] | _SDK types not used<sup>3</sup>_ | **Preview support** | _SDK types not recommended.<sup>1</sup>_ |
235+
| [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>_ |
237237
| [Azure Event Grid][eventgrid-sdk-types] | **Generally Available** | _Input binding does not exist_ | _SDK types not recommended.<sup>1</sup>_ |
238238

includes/functions-bindings-cosmosdb-v2-input-dotnet-isolated-types.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ When you want the function to process multiple documents from a query, the Cosmo
1717
| Type | Description |
1818
| --- | --- |
1919
| `IEnumerable<T>`where `T` is a JSON serializable type | An enumeration of entities returned by the query. Each entry represents one document. |
20-
| [CosmosClient] | _(Preview<sup>1</sup>)_<br/>A client connected to the Cosmos DB account. |
21-
| [Database] | _(Preview<sup>1</sup>)_<br/>A client connected to the Cosmos DB database. |
22-
| [Container] | _(Preview<sup>1</sup>)_<br/>A client connected to the Cosmos DB container. |
20+
| [CosmosClient]<sup>1</sup> | A client connected to the Cosmos DB account. |
21+
| [Database]<sup>1</sup> | A client connected to the Cosmos DB database. |
22+
| [Container]<sup>1</sup> | A client connected to the Cosmos DB container. |
2323

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

2626
[CosmosClient]: /dotnet/api/microsoft.azure.cosmos.cosmosclient
2727
[Database]: /dotnet/api/microsoft.azure.cosmos.database

0 commit comments

Comments
 (0)