Sha256: 95cb178b14f394d09d86d987392db485a4b5d64ae09a1b11f97f428211429466
Contents?: true
Size: 1.37 KB
Versions: 22
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[key] = 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
22 entries across 22 versions & 2 rubygems
Version | Path |
---|---|
fog-0.3.9 | lib/fog/aws/parsers/compute/describe_snapshots.rb |
fog-0.3.8 | lib/fog/aws/parsers/compute/describe_snapshots.rb |