Class: Fog::Parsers::DNS::Slicehost::CreateRecord

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/slicehost/parsers/dns/create_record.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#attr_value, #characters, #initialize, #start_element, #value

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#end_element(name) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/fog/slicehost/parsers/dns/create_record.rb', line 12

def end_element(name)
  case name
  when 'zone_id'
    @response["zone-id"] = value.to_i
  when 'record_type'
    @response["record-type"] = value
  when 'ttl', 'id'
    @response[name] = value.to_i
  when 'value'
    @response["data"] = value
  when 'name', 'data', 'active', 'aux'
    @response[name] = value
  end
end

#resetObject



8
9
10
# File 'lib/fog/slicehost/parsers/dns/create_record.rb', line 8

def reset
  @response = {}
end