Project

General

Profile

Download (534 Bytes) Statistics
| Branch: | Tag: | Revision:
1c9af75a Ohad Levy
module FogExtensions
module Vsphere
module Server
dc457681 Joseph Mitchell Magen
extend ActiveSupport::Concern
a490a1a4 Ohad Levy
def to_s
name
end

def state
power_state
end

1c9af75a Ohad Levy
def interfaces_attributes=(attrs); end

def volumes_attributes=(attrs); end

40df7dfb Daniel Lobato
def poweroff
stop(:force => true)
end

def reset
reboot(:force => true)
end

c6e02bd3 Joseph Magen
def vm_description
_("%{cpus} CPUs and %{memory} MB memory") % {:cpus => cpus, :memory => memory_mb.to_i}
end

1c9af75a Ohad Levy
end
end
end