github.com/databricks/cli@v0.203.0/bundle/internal/tf/schema/resource_sql_alert.go (about) 1 // Generated from Databricks Terraform provider schema. DO NOT EDIT. 2 3 package schema 4 5 type ResourceSqlAlertOptions struct { 6 Column string `json:"column"` 7 CustomBody string `json:"custom_body,omitempty"` 8 CustomSubject string `json:"custom_subject,omitempty"` 9 Muted bool `json:"muted,omitempty"` 10 Op string `json:"op"` 11 Value string `json:"value"` 12 } 13 14 type ResourceSqlAlert struct { 15 Id string `json:"id,omitempty"` 16 Name string `json:"name"` 17 Parent string `json:"parent,omitempty"` 18 QueryId string `json:"query_id"` 19 Rearm int `json:"rearm,omitempty"` 20 Options *ResourceSqlAlertOptions `json:"options,omitempty"` 21 }