| package startstop |
| |
| import "github.com/gophercloud/gophercloud" |
| |
| func actionURL(client *gophercloud.ServiceClient, id string) string { |
| return client.ServiceURL("servers", id, "action") |
| } |
| |
| // Start is the operation responsible for starting a Compute server. |
| func Start(client *gophercloud.ServiceClient, id string) (r gophercloud.ErrResult) { |
| _, r.Err = client.Post(actionURL(client, id), map[string]interface{}{"os-start": nil}, nil, nil) |
| } |
| |
| // Stop is the operation responsible for stopping a Compute server. |
| func Stop(client *gophercloud.ServiceClient, id string) (r gophercloud.ErrResult) { |
| _, r.Err = client.Post(actionURL(client, id), map[string]interface{}{"os-stop": nil}, nil, nil) |
| } |