-
Notifications
You must be signed in to change notification settings - Fork 17
/
dbt.sh
1607 lines (1584 loc) · 172 KB
/
dbt.sh
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env bash
# Automatic generated, DON'T MODIFY IT.
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag -h --help Show this message and exit.
# {{ dbt build
# @cmd Run all seeds, models, snapshots, and tests in DAG order
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --empty If specified, limit input refs and sources to zero rows.
# @flag --no-empty If specified, limit input refs and sources to zero rows.
# @option --exclude <TUPLE> Specify the nodes to exclude.
# @flag -f --full-refresh If specified, dbt will drop incremental models and fully-recalculate the incremental table from the model definition.
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --resource-types[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default|all] Restricts the types of resources that dbt will include
# @option --resource-type[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default|all] Restricts the types of resources that dbt will include
# @option --exclude-resource-types[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default] Specify the types of resources that dbt will exclude
# @option --exclude-resource-type[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default] Specify the types of resources that dbt will exclude
# @option -s <TUPLE> Specify the nodes to include.
# @option -m <TUPLE> Specify the nodes to include.
# @option --select <TUPLE> Specify the nodes to include.
# @option --models <TUPLE> Specify the nodes to include.
# @option --model <TUPLE> Specify the nodes to include.
# @option --selector <TEXT> The selector name to use, as defined in selectors.yml
# @flag --show Show a sample of the loaded data in the terminal
# @flag --store-failures Store test results (failing rows) in the database
# @option --target-path <PATH> Configure the 'target-path'.
# @option --threads <INTEGER> Specify number of threads to use while executing models.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
build() {
:;
}
# }} dbt build
# {{ dbt clean
# @cmd Delete all folders in the clean-targets list (usually...
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --clean-project-files-only If disabled, dbt clean will delete all paths specified in clean-paths, even if they're outside the dbt project.
# @flag --no-clean-project-files-only If disabled, dbt clean will delete all paths specified in clean-paths, even if they're outside the dbt project.
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --target-path <PATH> Configure the 'target-path'.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
clean() {
:;
}
# }} dbt clean
# {{ dbt clone
# @cmd Create clones of selected nodes based on their location...
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @option --exclude <TUPLE> Specify the nodes to exclude.
# @flag -f --full-refresh If specified, dbt will drop incremental models and fully-recalculate the incremental table from the model definition.
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --resource-types[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default|all] Restricts the types of resources that dbt will include
# @option --resource-type[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default|all] Restricts the types of resources that dbt will include
# @option --exclude-resource-types[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default] Specify the types of resources that dbt will exclude
# @option --exclude-resource-type[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default] Specify the types of resources that dbt will exclude
# @option -s <TUPLE> Specify the nodes to include.
# @option -m <TUPLE> Specify the nodes to include.
# @option --select <TUPLE> Specify the nodes to include.
# @option --models <TUPLE> Specify the nodes to include.
# @option --model <TUPLE> Specify the nodes to include.
# @option --selector <TEXT> The selector name to use, as defined in selectors.yml
# @option --target-path <PATH> Configure the 'target-path'.
# @option --threads <INTEGER> Specify number of threads to use while executing models.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
clone() {
:;
}
# }} dbt clone
# {{ dbt compile
# @cmd Generates executable SQL from source, model, test, and...
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @option --exclude <TUPLE> Specify the nodes to exclude.
# @flag -f --full-refresh If specified, dbt will drop incremental models and fully-recalculate the incremental table from the model definition.
# @option --output <json|text> Output format for dbt compile and dbt show
# @flag --introspect Whether to scaffold introspective queries as part of compilation
# @flag --no-introspect Whether to scaffold introspective queries as part of compilation
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @flag --empty If specified, limit input refs and sources to zero rows.
# @flag --no-empty If specified, limit input refs and sources to zero rows.
# @option -s <TUPLE> Specify the nodes to include.
# @option -m <TUPLE> Specify the nodes to include.
# @option --select <TUPLE> Specify the nodes to include.
# @option --models <TUPLE> Specify the nodes to include.
# @option --model <TUPLE> Specify the nodes to include.
# @option --selector <TEXT> The selector name to use, as defined in selectors.yml
# @option --inline <TEXT> Pass SQL inline to dbt compile and show
# @option --target-path <PATH> Configure the 'target-path'.
# @option --threads <INTEGER> Specify number of threads to use while executing models.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
compile() {
:;
}
# }} dbt compile
# {{ dbt debug
# @cmd Show information on the current dbt environment and...
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --connection Test the connection to the target database independent of dependency checks.
# @flag --config-dir Print a system-specific command to access the directory that the current dbt project is searching for a profiles.yml.
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
debug() {
:;
}
# }} dbt debug
# {{ dbt deps
# @cmd Install dbt packages specified.
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --vars <YAML> Supply variables to the project.
# @option --source[hub|git|local] Source to download page from, must be one of hub, git, or local.
# @flag --lock Generate the package-lock.yml file without install the packages.
# @flag --upgrade Upgrade packages to the latest version.
# @option --add-package <NEWPACKAGE> Add a package to current package spec, specify it as package-name@version.
# @flag -h --help Show this message and exit.
deps() {
:;
}
# }} dbt deps
# {{ dbt docs
# @cmd Generate or serve the documentation website for your...
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag -h --help Show this message and exit.
docs() {
:;
}
# {{{ dbt docs generate
# @cmd Generate the documentation website for your project
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --compile Whether or not to run 'dbt compile' as part of docs generation
# @flag --no-compile Whether or not to run 'dbt compile' as part of docs generation
# @option --exclude <TUPLE> Specify the nodes to exclude.
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option -s <TUPLE> Specify the nodes to include.
# @option -m <TUPLE> Specify the nodes to include.
# @option --select <TUPLE> Specify the nodes to include.
# @option --models <TUPLE> Specify the nodes to include.
# @option --model <TUPLE> Specify the nodes to include.
# @option --selector <TEXT> The selector name to use, as defined in selectors.yml
# @flag --empty-catalog If specified, generate empty catalog.json file during the `dbt docs generate` command.
# @flag --static Generate an additional static_index.html with manifest and catalog built-in.
# @option --target-path <PATH> Configure the 'target-path'.
# @option --threads <INTEGER> Specify number of threads to use while executing models.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
docs::generate() {
:;
}
# }}} dbt docs generate
# {{{ dbt docs serve
# @cmd Serve the documentation website for your project
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --browser Wether or not to open a local web browser after starting the server
# @flag --no-browser Wether or not to open a local web browser after starting the server
# @option --host <TEXT> host to serve dbt docs on
# @option --port <INTEGER> Specify the port number for the docs server
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --target-path <PATH> Configure the 'target-path'.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
docs::serve() {
:;
}
# }}} dbt docs serve
# }} dbt docs
# {{ dbt init
# @cmd Initialize a new dbt project.
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @flag -s --skip-profile-setup Skip interactive profile setup.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
# @arg project_name
init() {
:;
}
# }} dbt init
# {{ dbt list
# @cmd List the resources in your project
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @option --exclude <TUPLE> Specify the nodes to exclude.
# @option -m <TUPLE> Specify the nodes to include.
# @option --models <TUPLE> Specify the nodes to include.
# @option --model <TUPLE> Specify the nodes to include.
# @option --output[json|name|path|selector] Specify the output format: either JSON or a newline-delimited list of selectors, paths, or names
# @option --output-keys <TUPLE> Space-delimited listing of node properties to include as custom keys for JSON output (e.g. `--output json --output-keys name resource_type description`)
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --resource-types[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default|all] Restricts the types of resources that dbt will include
# @option --resource-type[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default|all] Restricts the types of resources that dbt will include
# @option --exclude-resource-types[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default] Specify the types of resources that dbt will exclude
# @option --exclude-resource-type[metric|semantic_model|saved_query|source|analysis|model|test|unit_test|exposure|snapshot|seed|default] Specify the types of resources that dbt will exclude
# @option -s --select <TUPLE> Specify the nodes to include.
# @option --selector <TEXT> The selector name to use, as defined in selectors.yml
# @option --target-path <PATH> Configure the 'target-path'.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
list() {
:;
}
# }} dbt list
# {{ dbt parse
# @cmd Parses the project and provides information on performance
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --target-path <PATH> Configure the 'target-path'.
# @option --threads <INTEGER> Specify number of threads to use while executing models.
# @option --vars <YAML> Supply variables to the project.
# @flag -h --help Show this message and exit.
parse() {
:;
}
# }} dbt parse
# {{ dbt retry
# @cmd Retry the nodes that failed in the previous run.
# @flag --cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag --no-cache-selected-only At start of run, populate relational cache only for schemas containing selected nodes, or for all schemas of interest.
# @flag -d Display debug logging during dbt execution.
# @flag --debug Display debug logging during dbt execution.
# @flag --no-debug Display debug logging during dbt execution.
# @flag --defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @flag --no-defer If set, resolve unselected nodes by deferring to the manifest within the --state directory.
# @option --defer-state <DIRECTORY> Override the state directory for deferral only.
# @option --deprecated-favor-state <TEXT> Internal flag for deprecating old env var.
# @flag -x Stop execution on first failure.
# @flag --fail-fast Stop execution on first failure.
# @flag --no-fail-fast Stop execution on first failure.
# @flag --favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @flag --no-favor-state If set, defer to the argument provided to the state flag for resolving unselected nodes, even if the node(s) exist as a database object in the current environment.
# @option --indirect-selection[eager|cautious|buildable|empty] Choose which tests to select that are adjacent to selected resources.
# @flag --log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @flag --no-log-cache-events Enable verbose logging for relational cache events to help when debugging.
# @option --log-format[text|debug|json|default] Specify the format of logging to the console and the log file.
# @option --log-format-file[text|debug|json|default] Specify the format of logging to the log file by overriding the default value and the general --log-format setting.
# @option --log-level[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the console and the log file.
# @option --log-level-file[debug|info|warn|error|none] Specify the minimum severity of events that are logged to the log file by overriding the default value and the general --log-level setting.
# @option --log-path <PATH> Configure the 'log-path'.
# @flag --partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --no-partial-parse Allow for partial parsing by looking for and writing to a pickle file in the target directory.
# @flag --populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --no-populate-cache At start of run, use `show` or `information_schema` queries to populate a relational cache, which can speed up subsequent materializations.
# @flag --print Output all {{ print() }} macro calls.
# @flag --no-print Output all {{ print() }} macro calls.
# @option --printer-width <INTEGER> Sets the width of terminal output
# @option --profile <TEXT> Which existing profile to load.
# @flag -q Suppress all non-error logging to stdout.
# @flag --quiet Suppress all non-error logging to stdout.
# @flag --no-quiet Suppress all non-error logging to stdout.
# @option -r --record-timing-info <PATH> When this option is passed, dbt will output low-level timing stats to the specified file.
# @flag --send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @flag --no-send-anonymous-usage-stats Send anonymous usage stats to dbt Labs.
# @option --state <DIRECTORY> Unless overridden, use this state directory for both state comparison and deferral.
# @flag --static-parser Use the static parser.
# @flag --no-static-parser Use the static parser.
# @option -t --target <TEXT> Which target to load for the given profile
# @flag --use-colors Specify whether log output is colorized in the console and the log file.
# @flag --no-use-colors Specify whether log output is colorized in the console and the log file.
# @flag --use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --no-use-colors-file Specify whether log file output is colorized by overriding the default value and the general --use-colors/--no-use-colors setting.
# @flag --use-experimental-parser Enable experimental parsing features.
# @flag --no-use-experimental-parser Enable experimental parsing features.
# @flag -V Show version information and exit
# @flag -v Show version information and exit
# @flag --version Show version information and exit
# @flag --version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --no-version-check If set, ensure the installed dbt version matches the require-dbt-version specified in the dbt_project.yml file (if any).
# @flag --warn-error If dbt would normally warn, instead raise an exception.
# @option --warn-error-options <WARNERROROPTIONSTYPE> If dbt would normally warn, instead raise an exception based on include/exclude configuration.
# @flag --write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @flag --no-write-json Whether or not to write the manifest.json and run_results.json files to the target directory
# @option --project-dir <PATH> Which directory to look in for the dbt_project.yml file.
# @option --profiles-dir <PATH> Which directory to look in for the profiles.yml file.