packer-cn/provisioner/sleep/provisioner.hcl2spec.go

28 lines
994 B
Go

// Code generated by "mapstructure-to-hcl2 -type Provisioner"; DO NOT EDIT.
package sleep
import (
"github.com/hashicorp/hcl/v2/hcldec"
"github.com/zclconf/go-cty/cty"
)
// FlatProvisioner is an auto-generated flat version of Provisioner.
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type FlatProvisioner struct {
Duration *string `cty:"duration"`
}
// FlatMapstructure returns a new FlatProvisioner.
// FlatProvisioner is an auto-generated flat version of Provisioner.
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
func (*Provisioner) FlatMapstructure() interface{} { return new(FlatProvisioner) }
// HCL2Spec returns the hcldec.Spec of a FlatProvisioner.
// This spec is used by HCL to read the fields of FlatProvisioner.
func (*FlatProvisioner) HCL2Spec() map[string]hcldec.Spec {
s := map[string]hcldec.Spec{
"duration": &hcldec.AttrSpec{Name: "duration", Type: cty.String, Required: false},
}
return s
}