business_metadata_defs
Creates, updates, deletes, gets or lists a business_metadata_defs resource.
Overview
| Name | business_metadata_defs |
| Type | Resource |
| Id | confluent.catalog.business_metadata_defs |
Fields
| Name | Datatype | Description |
|---|---|---|
name | string | The name |
description | string | The description |
attributeDefs | array | The attribute definitions |
category | string | The category |
createTime | integer | The create time |
createdBy | string | The creator |
guid | string | The internal guid |
options | object | The options |
serviceType | string | The service type |
typeVersion | string | The type version |
updateTime | integer | The update time |
updatedBy | string | The updater |
version | integer | The version |
Methods
SELECT examples
Bulk retrieval API for retrieving business metadata definitions.
SELECT
name,
description,
attributeDefs,
category,
createTime,
createdBy,
guid,
options,
serviceType,
typeVersion,
updateTime,
updatedBy,
version
FROM confluent.catalog.business_metadata_defs
;
INSERT example
Use the following StackQL query and manifest file to create a new business_metadata_defs resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO confluent.catalog.business_metadata_defs (
)
SELECT
;
- name: business_metadata_defs
props: []
DELETE example
Deletes the specified business_metadata_defs resource.
/*+ delete */
DELETE FROM confluent.catalog.business_metadata_defs
WHERE bmName = '{{ bmName }}';