folders_admin_recommended
Creates, updates, deletes, gets or lists a folders_admin_recommended resource.
Overview
| Name | folders_admin_recommended |
| Type | Resource |
| Id | sumologic.content.folders_admin_recommended |
Fields
The following fields are returned by SELECT queries:
- getAdminRecommendedFolderAsync
An asynchronous job to get the Admin Recommended folder has been scheduled.
| Name | Datatype | Description |
|---|---|---|
id | string | Identifier to get the status of an asynchronous job. (example: C03E086C137F38B4) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
getAdminRecommendedFolderAsync | select | region | isAdminMode | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
isAdminMode | string | Set this to "true" if you want to perform the request as a Content Administrator. |
SELECT examples
- getAdminRecommendedFolderAsync
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 }}'
;