From ae55fae5c68cc789a9ff6b5d558101c501f4e0d5 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:34:50 +0000 Subject: [PATCH] Update wiki Home page for azure-cosmosdb-source --- Home.md | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..392e041 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,33 @@ -# Deploy the Project on CamelX Platform +# Azure CosmosDB Source -Deploy on CamelX Platform in three steps +Consume Changes from a CosmosDB instance. -## Step 1: Create a release -From the project space, click on **"Create a release"** +## Metadata -The new version is automatically available in the list +| Property | Value | +|----------|-------| +| Type | source | +| Group | Azure CosmosDB | +| Namespace | Azure | +| Support Level | Stable | +| Provider | Apache Software Foundation | -## Step 2: Deploy -Click on **"Deploy"** +## Properties -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +| Name | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `databaseName` | string | ✓ | | The Azure Cosmos database name. | +| `containerName` | string | ✓ | | The Azure Cosmos container name. | +| `accountKey` | string | | | The Azure Cosmos account Key. | +| `leaseDatabaseName` | string | | | Sets the lease container which acts as a state storage and coordinates processing the change feed across multiple workers. | +| `leaseContainerName` | string | | | Sets the lease database where the leaseContainerName will be stored. | +| `createLeaseDatabaseIfNotExists` | boolean | | `false` | Sets if the component should create Cosmos lease database for the consumer automatically in case it doesn’t exist in Cosmos account. | +| `createLeaseContainerIfNotExists` | boolean | | `false` | Sets if the component should create Cosmos lease container for the consumer automatically in case it doesn’t exist in Cosmos database. | +| `databaseEndpoint` | string | ✓ | | Sets the Azure Cosmos database endpoint the component will connect to. | +| `credentialType` | string | | `SHARED_ACCOUNT_KEY` | Determines the credential strategy to adopt. | -## Step 3: Expose -Enable **"Expose"** +## Dependencies -Choose an **API Gateway** (Internal, Public, etc.) +- `camel:azure-cosmosdb` +- `camel:kamelet` +- `camel:jackson`