job_http_configuration
Information about jobs that will be ran through an HTTP call (e.g. /extract_all).
Primary Key:Foreign Keys:schedule_id=>schedule.schedule_id
job_http_configuration_schedule_id_idx-schedule_id
| Column | Data Type | Nullable | Indexed | Description |
|---|---|---|---|---|
job_http_configuration_id | bigint | No | Yes | Snowflake ID for job_http_configuration primary key. |
name | text | No | No | Name for the job. |
schedule_id | bigint | No | Yes | The schedule that triggers this HTTP job. |
url | text | No | No | URL to call when the job runs. |
method | http_method_type | No | No | HTTP method used when calling the URL. |
body | jsonb | No | No | Request body sent with the HTTP call. |
headers | text[] | No | No | HTTP headers to send with the call, formatted as 'Header-Name=value' strings. |
auth_type | http_auth_type | No | No | How to authenticate the outbound HTTP call. 'none' uses the default client; 'id_token' attaches a Google ID token (gateway-internal calls). |