From fdbc9200aad91b50bb1ea55a3c7ac419a75ac755 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:36:57 +0000 Subject: [PATCH] Update wiki Home page for http-secured-source --- Home.md | 43 +++++++++++++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..57b0ded 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,36 @@ -# Deploy the Project on CamelX Platform +# HTTP Secured Source -Deploy on CamelX Platform in three steps +Periodically fetches a secured HTTP resource and provides the content as output. Supports Oauth and Basic authentication. -## 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 | HTTP | +| Namespace | HTTP | +| 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 | +|------|------|----------|---------|-------------| +| `period` | integer | | `10000` | The interval between fetches in milliseconds | +| `contentType` | string | | `application/json` | The content type accepted for the resource | +| `url` | string | ✓ | | The URL to fetch for data | +| `authMethod` | string | | | Authentication methods allowed to use as a comma separated list of values Basic, Digest or NTLM. | +| `authenticationPreemptive` | boolean | | `false` | If this option is true, camel-http sends preemptive basic authentication to the server. | +| `authUsername` | string | | | Authentication username | +| `authPassword` | string | | | Authentication password | +| `oauth2ClientId` | string | | | Oauth2 Client Id | +| `oauth2ClientSecret` | string | | | Oauth2 Client Secret | +| `oauth2TokenEndpoint` | string | | | Oauth2 Token Endpoint | +| `oauth2Scope` | string | | | Oauth2 Scope | -## Step 3: Expose -Enable **"Expose"** +## Dependencies -Choose an **API Gateway** (Internal, Public, etc.) +- `camel:http` +- `camel:kamelet` +- `camel:core` +- `camel:timer`