tags
Creates, updates, deletes, gets or lists a tags
resource.
Overview
Name | tags |
Type | Resource |
Id | confluent.catalog.tags |
Fields
Name | Datatype | Description |
---|---|---|
attributes | object | The tag attributes |
entityGuid | string | The internal entity guid |
entityName | string | The qualified name of the entity |
entityStatus | string | The entity status |
entityType | string | The entity type |
error | object | Error message of this operation |
propagate | boolean | Whether to propagate the tag |
removePropagationsOnEntityDelete | boolean | Whether to remove propagations on entity delete |
typeName | string | The tag name |
validityPeriods | array | The validity periods |
Methods
SELECT
examples
Gets the list of tags for a given entity represented by a qualified name.
SELECT
attributes,
entityGuid,
entityName,
entityStatus,
entityType,
error,
propagate,
removePropagationsOnEntityDelete,
typeName,
validityPeriods
FROM confluent.catalog.tags
WHERE qualifiedName = '{{ qualifiedName }}'
AND typeName = '{{ typeName }}';
INSERT
example
Use the following StackQL query and manifest file to create a new tags
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO confluent.catalog.tags (
)
SELECT
;
- name: tags
props: []
DELETE
example
Deletes the specified tags
resource.
/*+ delete */
DELETE FROM confluent.catalog.tags
WHERE qualifiedName = '{{ qualifiedName }}'
AND tagName = '{{ tagName }}'
AND typeName = '{{ typeName }}';