class Fog::Parsers::AWS::RDS::DescribeDBClusterSnapshots
Public Instance Methods
end_element(name)
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::DBClusterSnapshotParser#end_element
# File lib/fog/aws/parsers/rds/describe_db_cluster_snapshots.rb, line 17 def end_element(name) case name when 'DBClusterSnapshot' @response['DescribeDBClusterSnapshotsResult']['DBClusterSnapshots'] << @db_cluster_snapshot @db_cluster_snapshot = fresh_snapshot when 'Marker' @response['DescribeDBClusterSnapshotsResult']['Marker'] = value when 'RequestId' @response['ResponseMetadata'][name] = value else super end end
reset()
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::DBClusterSnapshotParser#reset
# File lib/fog/aws/parsers/rds/describe_db_cluster_snapshots.rb, line 8 def reset @response = {'DescribeDBClusterSnapshotsResult' => {'DBClusterSnapshots' => []}, 'ResponseMetadata' => {}} super end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
Fog::Parsers::AWS::RDS::DBClusterSnapshotParser#start_element
# File lib/fog/aws/parsers/rds/describe_db_cluster_snapshots.rb, line 13 def start_element(name, attrs = []) super end