1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
package qos
import "github.com/gophercloud/gophercloud"
func getURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("qos-specs", id)
}
func createURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("qos-specs")
}
func listURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("qos-specs")
}
func deleteURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("qos-specs", id)
}
func updateURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("qos-specs", id)
}
func deleteKeysURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("qos-specs", id, "delete_keys")
}
func associateURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("qos-specs", id, "associate")
}
func disassociateURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("qos-specs", id, "disassociate")
}
func disassociateAllURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("qos-specs", id, "disassociate_all")
}
func listAssociationsURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("qos-specs", id, "associations")
}
|