Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 1.46 KB

ScanRequest.md

File metadata and controls

18 lines (13 loc) · 1.46 KB

ScanRequest

A request containing all information critical to model scanning.

Properties

Name Type Description Notes
scan_tables bool A flag indicating whether the tables should be scanned.
scan_views bool A flag indicating whether the views should be scanned.
separator str A separator between prefixes and the names.
schemata [str] What schemata will be scanned. [optional]
table_prefix str Tables starting with this prefix will be scanned. The prefix is then followed by the value of `separator` parameter. Given the table prefix is `out_table` and separator is `__`, the table with name like `out_table__customers` will be scanned. [optional]
view_prefix str Views starting with this prefix will be scanned. The prefix is then followed by the value of `separator` parameter. Given the view prefix is `out_view` and separator is `__`, the table with name like `out_view__us_customers` will be scanned. [optional]
any string name bool, date, datetime, dict, float, int, list, str, none_type any string name can be used but the value must be the correct type [optional]

[Back to Model list] [Back to API list] [Back to README]