Documentation
¶
Overview ¶
Code generated by "mapstructure-to-hcl2 -type Config"; DO NOT EDIT.
Index ¶
- Constants
- type Artifact
- type Config
- type FlatConfig
- type PostProcessor
- func (p *PostProcessor) BuildArgs(source, ovftool_uri string) ([]string, error)
- func (p *PostProcessor) ConfigSpec() hcldec.ObjectSpec
- func (p *PostProcessor) Configure(raws ...interface{}) error
- func (p *PostProcessor) PostProcess(ctx context.Context, ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, bool, error)
Constants ¶
View Source
const BuilderId = "packer.post-processor.vsphere"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Artifact ¶ added in v1.2.0
type Artifact struct {
// contains filtered or unexported fields
}
func NewArtifact ¶ added in v1.2.0
type Config ¶
type Config struct {
common.PackerConfig `mapstructure:",squash"`
Cluster string `mapstructure:"cluster"`
Datacenter string `mapstructure:"datacenter"`
Datastore string `mapstructure:"datastore"`
DiskMode string `mapstructure:"disk_mode"`
Host string `mapstructure:"host"`
ESXiHost string `mapstructure:"esxi_host"`
Insecure bool `mapstructure:"insecure"`
Options []string `mapstructure:"options"`
Overwrite bool `mapstructure:"overwrite"`
Password string `mapstructure:"password"`
ResourcePool string `mapstructure:"resource_pool"`
Username string `mapstructure:"username"`
VMFolder string `mapstructure:"vm_folder"`
VMName string `mapstructure:"vm_name"`
VMNetwork string `mapstructure:"vm_network"`
// contains filtered or unexported fields
}
func (*Config) FlatMapstructure ¶ added in v1.4.5
FlatMapstructure returns a new FlatConfig. FlatConfig is an auto-generated flat version of Config. Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.
type FlatConfig ¶ added in v1.4.5
type FlatConfig struct {
PackerBuildName *string `mapstructure:"packer_build_name" cty:"packer_build_name"`
PackerBuilderType *string `mapstructure:"packer_builder_type" cty:"packer_builder_type"`
PackerDebug *bool `mapstructure:"packer_debug" cty:"packer_debug"`
PackerForce *bool `mapstructure:"packer_force" cty:"packer_force"`
PackerOnError *string `mapstructure:"packer_on_error" cty:"packer_on_error"`
PackerUserVars map[string]string `mapstructure:"packer_user_variables" cty:"packer_user_variables"`
PackerSensitiveVars []string `mapstructure:"packer_sensitive_variables" cty:"packer_sensitive_variables"`
Cluster *string `mapstructure:"cluster" cty:"cluster"`
Datacenter *string `mapstructure:"datacenter" cty:"datacenter"`
Datastore *string `mapstructure:"datastore" cty:"datastore"`
DiskMode *string `mapstructure:"disk_mode" cty:"disk_mode"`
Host *string `mapstructure:"host" cty:"host"`
ESXiHost *string `mapstructure:"esxi_host" cty:"esxi_host"`
Insecure *bool `mapstructure:"insecure" cty:"insecure"`
Options []string `mapstructure:"options" cty:"options"`
Overwrite *bool `mapstructure:"overwrite" cty:"overwrite"`
Password *string `mapstructure:"password" cty:"password"`
ResourcePool *string `mapstructure:"resource_pool" cty:"resource_pool"`
Username *string `mapstructure:"username" cty:"username"`
VMFolder *string `mapstructure:"vm_folder" cty:"vm_folder"`
VMName *string `mapstructure:"vm_name" cty:"vm_name"`
VMNetwork *string `mapstructure:"vm_network" cty:"vm_network"`
}
FlatConfig is an auto-generated flat version of Config. Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.
type PostProcessor ¶
type PostProcessor struct {
// contains filtered or unexported fields
}
func (*PostProcessor) BuildArgs ¶ added in v0.11.0
func (p *PostProcessor) BuildArgs(source, ovftool_uri string) ([]string, error)
func (*PostProcessor) ConfigSpec ¶ added in v1.5.0
func (p *PostProcessor) ConfigSpec() hcldec.ObjectSpec
func (*PostProcessor) Configure ¶
func (p *PostProcessor) Configure(raws ...interface{}) error
Click to show internal directories.
Click to hide internal directories.