class Fog::Parsers::Redshift::AWS::DescribeClusters
Public Instance Methods
end_element(name)
click to toggle source
Calls superclass method
Fog::Parsers::Redshift::AWS::ClusterParser#end_element
# File lib/fog/aws/parsers/redshift/describe_clusters.rb, line 17 def end_element(name) super case name when 'Cluster' @response["ClusterSet"] << {name => @cluster} @cluster = fresh_cluster end end
reset()
click to toggle source
Calls superclass method
Fog::Parsers::Redshift::AWS::ClusterParser#reset
# File lib/fog/aws/parsers/redshift/describe_clusters.rb, line 8 def reset super @response = {"ClusterSet" => []} end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
Fog::Parsers::Redshift::AWS::ClusterParser#start_element
# File lib/fog/aws/parsers/redshift/describe_clusters.rb, line 13 def start_element(name, attrs = []) super end