mirror of https://github.com/databricks/cli.git
12 lines
237 B
Cheetah
12 lines
237 B
Cheetah
|
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
|
||
|
|
||
|
package schema
|
||
|
|
||
|
{{ range .StructTypes }}
|
||
|
type {{ .Name }} struct {
|
||
|
{{- range .Fields }}
|
||
|
{{ .Name }} {{ .Type }} `json:"{{ .Tag }}"`
|
||
|
{{- end }}
|
||
|
}
|
||
|
{{ end }}
|