Skip to main content

folders_global_status

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

Overview

Namefolders_global_status
TypeResource
Idsumologic.content.folders_global_status

Fields

The following fields are returned by SELECT queries:

Asynchronous Global View job status.

NameDatatypeDescription
errorobject
statusstringWhether or not the request is in progress (InProgress), has completed successfully (Success), or has completed with an error (Failed).
statusMessagestringAdditional status message generated if the status is not Failed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getGlobalFolderAsyncStatusselectjobId, regionGet the status of an asynchronous Global View job for the given job identifier. If job succeeds, use [Global View Result] endpoint to fetch all content items that you have permissions to view.

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
jobIdstringThe identifier of the asynchronous Global View job.
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)

SELECT examples

Get the status of an asynchronous Global View job for the given job identifier. If job succeeds, use [Global View Result] endpoint to fetch all content items that you have permissions to view.

SELECT
error,
status,
statusMessage
FROM sumologic.content.folders_global_status
WHERE jobId = '{{ jobId }}' -- required
AND region = '{{ region }}' -- required
;