github.com/databricks/cli@v0.203.0/bundle/internal/tf/schema/resource_mlflow_webhook.go (about)

     1  // Generated from Databricks Terraform provider schema. DO NOT EDIT.
     2  
     3  package schema
     4  
     5  type ResourceMlflowWebhookHttpUrlSpec struct {
     6  	Authorization         string `json:"authorization,omitempty"`
     7  	EnableSslVerification bool   `json:"enable_ssl_verification,omitempty"`
     8  	Secret                string `json:"secret,omitempty"`
     9  	Url                   string `json:"url"`
    10  }
    11  
    12  type ResourceMlflowWebhookJobSpec struct {
    13  	AccessToken  string `json:"access_token"`
    14  	JobId        string `json:"job_id"`
    15  	WorkspaceUrl string `json:"workspace_url,omitempty"`
    16  }
    17  
    18  type ResourceMlflowWebhook struct {
    19  	Description string                            `json:"description,omitempty"`
    20  	Events      []string                          `json:"events"`
    21  	Id          string                            `json:"id,omitempty"`
    22  	ModelName   string                            `json:"model_name,omitempty"`
    23  	Status      string                            `json:"status,omitempty"`
    24  	HttpUrlSpec *ResourceMlflowWebhookHttpUrlSpec `json:"http_url_spec,omitempty"`
    25  	JobSpec     *ResourceMlflowWebhookJobSpec     `json:"job_spec,omitempty"`
    26  }