// Code generated by "mapstructure-to-hcl2 -type RemoveCDRomConfig"; DO NOT EDIT. package iso import ( "github.com/hashicorp/hcl/v2/hcldec" "github.com/zclconf/go-cty/cty" ) // FlatRemoveCDRomConfig is an auto-generated flat version of RemoveCDRomConfig. // Where the contents of a field with a `mapstructure:,squash` tag are bubbled up. type FlatRemoveCDRomConfig struct { RemoveCdrom *bool `mapstructure:"remove_cdrom" cty:"remove_cdrom" hcl:"remove_cdrom"` } // FlatMapstructure returns a new FlatRemoveCDRomConfig. // FlatRemoveCDRomConfig is an auto-generated flat version of RemoveCDRomConfig. // Where the contents a fields with a `mapstructure:,squash` tag are bubbled up. func (*RemoveCDRomConfig) FlatMapstructure() interface{ HCL2Spec() map[string]hcldec.Spec } { return new(FlatRemoveCDRomConfig) } // HCL2Spec returns the hcl spec of a RemoveCDRomConfig. // This spec is used by HCL to read the fields of RemoveCDRomConfig. // The decoded values from this spec will then be applied to a FlatRemoveCDRomConfig. func (*FlatRemoveCDRomConfig) HCL2Spec() map[string]hcldec.Spec { s := map[string]hcldec.Spec{ "remove_cdrom": &hcldec.AttrSpec{Name: "remove_cdrom", Type: cty.Bool, Required: false}, } return s }