Skip to main content

paths

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

Overview

Namepaths
TypeResource
Idsumologic.content.paths

Fields

The following fields are returned by SELECT queries:

Full path of the content item.

NameDatatypeDescription
pathstringPath of the content item. (example: /Library/Users/user@test.com/SampleFolder)
path_itemsarrayThe items in the path of the content. (wire: pathItems)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectcontent_id, regionGet full path of a content item with the given identifier.<br />

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
content_idstringIdentifier of the content item to get the path. (wire: contentId)
regionstringSumo Logic deployment (au, ca, ch, de, eu, fed, in, jp, kr, us1, us2). Resolved from the SUMOLOGIC_ENVIRONMENT environment variable when it is set (x-stackQL-envVar, the same variable the Terraform provider reads); otherwise defaults to us2. A WHERE region = '...' value always takes precedence. (enum: [au, ca, ch, de, eu, fed, in, jp, kr, us1, us2], default: us2, x-stackQL-envVar: SUMOLOGIC_ENVIRONMENT)

SELECT examples

Get full path of a content item with the given identifier.<br />

SELECT
path,
path_items
FROM sumologic.content.paths
WHERE content_id = '{{ content_id }}' -- required
AND region = '{{ region }}' -- required unless SUMOLOGIC_ENVIRONMENT is set
;