Sha256: 282d94782941bef074d15b244aedadf719dd4c99947d1145c75e0e41cfddb484
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 KB
Contents
module Fog module Parsers module AWS module Compute class DescribeSnapshots < Fog::Parsers::Base def reset @response = { 'snapshotSet' => [] } @snapshot = { 'tagSet' => {} } @tag = {} end def start_element(name, attrs = []) super if name == 'tagSet' @in_tag_set = true end end def end_element(name) if @in_tag_set case name when 'item' @snapshot['tagSet'][@tag['key']] = @tag['value'] @tag = {} when 'key', 'value' @tag[name] = value when 'tagSet' @in_tag_set = false end else case name when 'item' @response['snapshotSet'] << @snapshot @snapshot = { 'tagSet' => {} } when 'description', 'ownerId', 'progress', 'snapshotId', 'status', 'volumeId' @snapshot[name] ||= value when 'requestId' @response[name] = value when 'startTime' @snapshot[name] = Time.parse(value) when 'volumeSize' @snapshot[name] = value.to_i end end end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fog-0.8.2 | lib/fog/compute/parsers/aws/describe_snapshots.rb |
fog-0.8.1 | lib/fog/compute/parsers/aws/describe_snapshots.rb |
fog-0.8.0 | lib/fog/compute/parsers/aws/describe_snapshots.rb |