published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
This resource allows you to create MLflow Model Registry Webhooks in Databricks. Webhooks enable you to listen for Model Registry events so your integrations can automatically trigger actions. You can use webhooks to automate and integrate your machine learning pipeline with existing CI/CD tools and workflows. Webhooks allow trigger execution of a Databricks job or call a web service on specific event(s) that is generated in the MLflow Registry - stage transitioning, creation of registered model, creation of transition request, etc.
Access Control
- MLflow webhooks could be configured only by workspace admins.
Related Resources
The following resources are often used in the same context:
- End to end workspace management guide.
- databricks.Directory to manage directories in Databricks Workpace.
- databricks.MlflowExperiment to manage MLflow experiments in Databricks.
- databricks.MlflowModel to create MLflow models in Databricks.
- databricks.Notebook to manage Databricks Notebooks.
- databricks.Notebook data to export a notebook from Databricks Workspace.
- databricks.Repo to manage Databricks Repos.
Example Usage
POSTing to URL
using Pulumi;
using Databricks = Pulumi.Databricks;
class MyStack : Stack
{
public MyStack()
{
var url = new Databricks.MlflowWebhook("url", new Databricks.MlflowWebhookArgs
{
Description = "URL webhook trigger",
Events =
{
"TRANSITION_REQUEST_CREATED",
},
HttpUrlSpec = new Databricks.Inputs.MlflowWebhookHttpUrlSpecArgs
{
Url = "https://my_cool_host/webhook",
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databricks.NewMlflowWebhook(ctx, "url", &databricks.MlflowWebhookArgs{
Description: pulumi.String("URL webhook trigger"),
Events: pulumi.StringArray{
pulumi.String("TRANSITION_REQUEST_CREATED"),
},
HttpUrlSpec: &MlflowWebhookHttpUrlSpecArgs{
Url: pulumi.String("https://my_cool_host/webhook"),
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";
const url = new databricks.MlflowWebhook("url", {
description: "URL webhook trigger",
events: ["TRANSITION_REQUEST_CREATED"],
httpUrlSpec: {
url: "https://my_cool_host/webhook",
},
});
import pulumi
import pulumi_databricks as databricks
url = databricks.MlflowWebhook("url",
description="URL webhook trigger",
events=["TRANSITION_REQUEST_CREATED"],
http_url_spec=databricks.MlflowWebhookHttpUrlSpecArgs(
url="https://my_cool_host/webhook",
))
Example coming soon!
Create MlflowWebhook Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MlflowWebhook(name: string, args: MlflowWebhookArgs, opts?: CustomResourceOptions);@overload
def MlflowWebhook(resource_name: str,
args: MlflowWebhookArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MlflowWebhook(resource_name: str,
opts: Optional[ResourceOptions] = None,
events: Optional[Sequence[str]] = None,
description: Optional[str] = None,
http_url_spec: Optional[MlflowWebhookHttpUrlSpecArgs] = None,
job_spec: Optional[MlflowWebhookJobSpecArgs] = None,
model_name: Optional[str] = None,
status: Optional[str] = None)func NewMlflowWebhook(ctx *Context, name string, args MlflowWebhookArgs, opts ...ResourceOption) (*MlflowWebhook, error)public MlflowWebhook(string name, MlflowWebhookArgs args, CustomResourceOptions? opts = null)
public MlflowWebhook(String name, MlflowWebhookArgs args)
public MlflowWebhook(String name, MlflowWebhookArgs args, CustomResourceOptions options)
type: databricks:MlflowWebhook
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MlflowWebhookArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MlflowWebhookArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MlflowWebhookArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MlflowWebhookArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MlflowWebhookArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var mlflowWebhookResource = new Databricks.MlflowWebhook("mlflowWebhookResource", new()
{
Events = new[]
{
"string",
},
Description = "string",
HttpUrlSpec = new Databricks.Inputs.MlflowWebhookHttpUrlSpecArgs
{
Url = "string",
Authorization = "string",
EnableSslVerification = false,
String = "string",
},
JobSpec = new Databricks.Inputs.MlflowWebhookJobSpecArgs
{
AccessToken = "string",
JobId = "string",
WorkspaceUrl = "string",
},
ModelName = "string",
Status = "string",
});
example, err := databricks.NewMlflowWebhook(ctx, "mlflowWebhookResource", &databricks.MlflowWebhookArgs{
Events: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
HttpUrlSpec: &databricks.MlflowWebhookHttpUrlSpecArgs{
Url: pulumi.String("string"),
Authorization: pulumi.String("string"),
EnableSslVerification: pulumi.Bool(false),
String: pulumi.String("string"),
},
JobSpec: &databricks.MlflowWebhookJobSpecArgs{
AccessToken: pulumi.String("string"),
JobId: pulumi.String("string"),
WorkspaceUrl: pulumi.String("string"),
},
ModelName: pulumi.String("string"),
Status: pulumi.String("string"),
})
var mlflowWebhookResource = new MlflowWebhook("mlflowWebhookResource", MlflowWebhookArgs.builder()
.events("string")
.description("string")
.httpUrlSpec(MlflowWebhookHttpUrlSpecArgs.builder()
.url("string")
.authorization("string")
.enableSslVerification(false)
.string("string")
.build())
.jobSpec(MlflowWebhookJobSpecArgs.builder()
.accessToken("string")
.jobId("string")
.workspaceUrl("string")
.build())
.modelName("string")
.status("string")
.build());
mlflow_webhook_resource = databricks.MlflowWebhook("mlflowWebhookResource",
events=["string"],
description="string",
http_url_spec={
"url": "string",
"authorization": "string",
"enable_ssl_verification": False,
"string": "string",
},
job_spec={
"access_token": "string",
"job_id": "string",
"workspace_url": "string",
},
model_name="string",
status="string")
const mlflowWebhookResource = new databricks.MlflowWebhook("mlflowWebhookResource", {
events: ["string"],
description: "string",
httpUrlSpec: {
url: "string",
authorization: "string",
enableSslVerification: false,
string: "string",
},
jobSpec: {
accessToken: "string",
jobId: "string",
workspaceUrl: "string",
},
modelName: "string",
status: "string",
});
type: databricks:MlflowWebhook
properties:
description: string
events:
- string
httpUrlSpec:
authorization: string
enableSslVerification: false
string: string
url: string
jobSpec:
accessToken: string
jobId: string
workspaceUrl: string
modelName: string
status: string
MlflowWebhook Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MlflowWebhook resource accepts the following input properties:
- Events List<string>
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - Description string
- Optional description of the MLflow webhook.
- Http
Url MlflowSpec Webhook Http Url Spec - Job
Spec MlflowWebhook Job Spec - Model
Name string - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- Status string
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- Events []string
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - Description string
- Optional description of the MLflow webhook.
- Http
Url MlflowSpec Webhook Http Url Spec Args - Job
Spec MlflowWebhook Job Spec Args - Model
Name string - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- Status string
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- events List<String>
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - description String
- Optional description of the MLflow webhook.
- http
Url MlflowSpec Webhook Http Url Spec - job
Spec MlflowWebhook Job Spec - model
Name String - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- status String
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- events string[]
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - description string
- Optional description of the MLflow webhook.
- http
Url MlflowSpec Webhook Http Url Spec - job
Spec MlflowWebhook Job Spec - model
Name string - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- status string
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- events Sequence[str]
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - description str
- Optional description of the MLflow webhook.
- http_
url_ Mlflowspec Webhook Http Url Spec Args - job_
spec MlflowWebhook Job Spec Args - model_
name str - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- status str
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- events List<String>
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - description String
- Optional description of the MLflow webhook.
- http
Url Property MapSpec - job
Spec Property Map - model
Name String - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- status String
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
Outputs
All input properties are implicitly available as output properties. Additionally, the MlflowWebhook resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing MlflowWebhook Resource
Get an existing MlflowWebhook resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: MlflowWebhookState, opts?: CustomResourceOptions): MlflowWebhook@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
events: Optional[Sequence[str]] = None,
http_url_spec: Optional[MlflowWebhookHttpUrlSpecArgs] = None,
job_spec: Optional[MlflowWebhookJobSpecArgs] = None,
model_name: Optional[str] = None,
status: Optional[str] = None) -> MlflowWebhookfunc GetMlflowWebhook(ctx *Context, name string, id IDInput, state *MlflowWebhookState, opts ...ResourceOption) (*MlflowWebhook, error)public static MlflowWebhook Get(string name, Input<string> id, MlflowWebhookState? state, CustomResourceOptions? opts = null)public static MlflowWebhook get(String name, Output<String> id, MlflowWebhookState state, CustomResourceOptions options)resources: _: type: databricks:MlflowWebhook get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- Optional description of the MLflow webhook.
- Events List<string>
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - Http
Url MlflowSpec Webhook Http Url Spec - Job
Spec MlflowWebhook Job Spec - Model
Name string - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- Status string
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- Description string
- Optional description of the MLflow webhook.
- Events []string
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - Http
Url MlflowSpec Webhook Http Url Spec Args - Job
Spec MlflowWebhook Job Spec Args - Model
Name string - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- Status string
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- description String
- Optional description of the MLflow webhook.
- events List<String>
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - http
Url MlflowSpec Webhook Http Url Spec - job
Spec MlflowWebhook Job Spec - model
Name String - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- status String
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- description string
- Optional description of the MLflow webhook.
- events string[]
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - http
Url MlflowSpec Webhook Http Url Spec - job
Spec MlflowWebhook Job Spec - model
Name string - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- status string
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- description str
- Optional description of the MLflow webhook.
- events Sequence[str]
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - http_
url_ Mlflowspec Webhook Http Url Spec Args - job_
spec MlflowWebhook Job Spec Args - model_
name str - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- status str
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
- description String
- Optional description of the MLflow webhook.
- events List<String>
- The list of events that will trigger execution of Databricks job or POSTing to an URL, for example,
MODEL_VERSION_CREATED,MODEL_VERSION_TRANSITIONED_STAGE,TRANSITION_REQUEST_CREATED, etc. Refer to the Webhooks API documentation for a full list of supported events. - http
Url Property MapSpec - job
Spec Property Map - model
Name String - Name of MLflow model for which webhook will be created. If model name is not specified, a registry-wide webhook is created that listens for the specified events across all versions of all registered models.
- status String
- Optional status of webhook. Possible values are
ACTIVE,TEST_MODE,DISABLED. Default isACTIVE.
Supporting Types
MlflowWebhookHttpUrlSpec, MlflowWebhookHttpUrlSpecArgs
- Url string
- External HTTPS URL called on event trigger (by using a POST request). Structure of payload depends on the event type, refer to documentation for more details.
- string
- Value of the authorization header that should be sent in the request sent by the wehbook. It should be of the form
<auth type> <credentials>, e.g.Bearer <access_token>. If set to an empty string, no authorization header will be included in the request. - Enable
Ssl boolVerification - Enable/disable SSL certificate validation. Default is
true. For self-signed certificates, this field must befalseAND the destination server must disable certificate validation as well. For security purposes, it is encouraged to perform secret validation with the HMAC-encoded portion of the payload and acknowledge the risk associated with disabling hostname validation whereby it becomes more likely that requests can be maliciously routed to an unintended host. - String string
- Url string
- External HTTPS URL called on event trigger (by using a POST request). Structure of payload depends on the event type, refer to documentation for more details.
- string
- Value of the authorization header that should be sent in the request sent by the wehbook. It should be of the form
<auth type> <credentials>, e.g.Bearer <access_token>. If set to an empty string, no authorization header will be included in the request. - Enable
Ssl boolVerification - Enable/disable SSL certificate validation. Default is
true. For self-signed certificates, this field must befalseAND the destination server must disable certificate validation as well. For security purposes, it is encouraged to perform secret validation with the HMAC-encoded portion of the payload and acknowledge the risk associated with disabling hostname validation whereby it becomes more likely that requests can be maliciously routed to an unintended host. - String string
- url String
- External HTTPS URL called on event trigger (by using a POST request). Structure of payload depends on the event type, refer to documentation for more details.
- String
- Value of the authorization header that should be sent in the request sent by the wehbook. It should be of the form
<auth type> <credentials>, e.g.Bearer <access_token>. If set to an empty string, no authorization header will be included in the request. - enable
Ssl BooleanVerification - Enable/disable SSL certificate validation. Default is
true. For self-signed certificates, this field must befalseAND the destination server must disable certificate validation as well. For security purposes, it is encouraged to perform secret validation with the HMAC-encoded portion of the payload and acknowledge the risk associated with disabling hostname validation whereby it becomes more likely that requests can be maliciously routed to an unintended host. - string String
- url string
- External HTTPS URL called on event trigger (by using a POST request). Structure of payload depends on the event type, refer to documentation for more details.
- string
- Value of the authorization header that should be sent in the request sent by the wehbook. It should be of the form
<auth type> <credentials>, e.g.Bearer <access_token>. If set to an empty string, no authorization header will be included in the request. - enable
Ssl booleanVerification - Enable/disable SSL certificate validation. Default is
true. For self-signed certificates, this field must befalseAND the destination server must disable certificate validation as well. For security purposes, it is encouraged to perform secret validation with the HMAC-encoded portion of the payload and acknowledge the risk associated with disabling hostname validation whereby it becomes more likely that requests can be maliciously routed to an unintended host. - string string
- url str
- External HTTPS URL called on event trigger (by using a POST request). Structure of payload depends on the event type, refer to documentation for more details.
- str
- Value of the authorization header that should be sent in the request sent by the wehbook. It should be of the form
<auth type> <credentials>, e.g.Bearer <access_token>. If set to an empty string, no authorization header will be included in the request. - enable_
ssl_ boolverification - Enable/disable SSL certificate validation. Default is
true. For self-signed certificates, this field must befalseAND the destination server must disable certificate validation as well. For security purposes, it is encouraged to perform secret validation with the HMAC-encoded portion of the payload and acknowledge the risk associated with disabling hostname validation whereby it becomes more likely that requests can be maliciously routed to an unintended host. - string str
- url String
- External HTTPS URL called on event trigger (by using a POST request). Structure of payload depends on the event type, refer to documentation for more details.
- String
- Value of the authorization header that should be sent in the request sent by the wehbook. It should be of the form
<auth type> <credentials>, e.g.Bearer <access_token>. If set to an empty string, no authorization header will be included in the request. - enable
Ssl BooleanVerification - Enable/disable SSL certificate validation. Default is
true. For self-signed certificates, this field must befalseAND the destination server must disable certificate validation as well. For security purposes, it is encouraged to perform secret validation with the HMAC-encoded portion of the payload and acknowledge the risk associated with disabling hostname validation whereby it becomes more likely that requests can be maliciously routed to an unintended host. - string String
MlflowWebhookJobSpec, MlflowWebhookJobSpecArgs
- Access
Token string - The personal access token used to authorize webhook's job runs.
- Job
Id string - ID of the Databricks job that the webhook runs.
- Workspace
Url string - URL of the workspace containing the job that this webhook runs. If not specified, the job’s workspace URL is assumed to be the same as the workspace where the webhook is created.
- Access
Token string - The personal access token used to authorize webhook's job runs.
- Job
Id string - ID of the Databricks job that the webhook runs.
- Workspace
Url string - URL of the workspace containing the job that this webhook runs. If not specified, the job’s workspace URL is assumed to be the same as the workspace where the webhook is created.
- access
Token String - The personal access token used to authorize webhook's job runs.
- job
Id String - ID of the Databricks job that the webhook runs.
- workspace
Url String - URL of the workspace containing the job that this webhook runs. If not specified, the job’s workspace URL is assumed to be the same as the workspace where the webhook is created.
- access
Token string - The personal access token used to authorize webhook's job runs.
- job
Id string - ID of the Databricks job that the webhook runs.
- workspace
Url string - URL of the workspace containing the job that this webhook runs. If not specified, the job’s workspace URL is assumed to be the same as the workspace where the webhook is created.
- access_
token str - The personal access token used to authorize webhook's job runs.
- job_
id str - ID of the Databricks job that the webhook runs.
- workspace_
url str - URL of the workspace containing the job that this webhook runs. If not specified, the job’s workspace URL is assumed to be the same as the workspace where the webhook is created.
- access
Token String - The personal access token used to authorize webhook's job runs.
- job
Id String - ID of the Databricks job that the webhook runs.
- workspace
Url String - URL of the workspace containing the job that this webhook runs. If not specified, the job’s workspace URL is assumed to be the same as the workspace where the webhook is created.
Import
-> Note Importing this resource is not currently supported.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Monday, Mar 9, 2026 by Pulumi
