File: urls.go

package info (click to toggle)
golang-github-gophercloud-gophercloud 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,416 kB
  • sloc: sh: 99; makefile: 21
file content (43 lines) | stat: -rw-r--r-- 1,264 bytes parent folder | download
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")
}