Skip to main content

business_metadata

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

Overview

Namebusiness_metadata
TypeResource
Idconfluent.catalog.business_metadata

Fields

NameDatatypeDescription
attributesobjectThe business metadata attributes
entityNamestringThe qualified name of the entity
entityTypestringThe entity type
errorobjectError message of this operation
typeNamestringThe business metadata name

Methods

NameAccessible byRequired ParamsDescription
get_business_metadataSELECTqualifiedName, typeNameGenerally Available Gets the list of business metadata for a given entity represented by a qualified name.
create_business_metadataINSERTGenerally Available Bulk API to create multiple business metadata.
delete_business_metadataDELETEbmName, qualifiedName, typeNameGenerally Available Delete a business metadata on an entity.
update_business_metadataEXECGenerally Available Bulk API to update multiple business metadata.

SELECT examples

Generally Available Gets the list of business metadata for a given entity represented by a qualified name.

SELECT
attributes,
entityName,
entityType,
error,
typeName
FROM confluent.catalog.business_metadata
WHERE qualifiedName = '{{ qualifiedName }}'
AND typeName = '{{ typeName }}';

INSERT example

Use the following StackQL query and manifest file to create a new business_metadata resource.

/*+ create */
INSERT INTO confluent.catalog.business_metadata (

)
SELECT

;

DELETE example

Deletes the specified business_metadata resource.

/*+ delete */
DELETE FROM confluent.catalog.business_metadata
WHERE bmName = '{{ bmName }}'
AND qualifiedName = '{{ qualifiedName }}'
AND typeName = '{{ typeName }}';