patch
https://{regionAndDomain}.com/api/app/projects//warehouse-sources/imports/
Update an existing warehouse import's settings.
Patchable Fields
The following fields can be modified:
- paused (boolean, required): Pause or resume the import sync
- run_every (integer): Sync frequency in nanoseconds. Common values:
- Hourly:
3600000000000(60 * 60 * 10^9) - Daily:
86400000000000(24 * 60 * 60 * 10^9) - Weekly:
604800000000000(7 * 24 * 60 * 60 * 10^9)
- Hourly:
- start_time_ms (number): Start time for the import schedule in milliseconds since epoch
- databricks_params (object): Databricks-specific cluster configuration (only for Databricks sources)
Pause/Resume Behavior
- When
paused: true, the import job will be stopped and no new syncs will be triggered - When
paused: false, the import job will be resumed with the specified frequency - When resuming, you can optionally update
run_everyandstart_time_ms
Databricks Configuration
For Databricks Jobs compute imports, you can update cluster configurations:
export_cluster_config: Configuration for the data export job clusterrun_queries_cluster_config: Configuration for the query execution job cluster