mirror of https://github.com/databricks/cli.git
18 lines
374 B
Cheetah
18 lines
374 B
Cheetah
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
|
|
|
|
package schema
|
|
|
|
type Resources struct {
|
|
{{- range .Blocks }}
|
|
{{ .FieldName }} map[string]any `json:"{{ .TerraformName }},omitempty"`
|
|
{{- end }}
|
|
}
|
|
|
|
func NewResources() *Resources {
|
|
return &Resources{
|
|
{{- range .Blocks }}
|
|
{{ .FieldName }}: make(map[string]any),
|
|
{{- end }}
|
|
}
|
|
}
|