Class: Fog::Parsers::Redshift::AWS::DescribeClusterVersions

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/redshift/describe_cluster_versions.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#end_element(name) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/fog/aws/parsers/redshift/describe_cluster_versions.rb', line 30

def end_element(name)           
  super 
  case name
  when 'Marker'
    @response[name] = value
  when 'ClusterVersion'
    @cluster_version_depth -= 1
    if @cluster_version_depth == 0
      @response['ClusterVersions'] << {name => @cluster_version}
      @cluster_version = {}
    else
      @cluster_version[name] = value
    end                
  when 'ClusterParameterGroupFamily', 'Description'
    @cluster_version[name] = value
  end
end

#resetObject

:marker - (String) :cluster_versions - (Array<Hash>)

:cluster_version - (String)
:cluster_parameter_group_family - (String)
:description - (String)


13
14
15
16
# File 'lib/fog/aws/parsers/redshift/describe_cluster_versions.rb', line 13

def reset
  @response = { 'ClusterVersions' => [] }
  @cluster_version_depth = 0
end

#start_element(name, attrs = []) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/aws/parsers/redshift/describe_cluster_versions.rb', line 18

def start_element(name, attrs = [])
  super
  case name
  when 'ClusterVersions'
    @cluster_version = {}              
  when 'ClusterVersion'
    # Sadly, there are two nodes of different type named cluster_version 
    # that are nested, so we keep track of which one we're in
    @cluster_version_depth += 1
  end
end