Esempio n. 1
0
File: urls.go Progetto: hdansou/rack
func resourceURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL("subnets", id)
}
Esempio n. 2
0
File: urls.go Progetto: hdansou/rack
func rootURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL("subnets")
}
Esempio n. 3
0
File: urls.go Progetto: hdansou/rack
func listURL(client *gophercloud.ServiceClient) string {
	return client.ServiceURL("flavors", "detail")
}
Esempio n. 4
0
File: urls.go Progetto: hdansou/rack
func rootURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL(rootPath)
}
Esempio n. 5
0
File: urls.go Progetto: hdansou/rack
func metadataURL(client *gophercloud.ServiceClient, id string) string {
	return client.ServiceURL("servers", id, "metadata")
}
Esempio n. 6
0
File: urls.go Progetto: hdansou/rack
func listAddressesURL(client *gophercloud.ServiceClient, id string) string {
	return client.ServiceURL("servers", id, "ips")
}
Esempio n. 7
0
File: urls.go Progetto: hdansou/rack
func getURL(c *gophercloud.ServiceClient, name string) string {
	return c.ServiceURL(resourcePath, name)
}
Esempio n. 8
0
File: urls.go Progetto: hdansou/rack
func deleteURL(client *gophercloud.ServiceClient, id string) string {
	return client.ServiceURL("servers", id)
}
Esempio n. 9
0
File: urls.go Progetto: hdansou/rack
// CreateURL generates the URL used to create new Tokens.
func CreateURL(client *gophercloud.ServiceClient) string {
	return client.ServiceURL("tokens")
}
Esempio n. 10
0
File: urls.go Progetto: hdansou/rack
func createURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL("os-volumes_boot")
}
Esempio n. 11
0
File: urls.go Progetto: hdansou/rack
func deleteURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL("volumes", id)
}
Esempio n. 12
0
func resourceURL(c *gophercloud.ServiceClient, serverId string) string {
	return c.ServiceURL("servers", serverId, resourcePath)
}
Esempio n. 13
0
func getURL(client *gophercloud.ServiceClient, id string) string {
	return client.ServiceURL("flavors", id)
}
Esempio n. 14
0
File: urls.go Progetto: hdansou/rack
func listURL(client *gophercloud.ServiceClient) string {
	return client.ServiceURL("tenants")
}
Esempio n. 15
0
File: urls.go Progetto: hdansou/rack
func resourceURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL(resourcePath)
}
Esempio n. 16
0
File: urls.go Progetto: hdansou/rack
func listDetailURL(client *gophercloud.ServiceClient) string {
	return client.ServiceURL("servers", "detail")
}
Esempio n. 17
0
File: urls.go Progetto: hdansou/rack
func copyURL(c *gophercloud.ServiceClient, container, object string) string {
	return c.ServiceURL(container, object)
}
Esempio n. 18
0
File: urls.go Progetto: hdansou/rack
func actionURL(client *gophercloud.ServiceClient, id string) string {
	return client.ServiceURL("servers", id, "action")
}
Esempio n. 19
0
File: urls.go Progetto: hdansou/rack
func listURL(c *gophercloud.ServiceClient, container string) string {
	return c.ServiceURL(container)
}
Esempio n. 20
0
File: urls.go Progetto: hdansou/rack
func createURL(client *gophercloud.ServiceClient) string {
	return client.ServiceURL("servers")
}
Esempio n. 21
0
File: urls.go Progetto: hdansou/rack
func resourceURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL(rootPath, id)
}
Esempio n. 22
0
File: urls.go Progetto: hdansou/rack
func listAddressesByNetworkURL(client *gophercloud.ServiceClient, id, network string) string {
	return client.ServiceURL("servers", id, "ips", network)
}
Esempio n. 23
0
File: urls.go Progetto: hdansou/rack
func tokenURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL("auth", "tokens")
}