github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/storage/plans/common/interface.go (about)

     1  // Copyright 2018 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package common
     5  
     6  import (
     7  	"github.com/juju/juju/storage"
     8  )
     9  
    10  type Plan interface {
    11  	AttachVolume(volumeInfo map[string]string) (storage.BlockDevice, error)
    12  	DetachVolume(volumeInfo map[string]string) error
    13  }