Entity Client
The DataHub Entity Client provides a client for interacting with DataHub entities.
EntityClient
Bases: object
Client for managing DataHub entities.
This class provides methods for retrieving and managing DataHub entities such as datasets, containers, and other metadata objects.
- Parameters:client (
DataHubClient
) –
create(entity)
- Parameters:entity (
Entity
) - Return type:
None
delete(urn, check_exists=True, cascade=False, hard=False)
Delete an entity by its urn.
- Parameters:
- urn (
Union
[Urn
,str
]) – The urn of the entity to delete. Can be a string orUrn
object. - check_exists (
bool
) – Whether to check if the entity exists before deletion. Defaults to True. - cascade (
bool
) – Whether to cascade delete related entities. When True, deletes child entities like datajobs within dataflows, datasets within containers, etc. Not yet supported. - hard (
bool
) – Whether to perform a hard delete (permanent) or soft delete. Defaults to False.
- urn (
- Raises:SdkUsageError – If the entity does not exist and check_exists is True, or if cascade is True (not supported).
- Return type:
None
NOTE
When hard is True, the operation is irreversible and the entity will be permanently removed.
Impact of cascade deletion (still to be done) depends on the input entity type:
- Container: Recursively deletes all containers and data assets within the container.
- Dataflow: Recursively deletes all data jobs within the dataflow.
- Dashboard: TBD
- DataPlatformInstance: TBD
- …
get(urn)
Retrieve an entity by its urn.
- Parameters:urn (
Union
[Urn
,str
]) – The urn of the entity to retrieve. Can be a string orUrn
object. - Return type:
Entity
- Returns: The retrieved entity instance.
- Raises:
- ItemNotFoundError – If the entity does not exist.
- SdkUsageError – If the entity type is not yet supported.
- InvalidUrnError – If the URN is invalid.
update(entity)
- Parameters:entity (
Union
[Entity
,MetadataPatchProposal
]) - Return type:
None
upsert(entity)
- Parameters:entity (
Entity
) - Return type:
None
Is this page helpful?