blobs
Creates, updates, deletes, gets or lists a blobs resource.
Overview
| Name | blobs |
| Type | Resource |
| Id | cloudflare.images.blobs |
Fields
The following fields are returned by SELECT queries:
- list
Base image response. Returns uploaded image data.
| Name | Datatype | Description |
|---|---|---|
contents | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | image_id, account_id | Fetch base image. For most images this will be the originally uploaded file. For larger images it can be a near-lossless version of the original. |
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. |
image_id | string |
SELECT examples
- list
Fetch base image. For most images this will be the originally uploaded file. For larger images it can be a near-lossless version of the original.
SELECT
contents
FROM cloudflare.images.blobs
WHERE image_id = '{{ image_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;