databricks-cli/bundle/internal/tf/schema/resource_sql_alert.go

25 lines
986 B
Go

// Generated from Databricks Terraform provider schema. DO NOT EDIT.
package schema
type ResourceSqlAlertOptions struct {
Column string `json:"column"`
CustomBody string `json:"custom_body,omitempty"`
CustomSubject string `json:"custom_subject,omitempty"`
EmptyResultState string `json:"empty_result_state,omitempty"`
Muted bool `json:"muted,omitempty"`
Op string `json:"op"`
Value string `json:"value"`
}
type ResourceSqlAlert struct {
CreatedAt string `json:"created_at,omitempty"`
Id string `json:"id,omitempty"`
Name string `json:"name"`
Parent string `json:"parent,omitempty"`
QueryId string `json:"query_id"`
Rearm int `json:"rearm,omitempty"`
UpdatedAt string `json:"updated_at,omitempty"`
Options *ResourceSqlAlertOptions `json:"options,omitempty"`
}