Skip to main content

sync_job_info

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

Overview

Namesync_job_info
TypeResource
Idsumologic.content_sync.sync_job_info

Fields

The following fields are returned by SELECT queries:

Information of Content Sync Job.

NameDatatypeDescription
content_listarrayList of Content and Configuration Information. (wire: contentList)
destination_child_org_infoobject (wire: destinationChildOrgInfo)
source_child_org_infoobject (wire: sourceChildOrgInfo)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectjob_id, regionInformation Of Content Sync Job by ID.

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
job_idstringId of Content Sync Job (wire: jobId)
regionstringSumo Logic deployment (au, ca, ch, de, eu, fed, in, jp, kr, us1, us2). Resolved from the SUMOLOGIC_ENVIRONMENT environment variable when it is set (x-stackQL-envVar, the same variable the Terraform provider reads); otherwise defaults to us2. A WHERE region = '...' value always takes precedence. (enum: [au, ca, ch, de, eu, fed, in, jp, kr, us1, us2], default: us2, x-stackQL-envVar: SUMOLOGIC_ENVIRONMENT)

SELECT examples

Information Of Content Sync Job by ID.

SELECT
content_list,
destination_child_org_info,
source_child_org_info
FROM sumologic.content_sync.sync_job_info
WHERE job_id = '{{ job_id }}' -- required
AND region = '{{ region }}' -- required unless SUMOLOGIC_ENVIRONMENT is set
;