Skip to main content

folders_admin_recommended

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

Overview

Namefolders_admin_recommended
TypeResource
Idsumologic.content.folders_admin_recommended

Fields

The following fields are returned by SELECT queries:

An asynchronous job to get the Admin Recommended folder has been scheduled.

NameDatatypeDescription
idstringIdentifier to get the status of an asynchronous job. (example: C03E086C137F38B4)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getAdminRecommendedFolderAsyncselectregionisAdminModeSchedule an asynchronous job to get the top-level Admin Recommended content items. You can read more about Admin Recommended folder here.

You get back a identifier of asynchronous job in response to this endpoint. See [Asynchronous-Request] section for more details on how to work with asynchronous request.

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
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)
isAdminModestringSet this to "true" if you want to perform the request as a Content Administrator.

SELECT examples

Schedule an asynchronous job to get the top-level Admin Recommended content items. You can read more about Admin Recommended folder here.

You get back a identifier of asynchronous job in response to this endpoint. See [Asynchronous-Request] section for more details on how to work with asynchronous request.

SELECT
id
FROM sumologic.content.folders_admin_recommended
WHERE region = '{{ region }}' -- required
AND isAdminMode = '{{ isAdminMode }}'
;