gooddata_sdk.catalog.data_source.entity_model.data_source.CatalogDataSourceVertica

class gooddata_sdk.catalog.data_source.entity_model.data_source.CatalogDataSourceVertica(*, id: str, name: str, schema: str, url: Optional[str] = None, enable_caching: Optional[bool] = None, cache_path: Optional[List[str]] = None, parameters: Optional[List[Dict[str, str]]] = None, decoded_parameters: Optional[List[Dict[str, str]]] = None, credentials: Credentials, db_specific_attributes: Optional[DatabaseAttributes] = None, url_params: Optional[List[Tuple[str, str]]] = None, type: str = 'VERTICA')

Bases: CatalogDataSourcePostgres

__init__(*, id: str, name: str, schema: str, url: Optional[str] = None, enable_caching: Optional[bool] = None, cache_path: Optional[List[str]] = None, parameters: Optional[List[Dict[str, str]]] = None, decoded_parameters: Optional[List[Dict[str, str]]] = None, credentials: Credentials, db_specific_attributes: Optional[DatabaseAttributes] = None, url_params: Optional[List[Tuple[str, str]]] = None, type: str = 'VERTICA') None

Method generated by attrs for class CatalogDataSourceVertica.

Methods

__init__(*, id, name, schema[, url, ...])

Method generated by attrs for class CatalogDataSourceVertica.

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_api_patch(data_source_id, attributes)

to_dict([camel_case])

Converts object into dictionary.

Attributes

url_template

type

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

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.