38 lines
600 B
Go
38 lines
600 B
Go
package googlecomputeexport
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
const BuilderId = "packer.post-processor.googlecompute-export"
|
|
|
|
type Artifact struct {
|
|
paths []string
|
|
}
|
|
|
|
func (*Artifact) BuilderId() string {
|
|
return BuilderId
|
|
}
|
|
|
|
func (*Artifact) Id() string {
|
|
return ""
|
|
}
|
|
|
|
func (a *Artifact) Files() []string {
|
|
pathsCopy := make([]string, len(a.paths))
|
|
copy(pathsCopy, a.paths)
|
|
return pathsCopy
|
|
}
|
|
|
|
func (a *Artifact) String() string {
|
|
return fmt.Sprintf("Exported artifacts in: %s", a.paths)
|
|
}
|
|
|
|
func (*Artifact) State(name string) interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (a *Artifact) Destroy() error {
|
|
return nil
|
|
}
|