tag_defs
Creates, updates, deletes, gets or lists a tag_defs
resource.
Overview
Name | tag_defs |
Type | Resource |
Id | confluent.catalog.tag_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 |
entityTypes | array | The entity types |
guid | string | The internal guid |
options | object | The options |
serviceType | string | The service type |
subTypes | array | The subtypes |
superTypes | array | The supertypes |
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 tag definitions.
SELECT
name,
description,
attributeDefs,
category,
createTime,
createdBy,
entityTypes,
guid,
options,
serviceType,
subTypes,
superTypes,
typeVersion,
updateTime,
updatedBy,
version
FROM confluent.catalog.tag_defs
;
INSERT
example
Use the following StackQL query and manifest file to create a new tag_defs
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO confluent.catalog.tag_defs (
)
SELECT
;
- name: tag_defs
props: []
DELETE
example
Deletes the specified tag_defs
resource.
/*+ delete */
DELETE FROM confluent.catalog.tag_defs
WHERE tagName = '{{ tagName }}';