class Fog::Parsers::Compute::VcloudDirector::Vms

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/vcloud_director/parsers/compute/vms.rb, line 41
def end_element(name)
  if @in_children
    if name == 'Vm'
      @response[:vms] << @vm
      @vm = {}
    else
      parse_end_element name, @vm
    end
  end
end
human_status(status) click to toggle source
# File lib/fog/vcloud_director/parsers/compute/vms.rb, line 52
def human_status(status)
  case status
  when '0', 0
    'creating'
  when '8', 8
    'off'
  when '4', 4
    'on'
  else
    'unknown'
  end
end
reset() click to toggle source
# File lib/fog/vcloud_director/parsers/compute/vms.rb, line 10
def reset
  @vm = { :ip_address => '' }
  @in_operating_system = false
  @in_children = false
  @resource_type = nil
  @response = { :vms => [] }
  @links = []
end
start_element(name, attributes) click to toggle source
Calls superclass method
# File lib/fog/vcloud_director/parsers/compute/vms.rb, line 19
def start_element(name, attributes)
  super
  case name
  when 'Vm'
    vapp = extract_attributes(attributes)
    @vm.merge!(vapp.reject {|key,value| ![:href, :name, :status, :type, :deployed].include?(key)})
    @vm[:deployed] = response[:deployed] == 'true'
    @vm[:id] = @vm[:href].split('/').last
    @vm[:vapp_id] = @response[:id]
    @vm[:vapp_name] = @response[:name]
    @vm[:status] = human_status(@vm[:status])
  when 'VApp'
    vapp = extract_attributes(attributes)
    @response.merge!(vapp.reject {|key,value| ![:href, :name, :size, :status, :type].include?(key)})
    @response[:id] = @response[:href].split('/').last
  when 'Children'
    @in_children = true
  else
    parse_start_element name, attributes, @vm
  end
end