2019-03-26 08:29:15 -04:00
|
|
|
package yandex
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2019-04-09 10:46:41 -04:00
|
|
|
"github.com/yandex-cloud/go-genproto/yandex/cloud/compute/v1"
|
|
|
|
)
|
2019-03-26 08:29:15 -04:00
|
|
|
|
|
|
|
type Artifact struct {
|
|
|
|
config *Config
|
2019-04-09 10:46:41 -04:00
|
|
|
driver Driver
|
|
|
|
image *compute.Image
|
2019-03-26 08:29:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
//revive:disable:var-naming
|
|
|
|
func (*Artifact) BuilderId() string {
|
|
|
|
return BuilderID
|
|
|
|
}
|
|
|
|
|
2019-04-09 10:46:41 -04:00
|
|
|
func (a *Artifact) Id() string {
|
|
|
|
return a.image.Id
|
2019-03-26 08:29:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (*Artifact) Files() []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-09 10:46:41 -04:00
|
|
|
//revive:enable:var-naming
|
2019-03-26 08:29:15 -04:00
|
|
|
func (a *Artifact) String() string {
|
2019-04-09 10:46:41 -04:00
|
|
|
return fmt.Sprintf("A disk image was created: %v (id: %v) with family name %v", a.image.Name, a.image.Id, a.image.Family)
|
2019-03-26 08:29:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Artifact) State(name string) interface{} {
|
|
|
|
switch name {
|
|
|
|
case "ImageID":
|
2019-04-09 10:46:41 -04:00
|
|
|
return a.image.Id
|
2019-03-26 08:29:15 -04:00
|
|
|
case "FolderID":
|
2019-04-09 10:46:41 -04:00
|
|
|
return a.image.FolderId
|
2019-03-26 08:29:15 -04:00
|
|
|
}
|
|
|
|
return nil
|
2019-04-09 10:46:41 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Artifact) Destroy() error {
|
|
|
|
return a.driver.DeleteImage(a.image.Id)
|
2019-03-26 08:29:15 -04:00
|
|
|
}
|