blob: cce1af88f9be5b3cd7bc104d28e6cda68719a3d7 [file] [log] [blame]
package instances
import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
func baseURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("instances")
}
func resourceURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("instances", id)
}
func userRootURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("instances", id, "root")
}
func actionURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("instances", id, "action")
}