34 lines
1.4 KiB
Go
34 lines
1.4 KiB
Go
// Code generated by "mapstructure-to-hcl2 -type AWSPollingConfig"; DO NOT EDIT.
|
|
|
|
package common
|
|
|
|
import (
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
|
"github.com/zclconf/go-cty/cty"
|
|
)
|
|
|
|
// FlatAWSPollingConfig is an auto-generated flat version of AWSPollingConfig.
|
|
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
|
|
type FlatAWSPollingConfig struct {
|
|
MaxAttempts *int `mapstructure:"max_attempts" required:"false" cty:"max_attempts" hcl:"max_attempts"`
|
|
DelaySeconds *int `mapstructure:"delay_seconds" required:"false" cty:"delay_seconds" hcl:"delay_seconds"`
|
|
}
|
|
|
|
// FlatMapstructure returns a new FlatAWSPollingConfig.
|
|
// FlatAWSPollingConfig is an auto-generated flat version of AWSPollingConfig.
|
|
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
|
|
func (*AWSPollingConfig) FlatMapstructure() interface{ HCL2Spec() map[string]hcldec.Spec } {
|
|
return new(FlatAWSPollingConfig)
|
|
}
|
|
|
|
// HCL2Spec returns the hcl spec of a AWSPollingConfig.
|
|
// This spec is used by HCL to read the fields of AWSPollingConfig.
|
|
// The decoded values from this spec will then be applied to a FlatAWSPollingConfig.
|
|
func (*FlatAWSPollingConfig) HCL2Spec() map[string]hcldec.Spec {
|
|
s := map[string]hcldec.Spec{
|
|
"max_attempts": &hcldec.AttrSpec{Name: "max_attempts", Type: cty.Number, Required: false},
|
|
"delay_seconds": &hcldec.AttrSpec{Name: "delay_seconds", Type: cty.Number, Required: false},
|
|
}
|
|
return s
|
|
}
|