Skip to content

Commit e4f08a3

Browse files
committed
Fixed blocking issues
1 parent 832262f commit e4f08a3

5 files changed

+14
-7
lines changed

articles/azure-functions/functions-bindings-mongodb-vcore-input.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure CosmosDB for MongoDB (vCore) Input Binding for Azure Functions
2+
title: Azure Cosmos DB for MongoDB (vCore) Input Binding for Azure Functions
33
description: Understand how to use Azure Cosmos DB for MongoDB (vCore) input binding to read items from the database.
44
author: sajeetharan
55
ms.author: sasinnat
@@ -13,7 +13,7 @@ ms.custom:
1313

1414
This article explains how to work with the [Azure Cosmos DB for MongoDB vCore](/azure/cosmos-db/mongodb/vcore/introduction) input binding in Azure Functions.
1515

16-
The Azure Cosmos DB for MongoDB (vCore) input binding lets you retretieve one or more items as documents from the database.
16+
The Azure Cosmos DB for MongoDB (vCore) input binding lets you retrieve one or more items as documents from the database.
1717

1818
[!INCLUDE [functions-bindings-mongodb-vcore-preview](../../includes/functions-bindings-mongodb-vcore-preview.md)]
1919

articles/azure-functions/functions-bindings-mongodb-vcore-output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure CosmosDB for MongoDB (vCore) Output Binding for Azure Functions
2+
title: Azure Cosmos DB for MongoDB (vCore) Output Binding for Azure Functions
33
description: Understand how to use Azure Cosmos DB for MongoDB (vCore) output to write new items to the database.
44
author: sajeetharan
55
ms.author: sasinnat
@@ -62,7 +62,7 @@ This table describes the binding configuration properties of the `CosmosDBMongoT
6262
|**DatabaseName** | The name of the database being monitored by the trigger for changes. |
6363
|**CollectionName** | The name of the collection in the database being monitored by the trigger for changes.|
6464
|**ConnectionStringSetting** | The name of an app setting or setting collection that specifies how to connect to the Azure Cosmos DB account being monitored. |
65-
|**CreateIfNotExists** | (Optional) When set to true, creates the targed database and collection when they don't already exist. |
65+
|**CreateIfNotExists** | (Optional) When set to true, creates the targeted database and collection when they don't already exist. |
6666

6767
## Usage
6868

articles/azure-functions/functions-bindings-mongodb-vcore-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure CosmosDB for MongoDB (vCore) Trigger for Azure Functions
2+
title: Azure Cosmos DB for MongoDB (vCore) Trigger for Azure Functions
33
description: Understand how to use Azure Cosmos DB for MongoDB (vCore) trigger to monitor change streams for inserts and updates in collections.
44
author: sajeetharan
55
ms.author: sasinnat

articles/azure-functions/functions-bindings-mongodb-vcore.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Using the Azure Cosmos DB for MongoDB (vCore) extension, you can build functions
2626
Considerations for the Azure Cosmos DB for MongoDB (vCore) extension:
2727
+ Only [C# apps that run in-proces with the host](./functions-dotnet-class-library.md) are currently supported in preview.
2828
+ The Azure Cosmos DB for MongoDB (vCore) binding extension doesn't currently support Microsoft Entra authentication and managed identities.
29-
+ Your app must be using version 4.x fof the Azure Functions runtime.
29+
+ Your app must be using version 4.x of the Azure Functions runtime.
3030

31-
## Install Extension
31+
## Install extension
3232

3333
Add the extension to your .NET project for an in-process app by installing [this preview NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.AzureCosmosDb.Mongo/1.1.0-preview):
3434

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
author: ggailey777
3+
ms.service: azure-functions
4+
ms.topic: include
5+
ms.date: 05/12/2025
6+
ms.author: glenga
7+
---
18
>[!IMPORTANT]
29
>The Azure Cosmos DB for MongoDB (vCore) extension is currently in preview.
310
>At this time, only .NET apps that use the [in-process model](../articles/azure-functions/functions-dotnet-class-library.md) are supported.

0 commit comments

Comments
 (0)