Skip to main content

slurper_jobs

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

Overview

Nameslurper_jobs
TypeResource
Idcloudflare.r2.slurper_jobs

Fields

The following fields are returned by SELECT queries:

A list of jobs

NameDatatypeDescription
idstring
createdAtstring
finishedAtstring
overwriteboolean
sourceobject (title: S3SourceResponseSchema)
statusstring (running, paused, aborted, completed)
targetobject (title: R2TargetResponseSchema)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_accountselectaccount_idlimit, offsetLists all R2 Super Slurper migration jobs for the account with their status.

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
account_idstringThe Cloudflare account ID.
limitinteger
offsetinteger

SELECT examples

Lists all R2 Super Slurper migration jobs for the account with their status.

SELECT
id,
createdAt,
finishedAt,
overwrite,
source,
status,
target
FROM cloudflare.r2.slurper_jobs
WHERE account_id = '{{ account_id }}' -- required
AND limit = '{{ limit }}'
AND offset = '{{ offset }}'
;