contexts
Creates, updates, deletes, gets or lists a contexts resource.
Overview
| Name | contexts |
| Type | Resource |
| Id | confluent.schema_registry.contexts |
Fields
The following fields are returned by SELECT queries:
- list_contexts
The contexts.
| Name | Datatype | Description |
|---|---|---|
context | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_contexts | select | offset, limit | Retrieves a list of contexts. |
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 |
|---|---|---|
limit | integer (int32) | Pagination size for results. Ignored if negative |
offset | integer (int32) | Pagination offset for results |
SELECT examples
- list_contexts
Retrieves a list of contexts.
SELECT
context
FROM confluent.schema_registry.contexts
WHERE offset = '{{ offset }}'
AND limit = '{{ limit }}'
;