gooddata_sdk.catalog.data_source.action_requests.scan_model_request.CatalogScanModelRequest

class gooddata_sdk.catalog.data_source.action_requests.scan_model_request.CatalogScanModelRequest(*, separator: str = '__', scan_tables: bool = True, scan_views: bool = False, table_prefix: Optional[str] = None, view_prefix: Optional[str] = None, schemata: Optional[list[str]] = None)

Bases: Base

__init__(*, separator: str = '__', scan_tables: bool = True, scan_views: bool = False, table_prefix: Optional[str] = None, view_prefix: Optional[str] = None, schemata: Optional[list[str]] = None) None

Method generated by attrs for class CatalogScanModelRequest.

Methods

__init__(*[, separator, scan_tables, ...])

Method generated by attrs for class CatalogScanModelRequest.

client_class()

from_api(entity)

Creates object from entity passed by client class, which represents it as dictionary.

from_dict(data[, camel_case])

Creates object from dictionary.

to_api()

to_dict([camel_case])

Converts object into dictionary.

Attributes

separator

scan_tables

scan_views

table_prefix

view_prefix

schemata

classmethod from_api(entity: Dict[str, Any]) T

Creates object from entity passed by client class, which represents it as dictionary.

classmethod from_dict(data: Dict[str, Any], camel_case: bool = True) T

Creates object from dictionary. It needs to be specified if the dictionary is in camelCase or snake_case.

to_dict(camel_case: bool = True) Dict[str, Any]

Converts object into dictionary. Optional argument if the dictionary should be camelCase or snake_case can be specified.