folders_admin_recommended_status
Creates, updates, deletes, gets or lists a folders_admin_recommended_status resource.
Overview
| Name | folders_admin_recommended_status |
| Type | Resource |
| Id | sumologic.content.folders_admin_recommended_status |
Fields
The following fields are returned by SELECT queries:
- getAdminRecommendedFolderAsyncStatus
Asynchronous Admin Recommended folder job status.
| Name | Datatype | Description |
|---|---|---|
error | object | |
status | string | Whether or not the request is in progress (InProgress), has completed successfully (Success), or has completed with an error (Failed). |
statusMessage | string | Additional status message generated if the status is not Failed. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
getAdminRecommendedFolderAsyncStatus | select | jobId, region | Get the status of an asynchronous Admin Recommended folder job for the given job identifier. If job succeeds, use [Admin Recommended Job Result] endpoint to fetch top-level content items in Admin Recommended folder. |
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 |
|---|---|---|
jobId | string | The identifier of the asynchronous Admin Recommended folder job. |
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
SELECT examples
- getAdminRecommendedFolderAsyncStatus
Get the status of an asynchronous Admin Recommended folder job for the given job identifier. If job succeeds, use [Admin Recommended Job Result] endpoint to fetch top-level content items in Admin Recommended folder.
SELECT
error,
status,
statusMessage
FROM sumologic.content.folders_admin_recommended_status
WHERE jobId = '{{ jobId }}' -- required
AND region = '{{ region }}' -- required
;