Class: Fog::Ecloud::MockDataClasses::MockVirtualMachine

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/ecloud/compute.rb

Instance Method Summary collapse

Methods inherited from Base

#_parent, base_url, #base_url, base_url=, #first, #initialize, #inspect, #last

Constructor Details

This class inherits a constructor from Fog::Ecloud::MockDataClasses::Base

Instance Method Details

#cpusObject



512
513
514
# File 'lib/fog/ecloud/compute.rb', line 512

def cpus
  self[:cpus] || 1
end

#disksObject



520
521
522
# File 'lib/fog/ecloud/compute.rb', line 520

def disks
  @disks ||= MockVirtualMachineDisks.new(self)
end

#href(purpose = :base) ⇒ Object



556
557
558
559
560
561
562
563
564
565
# File 'lib/fog/ecloud/compute.rb', line 556

def href(purpose = :base)
  case purpose
  when :base
    super()
  when :power_on
    super() + "/power/action/powerOn"
  when :power_off
    super() + "/power/action/powerOff"
  end
end

#ipObject



508
509
510
# File 'lib/fog/ecloud/compute.rb', line 508

def ip
  self[:ip]
end

#memoryObject



516
517
518
# File 'lib/fog/ecloud/compute.rb', line 516

def memory
  self[:memory] || 1024
end

#nameObject



504
505
506
# File 'lib/fog/ecloud/compute.rb', line 504

def name
  self[:name]
end

#network_ipObject



540
541
542
543
544
# File 'lib/fog/ecloud/compute.rb', line 540

def network_ip
  if network = _parent.networks.detect {|n| n.ip_collection.items[ip] }
    network.ip_collection.items[ip]
  end
end

#power_off!Object



528
529
530
# File 'lib/fog/ecloud/compute.rb', line 528

def power_off!
  self[:status] = 2
end

#power_on!Object



532
533
534
# File 'lib/fog/ecloud/compute.rb', line 532

def power_on!
  self[:status] = 4
end

#sizeObject



536
537
538
# File 'lib/fog/ecloud/compute.rb', line 536

def size
  disks.inject(0) {|s, d| s + d.vcloud_size }
end

#statusObject



524
525
526
# File 'lib/fog/ecloud/compute.rb', line 524

def status
  self[:status] || 2
end

#to_configure_vapp_hashObject

from fog ecloud server’s _compose_vapp_data



547
548
549
550
551
552
553
554
# File 'lib/fog/ecloud/compute.rb', line 547

def to_configure_vapp_hash
  {
    :name   => name,
    :cpus   => cpus,
    :memory => memory,
    :disks  => disks.map {|d| { :number => d.address.to_s, :size => d.vcloud_size, :resource => d.vcloud_size.to_s } }
  }
end