-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmeltano.yml
114 lines (114 loc) · 3.5 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
103
104
105
106
107
108
109
110
111
112
113
114
version: 1
send_anonymous_usage_stats: true
project_id: target-snowflake
default_environment: dev
environments:
- name: dev
plugins:
loaders:
- name: target-snowflake
namespace: target_snowflake
pip_url: -e .
capabilities:
- about
- schema-flattening
- stream-maps
settings_group_validation:
- - account
- database
- password
- user
- - account
- database
- private_key_path
- user
- - account
- database
- private_key
- user
- - account
- database
- use_browser_authentication
- user
settings:
- name: account
kind: string
label: Account
description: Your account identifier. See [Account
Identifiers](https://docs.snowflake.com/en/user-guide/admin-account-identifier.html).
- name: add_record_metadata
kind: boolean
value: true
label: Add Record Metadata
description: Whether to add metadata columns.
- name: clean_up_batch_files
kind: boolean
value: true
label: Clean Up Batch Files
description: Whether to remove batch files after processing.
- name: database
kind: string
label: Database
description: The initial database for the Snowflake session.
- name: default_target_schema
kind: string
label: Default Target Schema
description: The default target database schema name to use for all streams.
- name: flattening_enabled
kind: boolean
label: Flattening Enabled
description: "'True' to enable schema flattening and automatically expand nested
properties."
- name: flattening_max_depth
kind: integer
label: Flattening Max Depth
description: The max depth to flatten schemas.
- name: password
kind: string
label: Password
description: The password for your Snowflake user.
sensitive: true
- name: private_key_path
kind: string
label: Private Key Path
description: Path to file containing private key
- name: private_key
kind: string
label: Private Key
description: The private key for your Snowflake user.
- name: private_key_passphrase
kind: string
label: Private Key Passphrase
description: Passphrase to decrypt private key if encrypted
sensitive: true
- name: role
kind: string
label: Role
description: The initial role for the session.
- name: schema
kind: string
label: Schema
description: The initial schema for the Snowflake session.
- name: stream_map_config
kind: object
label: Stream Map Config
description: User-defined config values to be used within map expressions.
- name: stream_maps
kind: object
label: Stream Maps
description: Config object for stream maps capability. For more information
check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html).
- name: use_browser_authentication
kind: boolean
value: false
label: Use browser authentication
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).
- name: user
kind: string
label: User
description: The login name for your Snowflake user.
- name: warehouse
kind: string
label: Warehouse
description: The initial warehouse for the session.