2019-10-23 13:36:10 -04:00
// Code generated by "mapstructure-to-hcl2 -type AmiFilterOptions,SecurityGroupFilterOptions,SubnetFilterOptions,VpcFilterOptions,PolicyDocument,Statement"; DO NOT EDIT.
2019-10-14 10:43:59 -04:00
package common
import (
"github.com/hashicorp/hcl/v2/hcldec"
2020-03-13 12:17:46 -04:00
"github.com/hashicorp/packer/hcl2template"
2019-10-14 10:43:59 -04:00
"github.com/zclconf/go-cty/cty"
)
// FlatAmiFilterOptions is an auto-generated flat version of AmiFilterOptions.
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type FlatAmiFilterOptions struct {
2020-03-17 06:14:32 -04:00
Filters map [ string ] string ` cty:"filters" `
Filter [ ] hcl2template . FlatNameValue ` cty:"filter" `
Owners [ ] string ` cty:"owners" `
MostRecent * bool ` mapstructure:"most_recent" cty:"most_recent" `
2019-10-14 10:43:59 -04:00
}
// FlatMapstructure returns a new FlatAmiFilterOptions.
// FlatAmiFilterOptions is an auto-generated flat version of AmiFilterOptions.
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
2019-12-17 05:25:56 -05:00
func ( * AmiFilterOptions ) FlatMapstructure ( ) interface { HCL2Spec ( ) map [ string ] hcldec . Spec } {
return new ( FlatAmiFilterOptions )
}
2019-10-14 10:43:59 -04:00
2019-12-17 05:25:56 -05:00
// HCL2Spec returns the hcl spec of a AmiFilterOptions.
// This spec is used by HCL to read the fields of AmiFilterOptions.
// The decoded values from this spec will then be applied to a FlatAmiFilterOptions.
2019-10-14 10:43:59 -04:00
func ( * FlatAmiFilterOptions ) HCL2Spec ( ) map [ string ] hcldec . Spec {
s := map [ string ] hcldec . Spec {
"filters" : & hcldec . BlockAttrsSpec { TypeName : "filters" , ElementType : cty . String , Required : false } ,
2020-03-17 06:14:32 -04:00
"filter" : & hcldec . BlockListSpec { TypeName : "filter" , Nested : hcldec . ObjectSpec ( ( * hcl2template . FlatNameValue ) ( nil ) . HCL2Spec ( ) ) } ,
2019-10-14 10:43:59 -04:00
"owners" : & hcldec . AttrSpec { Name : "owners" , Type : cty . List ( cty . String ) , Required : false } ,
"most_recent" : & hcldec . AttrSpec { Name : "most_recent" , Type : cty . Bool , Required : false } ,
}
return s
}
2019-10-23 12:48:52 -04:00
// FlatPolicyDocument is an auto-generated flat version of PolicyDocument.
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type FlatPolicyDocument struct {
2019-10-23 13:36:10 -04:00
Version * string ` cty:"version" `
Statement [ ] FlatStatement ` cty:"statement" `
2019-10-23 12:48:52 -04:00
}
// FlatMapstructure returns a new FlatPolicyDocument.
// FlatPolicyDocument is an auto-generated flat version of PolicyDocument.
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
2019-12-17 05:25:56 -05:00
func ( * PolicyDocument ) FlatMapstructure ( ) interface { HCL2Spec ( ) map [ string ] hcldec . Spec } {
return new ( FlatPolicyDocument )
}
2019-10-23 12:48:52 -04:00
2019-12-17 05:25:56 -05:00
// HCL2Spec returns the hcl spec of a PolicyDocument.
// This spec is used by HCL to read the fields of PolicyDocument.
// The decoded values from this spec will then be applied to a FlatPolicyDocument.
2019-10-23 12:48:52 -04:00
func ( * FlatPolicyDocument ) HCL2Spec ( ) map [ string ] hcldec . Spec {
s := map [ string ] hcldec . Spec {
2019-10-23 13:36:10 -04:00
"version" : & hcldec . AttrSpec { Name : "version" , Type : cty . String , Required : false } ,
2019-12-17 05:25:56 -05:00
"statement" : & hcldec . BlockListSpec { TypeName : "statement" , Nested : hcldec . ObjectSpec ( ( * FlatStatement ) ( nil ) . HCL2Spec ( ) ) } ,
2019-10-23 12:48:52 -04:00
}
return s
}
2019-10-14 10:43:59 -04:00
// FlatSecurityGroupFilterOptions is an auto-generated flat version of SecurityGroupFilterOptions.
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type FlatSecurityGroupFilterOptions struct {
2020-03-17 06:14:32 -04:00
Filters map [ string ] string ` cty:"filters" `
Filter [ ] hcl2template . FlatNameValue ` cty:"filter" `
2019-10-14 10:43:59 -04:00
}
// FlatMapstructure returns a new FlatSecurityGroupFilterOptions.
// FlatSecurityGroupFilterOptions is an auto-generated flat version of SecurityGroupFilterOptions.
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
2019-12-17 05:25:56 -05:00
func ( * SecurityGroupFilterOptions ) FlatMapstructure ( ) interface { HCL2Spec ( ) map [ string ] hcldec . Spec } {
2019-10-14 10:43:59 -04:00
return new ( FlatSecurityGroupFilterOptions )
}
2019-12-17 05:25:56 -05:00
// HCL2Spec returns the hcl spec of a SecurityGroupFilterOptions.
// This spec is used by HCL to read the fields of SecurityGroupFilterOptions.
// The decoded values from this spec will then be applied to a FlatSecurityGroupFilterOptions.
2019-10-14 10:43:59 -04:00
func ( * FlatSecurityGroupFilterOptions ) HCL2Spec ( ) map [ string ] hcldec . Spec {
s := map [ string ] hcldec . Spec {
"filters" : & hcldec . BlockAttrsSpec { TypeName : "filters" , ElementType : cty . String , Required : false } ,
2020-03-17 06:14:32 -04:00
"filter" : & hcldec . BlockListSpec { TypeName : "filter" , Nested : hcldec . ObjectSpec ( ( * hcl2template . FlatNameValue ) ( nil ) . HCL2Spec ( ) ) } ,
2019-10-14 10:43:59 -04:00
}
return s
}
2019-10-23 13:36:10 -04:00
// FlatStatement is an auto-generated flat version of Statement.
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type FlatStatement struct {
Effect * string ` cty:"effect" `
Action [ ] string ` cty:"action" `
Resource * string ` cty:"resource" `
}
// FlatMapstructure returns a new FlatStatement.
// FlatStatement is an auto-generated flat version of Statement.
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
2019-12-17 05:25:56 -05:00
func ( * Statement ) FlatMapstructure ( ) interface { HCL2Spec ( ) map [ string ] hcldec . Spec } {
return new ( FlatStatement )
}
2019-10-23 13:36:10 -04:00
2019-12-17 05:25:56 -05:00
// HCL2Spec returns the hcl spec of a Statement.
// This spec is used by HCL to read the fields of Statement.
// The decoded values from this spec will then be applied to a FlatStatement.
2019-10-23 13:36:10 -04:00
func ( * FlatStatement ) HCL2Spec ( ) map [ string ] hcldec . Spec {
s := map [ string ] hcldec . Spec {
"effect" : & hcldec . AttrSpec { Name : "effect" , Type : cty . String , Required : false } ,
"action" : & hcldec . AttrSpec { Name : "action" , Type : cty . List ( cty . String ) , Required : false } ,
"resource" : & hcldec . AttrSpec { Name : "resource" , Type : cty . String , Required : false } ,
}
return s
}
2019-10-14 10:43:59 -04:00
// FlatSubnetFilterOptions is an auto-generated flat version of SubnetFilterOptions.
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type FlatSubnetFilterOptions struct {
2020-03-17 06:14:32 -04:00
Filters map [ string ] string ` cty:"filters" `
Filter [ ] hcl2template . FlatNameValue ` cty:"filter" `
MostFree * bool ` mapstructure:"most_free" cty:"most_free" `
Random * bool ` mapstructure:"random" cty:"random" `
2019-10-14 10:43:59 -04:00
}
// FlatMapstructure returns a new FlatSubnetFilterOptions.
// FlatSubnetFilterOptions is an auto-generated flat version of SubnetFilterOptions.
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
2019-12-17 05:25:56 -05:00
func ( * SubnetFilterOptions ) FlatMapstructure ( ) interface { HCL2Spec ( ) map [ string ] hcldec . Spec } {
return new ( FlatSubnetFilterOptions )
}
2019-10-14 10:43:59 -04:00
2019-12-17 05:25:56 -05:00
// HCL2Spec returns the hcl spec of a SubnetFilterOptions.
// This spec is used by HCL to read the fields of SubnetFilterOptions.
// The decoded values from this spec will then be applied to a FlatSubnetFilterOptions.
2019-10-14 10:43:59 -04:00
func ( * FlatSubnetFilterOptions ) HCL2Spec ( ) map [ string ] hcldec . Spec {
s := map [ string ] hcldec . Spec {
"filters" : & hcldec . BlockAttrsSpec { TypeName : "filters" , ElementType : cty . String , Required : false } ,
2020-03-17 06:14:32 -04:00
"filter" : & hcldec . BlockListSpec { TypeName : "filter" , Nested : hcldec . ObjectSpec ( ( * hcl2template . FlatNameValue ) ( nil ) . HCL2Spec ( ) ) } ,
2019-10-14 10:43:59 -04:00
"most_free" : & hcldec . AttrSpec { Name : "most_free" , Type : cty . Bool , Required : false } ,
"random" : & hcldec . AttrSpec { Name : "random" , Type : cty . Bool , Required : false } ,
}
return s
}
// FlatVpcFilterOptions is an auto-generated flat version of VpcFilterOptions.
// Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type FlatVpcFilterOptions struct {
2020-03-17 06:14:32 -04:00
Filters map [ string ] string ` cty:"filters" `
Filter [ ] hcl2template . FlatNameValue ` cty:"filter" `
2019-10-14 10:43:59 -04:00
}
// FlatMapstructure returns a new FlatVpcFilterOptions.
// FlatVpcFilterOptions is an auto-generated flat version of VpcFilterOptions.
// Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
2019-12-17 05:25:56 -05:00
func ( * VpcFilterOptions ) FlatMapstructure ( ) interface { HCL2Spec ( ) map [ string ] hcldec . Spec } {
return new ( FlatVpcFilterOptions )
}
2019-10-14 10:43:59 -04:00
2019-12-17 05:25:56 -05:00
// HCL2Spec returns the hcl spec of a VpcFilterOptions.
// This spec is used by HCL to read the fields of VpcFilterOptions.
// The decoded values from this spec will then be applied to a FlatVpcFilterOptions.
2019-10-14 10:43:59 -04:00
func ( * FlatVpcFilterOptions ) HCL2Spec ( ) map [ string ] hcldec . Spec {
s := map [ string ] hcldec . Spec {
"filters" : & hcldec . BlockAttrsSpec { TypeName : "filters" , ElementType : cty . String , Required : false } ,
2020-03-17 06:14:32 -04:00
"filter" : & hcldec . BlockListSpec { TypeName : "filter" , Nested : hcldec . ObjectSpec ( ( * hcl2template . FlatNameValue ) ( nil ) . HCL2Spec ( ) ) } ,
2019-10-14 10:43:59 -04:00
}
return s
}