mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-07 09:11:47 +00:00

Co-authored-by: Shirshanka Das <shirshanka@apache.org> Co-authored-by: Vincent Koc <koconder@users.noreply.github.com>
25 lines
535 B
YAML
25 lines
535 B
YAML
pipeline_name: my_salesforce_pipeline
|
|
source:
|
|
type: "salesforce"
|
|
config:
|
|
instance_url: "https://mydomain.my.salesforce.com/"
|
|
username: user@company
|
|
password: password_for_user
|
|
security_token: security_token_for_user
|
|
platform_instance: mydomain-dev-ed
|
|
domain:
|
|
sales:
|
|
allow:
|
|
- "Opportunity$"
|
|
- "Lead$"
|
|
|
|
object_pattern:
|
|
allow:
|
|
- "Account$"
|
|
- "Opportunity$"
|
|
- "Lead$"
|
|
|
|
sink:
|
|
type: "datahub-rest"
|
|
config:
|
|
server: "http://localhost:8080" |