class Fog::Parsers::Redshift::AWS::DescribeClusters
Public Instance Methods
Source
# 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
Calls superclass method
Fog::Parsers::Redshift::AWS::ClusterParser#end_element
Source
# File lib/fog/aws/parsers/redshift/describe_clusters.rb, line 8 def reset super @response = {"ClusterSet" => []} end
Calls superclass method
Fog::Parsers::Redshift::AWS::ClusterParser#reset
Source
# File lib/fog/aws/parsers/redshift/describe_clusters.rb, line 13 def start_element(name, attrs = []) super end
Calls superclass method
Fog::Parsers::Redshift::AWS::ClusterParser#start_element