github.com/gophercloud/gophercloud@v1.11.0/openstack/compute/v2/extensions/bootfromvolume/results.go (about)

     1  package bootfromvolume
     2  
     3  import (
     4  	os "github.com/gophercloud/gophercloud/openstack/compute/v2/servers"
     5  )
     6  
     7  // CreateResult temporarily contains the response from a Create call.
     8  // It embeds the standard servers.CreateResults type and so can be used the
     9  // same way as a standard server request result.
    10  type CreateResult struct {
    11  	os.CreateResult
    12  }