mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
|
module Fog
|
||
|
module Parsers
|
||
|
module Compute
|
||
|
module AWS
|
||
|
class DescribeVpcAttribute < Fog::Parsers::Base
|
||
|
def reset
|
||
|
@response = { }
|
||
|
@in_enable_dns_support = false
|
||
|
@in_enable_dns_hostnames = false
|
||
|
end
|
||
|
|
||
|
def start_element(name, attrs = [])
|
||
|
super
|
||
|
case name
|
||
|
when 'enableDnsSupport'
|
||
|
@in_enable_dns_support = true
|
||
|
when 'enableDnsHostnames'
|
||
|
@in_enable_dns_hostnames = true
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def end_element(name)
|
||
|
if @in_enable_dns_support
|
||
|
case name
|
||
|
when 'value'
|
||
|
@response['enableDnsSupport'] = (value == 'true')
|
||
|
when 'enableDnsSupport'
|
||
|
@in_enable_dns_support = false
|
||
|
end
|
||
|
elsif @in_enable_dns_hostnames
|
||
|
case name
|
||
|
when 'value'
|
||
|
@response['enableDnsHostnames'] = (value == 'true')
|
||
|
when 'enableDnsHostnames'
|
||
|
@in_enable_dns_hostnames = false
|
||
|
end
|
||
|
else
|
||
|
case name
|
||
|
when 'requestId', 'vpcId'
|
||
|
@response[name] = value
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|