blob: 65778e5434c8f8d96d446cf87097e10d63ba87f7 [file] [log] [blame]
package volumeactions
import (
"github.com/mitchellh/mapstructure"
"github.com/rackspace/gophercloud"
)
type commonResult struct {
gophercloud.Result
}
// AttachResult contains the response body and error from a Get request.
type AttachResult struct {
gophercloud.ErrResult
}
// DetachResult contains the response body and error from a Get request.
type DetachResult struct {
gophercloud.ErrResult
}
// ReserveResult contains the response body and error from a Get request.
type ReserveResult struct {
gophercloud.ErrResult
}
// UnreserveResult contains the response body and error from a Get request.
type UnreserveResult struct {
gophercloud.ErrResult
}
// InitializeConnectionResult contains the response body and error from a Get request.
type InitializeConnectionResult struct {
commonResult
}
// TerminateConnectionResult contains the response body and error from a Get request.
type TerminateConnectionResult struct {
gophercloud.ErrResult
}
// Extract will get the Volume object out of the commonResult object.
func (r commonResult) Extract() (map[string]interface{}, error) {
if r.Err != nil {
return nil, r.Err
}
var res map[string]interface{}
err := mapstructure.Decode(r.Body, &res)
return res, err
}