Skip to main content

export_result

Creates, updates, deletes, gets or lists an export_result resource.

Overview

Nameexport_result
TypeResource
Idsumologic.content.export_result

Fields

The following fields are returned by SELECT queries:

The result of export job.

NameDatatypeDescription
namestringThe name of the item.
typestringThe content item type. Note: - MewboardSyncDefinition is depreciated, and will soon be removed. Please use DashboardV2SyncDefinition instead. - Dashboard links are not supported for dashboards.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getAsyncExportResultselectcontentId, jobId, regionisAdminModeGet results from content export job for the given job identifier. The results from this export are incompatible with the Library import feature in the Sumo user interface.

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
contentIdstringThe identifier of the exported content item.
jobIdstringThe identifier of the asynchronous job.
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

Get results from content export job for the given job identifier. The results from this export are incompatible with the Library import feature in the Sumo user interface.

SELECT
name,
type
FROM sumologic.content.export_result
WHERE contentId = '{{ contentId }}' -- required
AND jobId = '{{ jobId }}' -- required
AND region = '{{ region }}' -- required
AND isAdminMode = '{{ isAdminMode }}'
;