From 69cca741aac4ec4410e3d2083147d20402664a72 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:36:30 +0000 Subject: [PATCH] Update wiki Home page for google-calendar-source --- Home.md | 41 +++++++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..c441a8e 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,34 @@ -# Deploy the Project on CamelX Platform +# Google Calendar Source -Deploy on CamelX Platform in three steps +Receive event data from Google Calendar. -## 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 | Google Calendar | +| Namespace | GCP | +| 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 | +|------|------|----------|---------|-------------| +| `index` | string | ✓ | | An index for the Google Calendar endpoint. | +| `calendarId` | string | ✓ | | The calendar ID to use as the source of event data. | +| `clientId` | string | ✓ | | The Client ID of the Google Calendar application. | +| `clientSecret` | string | ✓ | | The Client secret of the Google Calendar application. | +| `accessToken` | string | ✓ | | The OAuth 2 access token for the Google Calendar application. This token typically expires after an hour. For long term usage, set the `refreshToken` property. | +| `refreshToken` | string | ✓ | | The OAuth 2 refresh token for the Google Calendar application. The Google Calendar component can obtain a new `accessToken` whenever the current one expires. Set this value for long term usage. | +| `delay` | integer | | `500` | The number of milliseconds before the next poll. | +| `applicationName` | string | ✓ | | The Google Calendar application name. | +| `syncFlow` | boolean | | `false` | Specifies to sync events for incremental synchronization. | +| `consumeFromNow` | boolean | | `true` | Specfies to consume events in the calendar from now on. | -## Step 3: Expose -Enable **"Expose"** +## Dependencies -Choose an **API Gateway** (Internal, Public, etc.) +- `camel:jackson` +- `camel:google-calendar` +- `camel:kamelet`