slurper_jobs
Creates, updates, deletes, gets or lists a slurper_jobs resource.
Overview
| Name | slurper_jobs |
| Type | Resource |
| Id | cloudflare.r2.slurper_jobs |
Fields
The following fields are returned by SELECT queries:
- list_by_account
A list of jobs
| Name | Datatype | Description |
|---|---|---|
id | string | |
createdAt | string | |
finishedAt | string | |
overwrite | boolean | |
source | object | (title: S3SourceResponseSchema) |
status | string | (running, paused, aborted, completed) |
target | object | (title: R2TargetResponseSchema) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_account | select | account_id | limit, offset | Lists 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
limit | integer | |
offset | integer |
SELECT examples
- list_by_account
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 }}'
;