Skip to main content

copy_jobs

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

Overview

Namecopy_jobs
TypeResource
Idsumologic.content.copy_jobs

Fields

The following fields are returned by SELECT queries:

The status of the content copy job.

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectid, job_id, regionis_admin_modeGet the status of the copy request with the given job identifier. On success, field statusMessage will contain identifier of the newly copied content in format: id: &#123;hexIdentifier&#125;.<br />
startexecid, destinationFolder, regionisAdminModeStart an asynchronous content copy job with the given identifier to the destination folder. If the content item is a folder, everything under the folder is copied recursively.

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
destinationFolderstringThe identifier of the destination folder.
idstringThe identifier of the content item to copy. Identifiers from the Library in the Sumo user interface are provided in decimal format which is incompatible with this API. The identifier needs to be in hexadecimal format.
job_idstringThe identifier of the asynchronous copy request 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)
isAdminModestringSet this to "true" if you want to perform the request as a Content Administrator.
is_admin_modestringSet this to "true" if you want to perform the request as a Content Administrator. (wire: isAdminMode)

SELECT examples

Get the status of the copy request with the given job identifier. On success, field statusMessage will contain identifier of the newly copied content in format: id: &#123;hexIdentifier&#125;.<br />

SELECT
error,
status,
status_message
FROM sumologic.content.copy_jobs
WHERE id = '{{ id }}' -- required
AND job_id = '{{ job_id }}' -- required
AND region = '{{ region }}' -- required unless SUMOLOGIC_ENVIRONMENT is set
AND is_admin_mode = '{{ is_admin_mode }}'
;

Lifecycle Methods

EXEC variables use wire (API) names.

Start an asynchronous content copy job with the given identifier to the destination folder. If the content item is a folder, everything under the folder is copied recursively.

EXEC sumologic.content.copy_jobs.start
@id='{{ id }}' --required,
@destinationFolder='{{ destinationFolder }}' --required,
@region='{{ region }}' --required unless SUMOLOGIC_ENVIRONMENT is set,
@isAdminMode='{{ isAdminMode }}'
;