class Fog::Parsers::AWS::RDS::DBClusterSnapshotParser

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb, line 18
def end_element(name)
  case name
  when 'Port', 'PercentProgress', 'AllocatedStorage'
    @db_cluster_snapshot[name] = value.to_i
  when 'SnapshotCreateTime', 'ClusterCreateTime'
    @db_cluster_snapshot[name] = Time.parse(value)
  else
    @db_cluster_snapshot[name] = value
  end
end
fresh_snapshot() click to toggle source
# File lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb, line 10
def fresh_snapshot
  {}
end
reset() click to toggle source
# File lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb, line 6
def reset
  @db_cluster_snapshot = fresh_snapshot
end
start_element(name, attrs=[]) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/rds/db_cluster_snapshot_parser.rb, line 14
def start_element(name, attrs=[])
  super
end