2017-02-13 05:35:14 -05:00
|
|
|
package bmcs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-04-07 06:20:33 -04:00
|
|
|
client "github.com/hashicorp/packer/builder/oracle/bmcs/client"
|
2017-02-13 05:35:14 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Artifact is an artifact implementation that contains a built Custom Image.
|
|
|
|
type Artifact struct {
|
|
|
|
Image client.Image
|
|
|
|
Region string
|
|
|
|
driver Driver
|
|
|
|
}
|
|
|
|
|
|
|
|
// BuilderId uniquely identifies the builder.
|
|
|
|
func (a *Artifact) BuilderId() string {
|
|
|
|
return BuilderId
|
|
|
|
}
|
|
|
|
|
|
|
|
// Files lists the files associated with an artifact. We don't have any files
|
|
|
|
// as the custom image is stored server side.
|
|
|
|
func (a *Artifact) Files() []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Id returns the OCID of the associated Image.
|
|
|
|
func (a *Artifact) Id() string {
|
|
|
|
return a.Image.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Artifact) String() string {
|
|
|
|
return fmt.Sprintf(
|
|
|
|
"An image was created: '%v' (OCID: %v) in region '%v'",
|
|
|
|
a.Image.DisplayName, a.Image.ID, a.Region,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Artifact) State(name string) interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy deletes the custom image associated with the artifact.
|
|
|
|
func (a *Artifact) Destroy() error {
|
|
|
|
return a.driver.DeleteImage(a.Image.ID)
|
|
|
|
}
|