예제 #1
0
func (this *OpenStack) VmStop(vm *lobster.VirtualMachine) error {
	return startstop.Stop(this.ComputeClient, vm.Identification).ExtractErr()
}
예제 #2
0
파일: openstack.go 프로젝트: LunaNode/cloug
func (os *OpenStack) StopInstance(instanceID string) error {
	return startstop.Stop(os.ComputeClient, instanceID).ExtractErr()
}