diff --git a/Home.md b/Home.md index 93a012c..f5dcf9a 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,33 @@ -# Deploy the Project on CamelX Platform +# Salesforce Delete Sink -Deploy on CamelX Platform in three steps +Remove an object from Salesforce. -## Step 1: Create a release -From the project space, click on **"Create a release"** +The data body must be JSON-formatted and it must +contain two keys: `sObjectId` and `sObjectName`. For example: `{ "sObjectId": "XXXXX0", "sObjectName": "Contact" }` -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 | +|------|------|----------|---------|-------------| +| `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` +- `camel:core` +- `camel:jsonpath`