Source code for pyatlan.model.assets.looker_project
# 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.fields.atlan_fields import RelationField
from .looker import Looker
[docs]
class LookerProject(Looker):
"""Description"""
type_name: str = Field(default="LookerProject", allow_mutation=False)
@validator("type_name")
def validate_type_name(cls, v):
if v != "LookerProject":
raise ValueError("must be LookerProject")
return v
def __setattr__(self, name, value):
if name in LookerProject._convenience_properties:
return object.__setattr__(self, name, value)
super().__setattr__(name, value)
EXPLORES: ClassVar[RelationField] = RelationField("explores")
"""
TBC
"""
VIEWS: ClassVar[RelationField] = RelationField("views")
"""
TBC
"""
MODELS: ClassVar[RelationField] = RelationField("models")
"""
TBC
"""
LOOKER_PARENT_PROJECTS: ClassVar[RelationField] = RelationField(
"lookerParentProjects"
)
"""
TBC
"""
LOOKER_CHILD_PROJECTS: ClassVar[RelationField] = RelationField(
"lookerChildProjects"
)
"""
TBC
"""
FIELDS: ClassVar[RelationField] = RelationField("fields")
"""
TBC
"""
_convenience_properties: ClassVar[List[str]] = [
"explores",
"views",
"models",
"looker_parent_projects",
"looker_child_projects",
"fields",
]
@property
def explores(self) -> Optional[List[LookerExplore]]:
return None if self.attributes is None else self.attributes.explores
@explores.setter
def explores(self, explores: Optional[List[LookerExplore]]):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.explores = explores
@property
def views(self) -> Optional[List[LookerView]]:
return None if self.attributes is None else self.attributes.views
@views.setter
def views(self, views: Optional[List[LookerView]]):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.views = views
@property
def models(self) -> Optional[List[LookerModel]]:
return None if self.attributes is None else self.attributes.models
@models.setter
def models(self, models: Optional[List[LookerModel]]):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.models = models
@property
def looker_parent_projects(self) -> Optional[List[LookerProject]]:
return (
None if self.attributes is None else self.attributes.looker_parent_projects
)
@looker_parent_projects.setter
def looker_parent_projects(
self, looker_parent_projects: Optional[List[LookerProject]]
):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.looker_parent_projects = looker_parent_projects
@property
def looker_child_projects(self) -> Optional[List[LookerProject]]:
return (
None if self.attributes is None else self.attributes.looker_child_projects
)
@looker_child_projects.setter
def looker_child_projects(
self, looker_child_projects: Optional[List[LookerProject]]
):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.looker_child_projects = looker_child_projects
@property
def fields(self) -> Optional[List[LookerField]]:
return None if self.attributes is None else self.attributes.fields
@fields.setter
def fields(self, fields: Optional[List[LookerField]]):
if self.attributes is None:
self.attributes = self.Attributes()
self.attributes.fields = fields
class Attributes(Looker.Attributes):
explores: Optional[List[LookerExplore]] = Field(
default=None, description=""
) # relationship
views: Optional[List[LookerView]] = Field(
default=None, description=""
) # relationship
models: Optional[List[LookerModel]] = Field(
default=None, description=""
) # relationship
looker_parent_projects: Optional[List[LookerProject]] = Field(
default=None, description=""
) # relationship
looker_child_projects: Optional[List[LookerProject]] = Field(
default=None, description=""
) # relationship
fields: Optional[List[LookerField]] = Field(
default=None, description=""
) # relationship
attributes: LookerProject.Attributes = Field(
default_factory=lambda: LookerProject.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."
),
)
from .looker_explore import LookerExplore # noqa: E402, F401
from .looker_field import LookerField # noqa: E402, F401
from .looker_model import LookerModel # noqa: E402, F401
from .looker_view import LookerView # noqa: E402, F401
LookerProject.Attributes.update_forward_refs()