blob: c17971e0e3dabfb9eba9b665194e231b1ea41fc6 [file] [log] [blame]
ehdou10f1f852016-10-14 20:58:23 +03001package sharenetworks
2
Krzysztof Szukiełojć3f41d082017-05-07 14:43:06 +02003import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
ehdou10f1f852016-10-14 20:58:23 +03004
5func createURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("share-networks")
7}
ehdou53687252016-10-14 22:10:13 +03008
9func deleteURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("share-networks", id)
11}
ehdou07943332016-10-24 21:21:58 +030012
13func listDetailURL(c *gophercloud.ServiceClient) string {
14 return c.ServiceURL("share-networks", "detail")
15}
ehdoua088cec2016-10-25 21:02:05 +030016
17func getURL(c *gophercloud.ServiceClient, id string) string {
18 return deleteURL(c, id)
19}
ehdoufd6d86c2016-11-03 21:35:45 +020020
21func updateURL(c *gophercloud.ServiceClient, id string) string {
22 return deleteURL(c, id)
23}