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
|
package nodegroups
import (
"github.com/gophercloud/gophercloud"
)
func getURL(c *gophercloud.ServiceClient, clusterID, nodeGroupID string) string {
return c.ServiceURL("clusters", clusterID, "nodegroups", nodeGroupID)
}
func listURL(c *gophercloud.ServiceClient, clusterID string) string {
return c.ServiceURL("clusters", clusterID, "nodegroups")
}
func createURL(c *gophercloud.ServiceClient, clusterID string) string {
return c.ServiceURL("clusters", clusterID, "nodegroups")
}
func updateURL(c *gophercloud.ServiceClient, clusterID, nodeGroupID string) string {
return c.ServiceURL("clusters", clusterID, "nodegroups", nodeGroupID)
}
func deleteURL(c *gophercloud.ServiceClient, clusterID, nodeGroupID string) string {
return c.ServiceURL("clusters", clusterID, "nodegroups", nodeGroupID)
}
|