blob: c17971e0e3dabfb9eba9b665194e231b1ea41fc6 [file] [log] [blame]
package sharenetworks
import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
func createURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("share-networks")
}
func deleteURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("share-networks", id)
}
func listDetailURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("share-networks", "detail")
}
func getURL(c *gophercloud.ServiceClient, id string) string {
return deleteURL(c, id)
}
func updateURL(c *gophercloud.ServiceClient, id string) string {
return deleteURL(c, id)
}