Sha256: a16512be9da6dd4b27ad463d3858afc1b7e2be72437749a27109c961f1958412
Contents?: true
Size: 649 Bytes
Versions: 1
Compression:
Stored size: 649 Bytes
Contents
module Fog module Parsers module Compute module AWS require 'rackspace-fog/aws/parsers/compute/network_interface_parser' class CreateNetworkInterface < NetworkInterfaceParser def reset super @response = { 'networkInterface' => {} } end def end_element(name) case name when 'requestId' @response[name] = value when 'networkInterface' @response['networkInterface'] = @nic reset_nic else super end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rackspace-fog-1.4.2 | lib/rackspace-fog/aws/parsers/compute/create_network_interface.rb |