This is probably the easiest way to create job from JSON:import json
from databricks.sdk import WorkspaceClient
from databricks.sdk.service.jobs import CreateJob
client = WorkspaceClient(
host=WORKSPACE_DICT[WORKSPACE_NAME]["host_name"], token=...
It may work, but this defeats the purpose, as at this point it's much easier to just call Databricks API directly - you can pass it JSON just like that. Entire point of the SDK is to make using API simpler and not to generate few hundred lines of add...