-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeltano.yml
41 lines (41 loc) · 1.33 KB
/
meltano.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: 1
send_anonymous_usage_stats: true
project_id: target-salesforce
plugins:
loaders:
- name: target-salesforce
namespace: target_salesforce
pip_url: -e .
capabilities:
- batch
settings:
- name: client_id
kind: string
description: OAuth client_id
- name: client_secret
kind: string
description: OAuth client_secret
- name: refresh_token
kind: string
description: OAuth refresh_token
- name: username
kind: string
description: User/password username
- name: password
kind: string
description: User/password password
- name: security_token
kind: string
description: User/password generated security token. Reset under your Account Settings.
- name: security_token
kind: string
description: User/password generated security token. Reset under your Account Settings.
- name: domain
kind: string
description: Your Salesforce instance domain. Use 'login' (default) or 'test' (sandbox), or Salesforce My domain.
- name: action
kind: string
description: To insert/update/upsert/delete/hard_delete records.
- name: allow_failures
kind: boolean
description: Allows the target to continue persisting if a record fails to commit.