Table: confluence_search_content
Search content in a Confluence instance.
Examples
Get content with type "blogpost"
select id, title, status, type, last_modifiedfrom confluence_search_contentwhere cql = 'type=blogpost';
Get content with the "soc2" label
select id, title, status, type, last_modifiedfrom confluence_search_contentwhere cql = 'label=soc2';
Schema for confluence_search_content
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
cql | text | = | The Confluence query langauge. |
id | text | Automatically assigned when the content is created. | |
last_modified | text | When the content was last modified | |
status | text | The content status | |
title | text | The content title | |
type | text | The content type (page, blogpost, attachment or content) |