Skip to main content
Version: 1.3.14

PowerBITable

Signature

class great_expectations.datasource.fluent.fabric.PowerBITable(
*,
name: str,
type: Literal['powerbi_table'] = 'powerbi_table',
id: Optional[uuid.UUID] = None,
order_by: List[great_expectations.datasource.fluent.interfaces.Sorter] = None,
batch_metadata: Dict[str,
Any] = None,
batch_definitions: List[great_expectations.core.batch_definition.BatchDefinition] = None,
table: str,
fully_qualified_columns: bool = False,
num_rows: Optional[int] = None,
multiindex_hierarchies: bool = False,
mode: Literal['xmla',
'rest',
'onelake'] = 'xmla'
)

Microsoft PowerBI Table.

Methods

delete_batch_definition

Signature

delete_batch_definition(
name: str
)None

Delete a batch definition.

Parameters

NameDescription

name (str)

Name of the BatchDefinition to delete.

get_batch_definition

Signature

get_batch_definition(
name: str
) → great_expectations.core.batch_definition.BatchDefinition

Get a batch definition.

Parameters

NameDescription

name (str)

Name of the BatchDefinition to get.

Raises

TypeDescription

KeyError

If the BatchDefinition does not exist.