class Fog::Compute::Ovirt::Server

Public Instance Methods

add_interface(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 59
def add_interface attrs
  wait_for { stopped? } if attrs[:blocking]
  service.add_interface(id, attrs)
end
add_to_affinity_group(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 106
def add_to_affinity_group(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.add_to_affinity_group(id, attrs)
end
add_volume(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 81
def add_volume attrs
  wait_for { stopped? } if attrs[:blocking]
  service.add_volume(id, attrs)
end
attach_volume(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 96
def attach_volume(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.attach_volume(id, attrs)
end
destroy(options = {}) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 144
def destroy(options = {})
  (stop unless stopped?) rescue nil #ignore failure, destroy the machine anyway.
  wait_for { stopped? }
  service.destroy_vm(:id => id)
end
destroy_interface(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 69
def destroy_interface attrs
  wait_for { stopped? } if attrs[:blocking]
  service.destroy_interface(id, attrs)
end
destroy_volume(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 86
def destroy_volume attrs
  wait_for { stopped? } if attrs[:blocking]
  service.destroy_volume(id, attrs)
end
detach_volume(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 101
def detach_volume(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.detach_volume(id, attrs)
end
interfaces() click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 52
def interfaces
  @interfaces ||= id.nil? ? [] : Fog::Compute::Ovirt::Interfaces.new(
      :service => service,
      :vm => self
  )
end
locked?() click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 39
def locked?
  @volumes = nil # force reload volumes
  !!(status =~ /locked/) || (attributes[:volumes]=nil) || volumes.any?{|v| !!(v.status =~ /locked/)}
end
mac() click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 48
def mac
  interfaces.first.mac unless interfaces.empty?
end
ready?() click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 35
def ready?
  !(status =~ /down/)
end
reboot(options = {}) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 134
def reboot(options = {})
  stop unless stopped?
  start options.merge(:blocking => true)
end
remove_from_affinity_group(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 111
def remove_from_affinity_group(attrs)
  wait_for { stopped? } if attrs[:blocking]
  service.remove_from_affinity_group(id, attrs)
end
save() click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 155
def save
  if persisted?
    service.update_vm(attributes)
  else
    self.id = service.create_vm(attributes).id
  end
  reload
end
start(options = {}) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 116
def start(options = {})
  wait_for { !locked? } if options[:blocking]
  service.vm_action(:id =>id, :action => :start)
  reload
end
start_with_cloudinit(options = {}) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 122
def start_with_cloudinit(options = {})
  wait_for { !locked? } if options[:blocking]
  user_data = Hash[YAML.load(options[:user_data]).map{|a| [a.first.to_sym, a.last]}]
  service.vm_start_with_cloudinit(:id =>id, :user_data =>user_data)
  reload
end
stop(options = {}) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 129
def stop(options = {})
  service.vm_action(:id =>id, :action => :stop)
  reload
end
stopped?() click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 44
def stopped?
  !!(status =~ /down/)
end
suspend(options = {}) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 139
def suspend(options = {})
  service.vm_action(:id =>id, :action => :suspend)
  reload
end
ticket(options = {}) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 150
def ticket(options = {})
  raise "Can not set console ticket, Server is not ready. Server status: #{status}" unless ready?
  service.vm_ticket(id, options)
end
to_s() click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 164
def to_s
  name
end
update_interface(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 64
def update_interface attrs
  wait_for { stopped? } if attrs[:blocking]
  service.update_interface(id, attrs)
end
update_volume(attrs) click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 91
def update_volume attrs
  wait_for { stopped? } if attrs[:blocking]
  service.update_volume(id, attrs)
end
volumes() click to toggle source
# File lib/fog/ovirt/models/compute/server.rb, line 74
def volumes
  @volumes ||= id.nil? ? [] : Fog::Compute::Ovirt::Volumes.new(
      :service => service,
      :vm => self
  )
end