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 {
HCL2: generate hcl tags with go-cty tags too (#9306)
This will allow to generate the config files:
```go
package main
import (
"fmt"
"github.com/hashicorp/hcl/v2/gohcl"
"github.com/hashicorp/hcl/v2/hclwrite"
"github.com/hashicorp/packer/builder/alicloud/ecs"
)
func main() {
name := "name"
app := ecs.FlatConfig{
AlicloudImageName: &name,
ECSSystemDiskMapping: &ecs.FlatAlicloudDiskDevice{
DiskName: &name,
},
}
f := hclwrite.NewEmptyFile()
block := gohcl.EncodeAsBlock(&app, `source "something" "something"`)
f.Body().AppendBlock(block)
fmt.Printf("%s", f.Bytes())
}
```
Will output:
```
source "something" "something" {
packer_user_variables = null
packer_sensitive_variables = null
image_name = "name"
image_share_account = null
image_unshare_account = null
image_copy_regions = null
image_copy_names = null
tags = null
tag = null
system_disk_mapping = { disk_category = null, disk_delete_with_instance = null, disk_descri
ption = null, disk_device = null, disk_encrypted = null, disk_name = "name", disk_size = null, disk_
snapshot_id = null }
image_disk_mappings = null
ssh_remote_tunnels = null
ssh_local_tunnels = null
ssh_public_key = null
ssh_private_key = null
}
```
This is a good first step for #9015 and #9282
fix #9304
2020-05-28 05:19:00 -04:00
Filters map [ string ] string ` cty:"filters" hcl:"filters" `
Filter [ ] hcl2template . FlatKeyValue ` cty:"filter" hcl:"filter" `
Owners [ ] string ` cty:"owners" hcl:"owners" `
MostRecent * bool ` mapstructure:"most_recent" cty:"most_recent" hcl:"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 {
2020-04-14 10:05:13 -04:00
"filters" : & hcldec . AttrSpec { Name : "filters" , Type : cty . Map ( cty . String ) , Required : false } ,
2020-04-16 09:37:22 -04:00
"filter" : & hcldec . BlockListSpec { TypeName : "filter" , Nested : hcldec . ObjectSpec ( ( * hcl2template . FlatKeyValue ) ( 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 {
2020-08-25 04:53:56 -04:00
Version * string ` mapstructure:"Version" required:"false" cty:"Version" hcl:"Version" `
Statement [ ] FlatStatement ` mapstructure:"Statement" required:"false" cty:"Statement" hcl:"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 {
2020-08-25 04:53:56 -04:00
"Version" : & hcldec . AttrSpec { Name : "Version" , Type : cty . String , Required : false } ,
"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 {
HCL2: generate hcl tags with go-cty tags too (#9306)
This will allow to generate the config files:
```go
package main
import (
"fmt"
"github.com/hashicorp/hcl/v2/gohcl"
"github.com/hashicorp/hcl/v2/hclwrite"
"github.com/hashicorp/packer/builder/alicloud/ecs"
)
func main() {
name := "name"
app := ecs.FlatConfig{
AlicloudImageName: &name,
ECSSystemDiskMapping: &ecs.FlatAlicloudDiskDevice{
DiskName: &name,
},
}
f := hclwrite.NewEmptyFile()
block := gohcl.EncodeAsBlock(&app, `source "something" "something"`)
f.Body().AppendBlock(block)
fmt.Printf("%s", f.Bytes())
}
```
Will output:
```
source "something" "something" {
packer_user_variables = null
packer_sensitive_variables = null
image_name = "name"
image_share_account = null
image_unshare_account = null
image_copy_regions = null
image_copy_names = null
tags = null
tag = null
system_disk_mapping = { disk_category = null, disk_delete_with_instance = null, disk_descri
ption = null, disk_device = null, disk_encrypted = null, disk_name = "name", disk_size = null, disk_
snapshot_id = null }
image_disk_mappings = null
ssh_remote_tunnels = null
ssh_local_tunnels = null
ssh_public_key = null
ssh_private_key = null
}
```
This is a good first step for #9015 and #9282
fix #9304
2020-05-28 05:19:00 -04:00
Filters map [ string ] string ` cty:"filters" hcl:"filters" `
Filter [ ] hcl2template . FlatNameValue ` cty:"filter" hcl:"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 {
2020-04-14 10:05:13 -04:00
"filters" : & hcldec . AttrSpec { Name : "filters" , Type : cty . Map ( 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 {
2020-08-25 04:53:56 -04:00
Effect * string ` mapstructure:"Effect" required:"false" cty:"Effect" hcl:"Effect" `
Action [ ] string ` mapstructure:"Action" required:"false" cty:"Action" hcl:"Action" `
Resource [ ] string ` mapstructure:"Resource" required:"false" cty:"Resource" hcl:"Resource" `
2019-10-23 13:36:10 -04:00
}
// 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 {
2020-08-25 04:53:56 -04:00
"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 . List ( cty . String ) , Required : false } ,
2019-10-23 13:36:10 -04:00
}
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 {
HCL2: generate hcl tags with go-cty tags too (#9306)
This will allow to generate the config files:
```go
package main
import (
"fmt"
"github.com/hashicorp/hcl/v2/gohcl"
"github.com/hashicorp/hcl/v2/hclwrite"
"github.com/hashicorp/packer/builder/alicloud/ecs"
)
func main() {
name := "name"
app := ecs.FlatConfig{
AlicloudImageName: &name,
ECSSystemDiskMapping: &ecs.FlatAlicloudDiskDevice{
DiskName: &name,
},
}
f := hclwrite.NewEmptyFile()
block := gohcl.EncodeAsBlock(&app, `source "something" "something"`)
f.Body().AppendBlock(block)
fmt.Printf("%s", f.Bytes())
}
```
Will output:
```
source "something" "something" {
packer_user_variables = null
packer_sensitive_variables = null
image_name = "name"
image_share_account = null
image_unshare_account = null
image_copy_regions = null
image_copy_names = null
tags = null
tag = null
system_disk_mapping = { disk_category = null, disk_delete_with_instance = null, disk_descri
ption = null, disk_device = null, disk_encrypted = null, disk_name = "name", disk_size = null, disk_
snapshot_id = null }
image_disk_mappings = null
ssh_remote_tunnels = null
ssh_local_tunnels = null
ssh_public_key = null
ssh_private_key = null
}
```
This is a good first step for #9015 and #9282
fix #9304
2020-05-28 05:19:00 -04:00
Filters map [ string ] string ` cty:"filters" hcl:"filters" `
Filter [ ] hcl2template . FlatNameValue ` cty:"filter" hcl:"filter" `
MostFree * bool ` mapstructure:"most_free" cty:"most_free" hcl:"most_free" `
Random * bool ` mapstructure:"random" cty:"random" hcl:"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 {
2020-04-14 10:05:13 -04:00
"filters" : & hcldec . AttrSpec { Name : "filters" , Type : cty . Map ( 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 {
HCL2: generate hcl tags with go-cty tags too (#9306)
This will allow to generate the config files:
```go
package main
import (
"fmt"
"github.com/hashicorp/hcl/v2/gohcl"
"github.com/hashicorp/hcl/v2/hclwrite"
"github.com/hashicorp/packer/builder/alicloud/ecs"
)
func main() {
name := "name"
app := ecs.FlatConfig{
AlicloudImageName: &name,
ECSSystemDiskMapping: &ecs.FlatAlicloudDiskDevice{
DiskName: &name,
},
}
f := hclwrite.NewEmptyFile()
block := gohcl.EncodeAsBlock(&app, `source "something" "something"`)
f.Body().AppendBlock(block)
fmt.Printf("%s", f.Bytes())
}
```
Will output:
```
source "something" "something" {
packer_user_variables = null
packer_sensitive_variables = null
image_name = "name"
image_share_account = null
image_unshare_account = null
image_copy_regions = null
image_copy_names = null
tags = null
tag = null
system_disk_mapping = { disk_category = null, disk_delete_with_instance = null, disk_descri
ption = null, disk_device = null, disk_encrypted = null, disk_name = "name", disk_size = null, disk_
snapshot_id = null }
image_disk_mappings = null
ssh_remote_tunnels = null
ssh_local_tunnels = null
ssh_public_key = null
ssh_private_key = null
}
```
This is a good first step for #9015 and #9282
fix #9304
2020-05-28 05:19:00 -04:00
Filters map [ string ] string ` cty:"filters" hcl:"filters" `
Filter [ ] hcl2template . FlatNameValue ` cty:"filter" hcl:"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 {
2020-04-14 10:05:13 -04:00
"filters" : & hcldec . AttrSpec { Name : "filters" , Type : cty . Map ( 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
}