Sha256: 4632ff11ba6219f72905366acf0bd6526e9560591d30669e633c5bd64c6f08b5
Contents?: true
Size: 716 Bytes
Versions: 61
Compression:
Stored size: 716 Bytes
Contents
module Fog module Parsers module Terremark module Shared class InstantiateVappTemplate < TerremarkParser def reset @property_key @response = { 'Links' => [] } end def start_element(name, attributes) super case name when 'Link' link = extract_attributes(attributes) @response['Links'] << link when 'VApp' vapp_template = extract_attributes(attributes) @response.merge!(vapp_template.reject {|key, value| !['href', 'name', 'size', 'status', 'type'].include?(key)}) end end end end end end end
Version data entries
61 entries across 61 versions & 6 rubygems
Version | Path |
---|---|
fog-1.10.0 | lib/fog/terremark/parsers/shared/instantiate_vapp_template.rb |