Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
6769c3b3e54a5cf1b0bdb10ea5b25f5cff0a3134
/
.
/
rackspace
/
lb
/
v1
/
throttle
/
urls.go
blob: b77f0ac1c79a1cddb2f1629a47bfe9cefdb176f4 [
file
] [
log
] [
blame
]
package throttle
import (
"strconv"
"github.com/rackspace/gophercloud"
)
const (
path = "loadbalancers"
ctPath = "connectionthrottle"
)
func rootURL(c *gophercloud.ServiceClient, id int) string {
return c.ServiceURL(path, strconv.Itoa(id), ctPath)
}