Source code for pyatlan.model.assets.core.power_b_i
# SPDX-License-Identifier: Apache-2.0
# Copyright 2025 Atlan Pte. Ltd.
from __future__ import annotations
from typing import ClassVar, List, Optional
from pydantic.v1 import Field, validator
from pyatlan.model.enums import PowerbiEndorsement
from pyatlan.model.fields.atlan_fields import (
BooleanField,
KeywordField,
KeywordTextField,
TextField,
)
from .b_i import BI
[docs]
class PowerBI(BI):
"""Description"""
type_name: str = Field(default="PowerBI", allow_mutation=False)
@validator("type_name")
def validate_type_name(cls, v):
if v != "PowerBI":
raise ValueError("must be PowerBI")
return v
def __setattr__(self, name, value):
if name in PowerBI._convenience_properties:
return object.__setattr__(self, name, value)
super().__setattr__(name, value)
POWER_BI_IS_HIDDEN: ClassVar[BooleanField] = BooleanField(
"powerBIIsHidden", "powerBIIsHidden"
)
"""
Whether this asset is hidden in Power BI (true) or not (false).
"""
POWER_BI_TABLE_QUALIFIED_NAME: ClassVar[KeywordTextField] = KeywordTextField(
"powerBITableQualifiedName",
"powerBITableQualifiedName",
"powerBITableQualifiedName.text",
)
"""
Unique name of the Power BI table in which this asset exists.
"""
POWER_BI_FORMAT_STRING: ClassVar[TextField] = TextField(
"powerBIFormatString", "powerBIFormatString"
)
"""
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property.
"""
POWER_BI_ENDORSEMENT: ClassVar[KeywordField] = KeywordField(
"powerBIEndorsement", "powerBIEndorsement"
)
"""
Endorsement status of this asset, in Power BI.
"""
_convenience_properties: ClassVar[List[str]] = [
"power_b_i_is_hidden",
"power_b_i_table_qualified_name",
"power_b_i_format_string",
"power_b_i_endorsement",
]
@property
def power_b_i_is_hidden(self) -> Optional[bool]:
return None if self.attributes is None else self.attributes.power_b_i_is_hidden
@power_b_i_is_hidden.setter
def power_b_i_is_hidden(self, power_b_i_is_hidden: Optional[bool]):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.power_b_i_is_hidden = power_b_i_is_hidden
@property
def power_b_i_table_qualified_name(self) -> Optional[str]:
return (
None
if self.attributes is None
else self.attributes.power_b_i_table_qualified_name
)
@power_b_i_table_qualified_name.setter
def power_b_i_table_qualified_name(
self, power_b_i_table_qualified_name: Optional[str]
):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.power_b_i_table_qualified_name = power_b_i_table_qualified_name
@property
def power_b_i_format_string(self) -> Optional[str]:
return (
None if self.attributes is None else self.attributes.power_b_i_format_string
)
@power_b_i_format_string.setter
def power_b_i_format_string(self, power_b_i_format_string: Optional[str]):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.power_b_i_format_string = power_b_i_format_string
@property
def power_b_i_endorsement(self) -> Optional[PowerbiEndorsement]:
return (
None if self.attributes is None else self.attributes.power_b_i_endorsement
)
@power_b_i_endorsement.setter
def power_b_i_endorsement(
self, power_b_i_endorsement: Optional[PowerbiEndorsement]
):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.power_b_i_endorsement = power_b_i_endorsement
class Attributes(BI.Attributes):
power_b_i_is_hidden: Optional[bool] = Field(default=None, description="")
power_b_i_table_qualified_name: Optional[str] = Field(
default=None, description=""
)
power_b_i_format_string: Optional[str] = Field(default=None, description="")
power_b_i_endorsement: Optional[PowerbiEndorsement] = Field(
default=None, description=""
)
attributes: PowerBI.Attributes = Field(
default_factory=lambda: PowerBI.Attributes(),
description=(
"Map of attributes in the instance and their values. "
"The specific keys of this map will vary by type, "
"so are described in the sub-types of this schema."
),
)