-
Notifications
You must be signed in to change notification settings - Fork 24
/
meltano.yml
102 lines (102 loc) · 3.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
version: 1
send_anonymous_usage_stats: true
project_id: "target-snowflake"
plugins:
extractors: []
loaders:
- name: "target-snowflake"
namespace: "target_snowflake"
pip_url: -e .
capabilities:
- about
- schema-flattening
- stream-maps
config:
start_date: '2010-01-01T00:00:00Z'
settings:
- description: Your account identifier. See [Account Identifiers](https://docs.snowflake.com/en/user-guide/admin-account-identifier.html).
kind: string
label: Account
name: account
- description: Whether to add metadata columns.
kind: boolean
label: Add Record Metadata
name: add_record_metadata
value: true
- description: Whether to remove batch files after processing.
kind: boolean
label: Clean Up Batch Files
name: clean_up_batch_files
value: true
- description: The initial database for the Snowflake session.
kind: string
label: Database
name: database
- description: The default target database schema name to use for all streams.
kind: string
label: Default Target Schema
name: default_target_schema
- description: "'True' to enable schema flattening and automatically expand nested\
\ properties."
kind: boolean
label: Flattening Enabled
name: flattening_enabled
- description: The max depth to flatten schemas.
kind: integer
label: Flattening Max Depth
name: flattening_max_depth
- description: The password for your Snowflake user.
kind: password
label: Password
name: password
- description: Path to file containing private key
kind: string
label: Private Key Path
name: private_key_path
- description: Passphrase to decrypt private key if encrypted
label: Private Key Passphrase
kind: password
name: private_key_passphrase
- description: The initial role for the session.
kind: string
label: Role
name: role
- description: The initial schema for the Snowflake session.
kind: string
label: Schema
name: schema
- description: User-defined config values to be used within map expressions.
kind: object
label: Stream Map Config
name: stream_map_config
- description: Config object for stream maps capability. For more information check
out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html).
kind: object
label: Stream Maps
name: stream_maps
- description: If browser based SSO authentication should be used. See [SSO browser authentication](https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-authenticate#using-single-sign-on-sso-through-a-web-browser).
kind: boolean
label: Use browser authentication
name: use_browser_authentication
value: false
- description: The login name for your Snowflake user.
kind: string
label: User
name: user
- description: The initial warehouse for the session.
kind: string
label: Warehouse
name: warehouse
settings_group_validation:
- - account
- database
- password
- user
- - account
- database
- private_key_path
- user
- - account
- database
- use_browser_authentication
- user