// Code generated by "packer-sdc mapstructure-to-hcl2"; DO NOT EDIT. package parrot import ( "github.com/hashicorp/hcl/v2/hcldec" "github.com/zclconf/go-cty/cty" ) // FlatConfig is an auto-generated flat version of Config. // Where the contents of a field with a `mapstructure:,squash` tag are bubbled up. type FlatConfig struct { Input []string `mapstructure:"input" required:"true" cty:"input" hcl:"input"` } // FlatMapstructure returns a new FlatConfig. // FlatConfig is an auto-generated flat version of Config. // Where the contents a fields with a `mapstructure:,squash` tag are bubbled up. func (*Config) FlatMapstructure() interface{ HCL2Spec() map[string]hcldec.Spec } { return new(FlatConfig) } // HCL2Spec returns the hcl spec of a Config. // This spec is used by HCL to read the fields of Config. // The decoded values from this spec will then be applied to a FlatConfig. func (*FlatConfig) HCL2Spec() map[string]hcldec.Spec { s := map[string]hcldec.Spec{ "input": &hcldec.AttrSpec{Name: "input", Type: cty.List(cty.String), Required: false}, } return s } // FlatDatasourceOutput is an auto-generated flat version of DatasourceOutput. // Where the contents of a field with a `mapstructure:,squash` tag are bubbled up. type FlatDatasourceOutput struct { Output []string `mapstructure:"out" cty:"out" hcl:"out"` } // FlatMapstructure returns a new FlatDatasourceOutput. // FlatDatasourceOutput is an auto-generated flat version of DatasourceOutput. // Where the contents a fields with a `mapstructure:,squash` tag are bubbled up. func (*DatasourceOutput) FlatMapstructure() interface{ HCL2Spec() map[string]hcldec.Spec } { return new(FlatDatasourceOutput) } // HCL2Spec returns the hcl spec of a DatasourceOutput. // This spec is used by HCL to read the fields of DatasourceOutput. // The decoded values from this spec will then be applied to a FlatDatasourceOutput. func (*FlatDatasourceOutput) HCL2Spec() map[string]hcldec.Spec { s := map[string]hcldec.Spec{ "out": &hcldec.AttrSpec{Name: "out", Type: cty.List(cty.String), Required: false}, } return s }