-
Notifications
You must be signed in to change notification settings - Fork 20
/
dbt_project.yml
76 lines (73 loc) · 3.77 KB
/
dbt_project.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
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
name: 'netsuite_source'
version: '0.11.0'
models:
netsuite_source:
+materialized: view
+schema: netsuite_source
netsuite:
tmp:
+materialized: view
netsuite2:
tmp:
+materialized: view
vars:
netsuite_source:
netsuite_accounting_books: "{{ source('netsuite','accounting_books') }}"
netsuite_accounting_periods: "{{ source('netsuite','accounting_periods') }}"
netsuite_accounts: "{{ source('netsuite','accounts') }}"
netsuite_classes: "{{ source('netsuite','classes') }}"
netsuite_consolidated_exchange_rates: "{{ source('netsuite','consolidated_exchange_rates') }}"
netsuite_currencies: "{{ source('netsuite','currencies') }}"
netsuite_customers: "{{ source('netsuite','customers') }}"
netsuite_departments: "{{ source('netsuite','departments') }}"
netsuite_expense_accounts: "{{ source('netsuite','expense_accounts') }}"
netsuite_income_accounts: "{{ source('netsuite','income_accounts') }}"
netsuite_items: "{{ source('netsuite','items') }}"
netsuite_locations: "{{ source('netsuite','locations') }}"
netsuite_subsidiaries: "{{ source('netsuite','subsidiaries') }}"
netsuite_transaction_lines: "{{ source('netsuite','transaction_lines') }}"
netsuite_transactions: "{{ source('netsuite','transactions') }}"
netsuite_vendor_types: "{{ source('netsuite','vendor_types') }}"
netsuite_vendors: "{{ source('netsuite','vendors') }}"
netsuite2_accounting_books: "{{ source('netsuite2','accounting_book') }}"
netsuite2_accounting_periods: "{{ source('netsuite2','accounting_period') }}"
netsuite2_accounts: "{{ source('netsuite2','account') }}"
netsuite2_classes: "{{ source('netsuite2','classification') }}"
netsuite2_consolidated_exchange_rates: "{{ source('netsuite2','consolidated_exchange_rate') }}"
netsuite2_currencies: "{{ source('netsuite2','currency') }}"
netsuite2_customers: "{{ source('netsuite2','customer') }}"
netsuite2_departments: "{{ source('netsuite2','department') }}"
netsuite2_employees: "{{ source('netsuite2','employee') }}"
netsuite2_entities: "{{ source('netsuite2','entity') }}"
netsuite2_items: "{{ source('netsuite2','item') }}"
netsuite2_jobs: "{{ source('netsuite2','job') }}"
netsuite2_locations: "{{ source('netsuite2','location') }}"
netsuite2_subsidiaries: "{{ source('netsuite2','subsidiary') }}"
netsuite2_transaction_accounting_lines: "{{ source('netsuite2','transaction_accounting_line') }}"
netsuite2_transaction_lines: "{{ source('netsuite2','transaction_line') }}"
netsuite2_transactions: "{{ source('netsuite2','transaction') }}"
netsuite2_vendors: "{{ source('netsuite2','vendor') }}"
netsuite2_vendor_categories: "{{ source('netsuite2', 'vendor_category') }}"
netsuite2_accounting_book_subsidiaries: "{{ source('netsuite2', 'accounting_book_subsidiaries') }}"
netsuite2_accounting_period_fiscal_calendars: "{{ source('netsuite2', 'accounting_period_fiscal_calendars') }}"
netsuite2_account_types: "{{ source('netsuite2', 'account_type') }}"
netsuite2_entity_address: "{{ source('netsuite2', 'entity_address') }}"
netsuite2_location_main_address: "{{ source('netsuite2', 'location_main_address') }}"
accounts_pass_through_columns: []
classes_pass_through_columns: []
departments_pass_through_columns: []
transactions_pass_through_columns: []
transaction_lines_pass_through_columns: []
customers_pass_through_columns: []
locations_pass_through_columns: []
subsidiaries_pass_through_columns: []
consolidated_exchange_rates_pass_through_columns: []
vendors_pass_through_columns: []
items_pass_through_columns: []
entities_pass_through_columns: []
clean-targets:
- target
- dbt_modules
- dbt_packages