2022-12-06 15:26:19 +00:00
|
|
|
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
|
|
|
|
|
|
|
|
package schema
|
|
|
|
|
|
|
|
type DataSources struct {
|
|
|
|
{{- range .Blocks }}
|
2024-02-16 12:46:24 +00:00
|
|
|
{{ .FieldName }} map[string]any `json:"{{ .TerraformName }},omitempty"`
|
2022-12-06 15:26:19 +00:00
|
|
|
{{- end }}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewDataSources() *DataSources {
|
|
|
|
return &DataSources{
|
|
|
|
{{- range .Blocks }}
|
2024-02-16 12:46:24 +00:00
|
|
|
{{ .FieldName }}: make(map[string]any),
|
2022-12-06 15:26:19 +00:00
|
|
|
{{- end }}
|
|
|
|
}
|
|
|
|
}
|