export_result
Creates, updates, deletes, gets or lists an export_result
resource.
Overview
Name | export_result |
Type | Resource |
Id | sumologic.content.export_result |
Fields
The following fields are returned by SELECT
queries:
- getAsyncExportResult
The result of export job.
Name | Datatype | Description |
---|---|---|
name | string | The name of the item. |
type | string | The 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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getAsyncExportResult | select | contentId , jobId , region | isAdminMode | 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. |
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 |
---|---|---|
contentId | string | The identifier of the exported content item. |
jobId | string | The identifier of the asynchronous job. |
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
- getAsyncExportResult
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 }}'
;