Skip to main content

entities

Creates, updates, deletes, gets or lists a entities resource.

Overview

Nameentities
TypeResource
Idconfluent.catalog.entities

Fields

NameDatatypeDescription
entityobjectThe entity
referredEntitiesobjectThe referred entities

Methods

NameAccessible byRequired ParamsDescription
get_by_unique_attributesSELECTqualifiedName, typeNameGenerally Available Fetch complete definition of an entity given its type and unique attribute.
partial_entity_updateEXECGenerally Available Partially update an entity attribute.

SELECT examples

Generally Available Fetch complete definition of an entity given its type and unique attribute.

SELECT
entity,
referredEntities
FROM confluent.catalog.entities
WHERE qualifiedName = '{{ qualifiedName }}'
AND typeName = '{{ typeName }}';