blob: 4ad00598c7243f38d7c049e3ec66a062c5ca62fc [file] [log] [blame]
package datastores
import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
func baseURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("datastores")
}
func resourceURL(c *gophercloud.ServiceClient, dsID string) string {
return c.ServiceURL("datastores", dsID)
}
func versionsURL(c *gophercloud.ServiceClient, dsID string) string {
return c.ServiceURL("datastores", dsID, "versions")
}
func versionURL(c *gophercloud.ServiceClient, dsID, versionID string) string {
return c.ServiceURL("datastores", dsID, "versions", versionID)
}