class Fog::Parsers::Compute::VcloudDirector::Disks

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/vcloud_director/parsers/compute/disks.rb, line 20
def end_element(name)
  case name
  when 'Address'
    @disk[:address] = value.to_i
  when 'AddressOnParent'
    @disk[:address_on_parent] = value.to_i
  when 'Description'
    @disk[:description] = value
  when 'ElementName'
    @disk[:name] = value
  when 'InstanceID'
    @disk[:id] = value.to_i
  when 'ResourceSubType'
    @disk[:resource_sub_type] = value
  when 'Parent'
    @disk[:parent] = value.to_i
  when 'ResourceType'
    @disk[:resource_type] = value.to_i
  when 'Item'
    if @host_resource
      @disk[:capacity] = @host_resource[:capacity].to_i
      @disk[:bus_sub_type] = @host_resource[:busSubType]
      @disk[:bus_type] = @host_resource[:busType].to_i
    end
    @response[:disks] << @disk
    @host_resource = nil
    @disk = {}
  end
end
reset() click to toggle source
# File lib/fog/vcloud_director/parsers/compute/disks.rb, line 6
def reset
  @disk = {}
  @response = { :disks => [] }
  @host_resource = nil
end
start_element(name, attributes) click to toggle source
Calls superclass method
# File lib/fog/vcloud_director/parsers/compute/disks.rb, line 12
def start_element(name, attributes)
  super
  case name
  when 'HostResource'
    @host_resource = extract_attributes(attributes)
  end
end