From f5c911eba296784b6f86b5b22cea95bf92e96017 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:39:54 +0000 Subject: [PATCH] Update wiki Home page for salesforce-create-sink --- Home.md | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..0ef253f 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,31 @@ -# Deploy the Project on CamelX Platform +# Salesforce Create Sink -Deploy on CamelX Platform in three steps +Create an object in Salesforce. -## Step 1: Create a release -From the project space, click on **"Create a release"** +The body of the message must contain the JSON of the Salesforce object, for example: `{ "Phone": "555", "Name": "Antonia", "LastName": "Garcia" }`. -The new version is automatically available in the list +## Metadata -## Step 2: Deploy -Click on **"Deploy"** +| Property | Value | +|----------|-------| +| Type | sink | +| Group | Salesforce | +| Namespace | Salesforce | +| Support Level | Stable | +| Provider | Apache Software Foundation | -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +## Properties -## Step 3: Expose -Enable **"Expose"** +| Name | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `sObjectName` | string | | | The type of the object. | +| `loginUrl` | string | | `https://login.salesforce.com` | The Salesforce instance login URL. | +| `clientId` | string | ✓ | | The Salesforce application consumer key. | +| `clientSecret` | string | ✓ | | The Salesforce application consumer secret. | +| `userName` | string | ✓ | | The Salesforce username. | +| `password` | string | ✓ | | The Salesforce user password. | -Choose an **API Gateway** (Internal, Public, etc.) +## Dependencies + +- `camel:salesforce` +- `camel:kamelet`