Documentation ¶
Overview ¶
Package startstop provides functionality to start and stop servers that have been provisioned by the OpenStack Compute service.
Example to Stop and Start a Server
serverID := "47b6b7b7-568d-40e4-868c-d5c41735532e" err := startstop.Stop(computeClient, serverID).ExtractErr() if err != nil { panic(err) } err := startstop.Start(computeClient, serverID).ExtractErr() if err != nil { panic(err) }
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StartResult ¶
type StartResult struct {
gophercloud.ErrResult
}
StartResult is the response from a Start operation. Call its ExtractErr method to determine if the request succeeded or failed.
func Start ¶
func Start(client *gophercloud.ServiceClient, id string) (r StartResult)
Start is the operation responsible for starting a Compute server.
type StopResult ¶
type StopResult struct {
gophercloud.ErrResult
}
StopResult is the response from Stop operation. Call its ExtractErr method to determine if the request succeeded or failed.
func Stop ¶
func Stop(client *gophercloud.ServiceClient, id string) (r StopResult)
Stop is the operation responsible for stopping a Compute server.
Click to show internal directories.
Click to hide internal directories.