| Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 1 | package servers | 
|  | 2 |  | 
|  | 3 | import "github.com/rackspace/gophercloud" | 
|  | 4 |  | 
| Jon Perritt | 703bfc0 | 2014-10-08 14:35:00 -0500 | [diff] [blame] | 5 | func createURL(client *gophercloud.ServiceClient) string { | 
| Ash Wilson | dc7daa8 | 2014-09-23 16:34:42 -0400 | [diff] [blame] | 6 | return client.ServiceURL("servers") | 
| Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 7 | } | 
|  | 8 |  | 
| Jon Perritt | 703bfc0 | 2014-10-08 14:35:00 -0500 | [diff] [blame] | 9 | func listURL(client *gophercloud.ServiceClient) string { | 
|  | 10 | return createURL(client) | 
|  | 11 | } | 
|  | 12 |  | 
|  | 13 | func listDetailURL(client *gophercloud.ServiceClient) string { | 
| Ash Wilson | dc7daa8 | 2014-09-23 16:34:42 -0400 | [diff] [blame] | 14 | return client.ServiceURL("servers", "detail") | 
| Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 15 | } | 
|  | 16 |  | 
| Jon Perritt | 703bfc0 | 2014-10-08 14:35:00 -0500 | [diff] [blame] | 17 | func deleteURL(client *gophercloud.ServiceClient, id string) string { | 
| Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 18 | return client.ServiceURL("servers", id) | 
|  | 19 | } | 
|  | 20 |  | 
| Jon Perritt | 703bfc0 | 2014-10-08 14:35:00 -0500 | [diff] [blame] | 21 | func getURL(client *gophercloud.ServiceClient, id string) string { | 
|  | 22 | return deleteURL(client, id) | 
|  | 23 | } | 
|  | 24 |  | 
|  | 25 | func updateURL(client *gophercloud.ServiceClient, id string) string { | 
|  | 26 | return deleteURL(client, id) | 
|  | 27 | } | 
|  | 28 |  | 
| Ash Wilson | 31f6bde | 2014-09-25 14:52:12 -0400 | [diff] [blame] | 29 | func actionURL(client *gophercloud.ServiceClient, id string) string { | 
| Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 30 | return client.ServiceURL("servers", id, "action") | 
|  | 31 | } | 
| Jon Perritt | cc77da6 | 2014-11-16 13:14:21 -0700 | [diff] [blame^] | 32 |  | 
|  | 33 | func metadataURL(client *gophercloud.ServiceClient, id, key string) string { | 
|  | 34 | return client.ServiceURL("servers", id, "metadata", key) | 
|  | 35 | } | 
|  | 36 |  | 
|  | 37 | func metadatasURL(client *gophercloud.ServiceClient, id string) string { | 
|  | 38 | return client.ServiceURL("servers", id, "metadata") | 
|  | 39 | } |