Class: Fog::Parsers::Redshift::AWS::ClusterSnapshot

Inherits:
ClusterSnapshotParser show all
Defined in:
lib/fog/aws/parsers/redshift/cluster_snapshot.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from ClusterSnapshotParser

#fresh_snapshot

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



21
22
23
24
25
26
27
# File 'lib/fog/aws/parsers/redshift/cluster_snapshot.rb', line 21

def end_element(name)            
  super
  case name
  when 'Snapshot'
    @response = @snapshot
  end
end

#resetObject

:parameter_group_name - (String) :parameter_group_status - (String)



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

def reset
  super
  @response = {}
end

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



17
18
19
# File 'lib/fog/aws/parsers/redshift/cluster_snapshot.rb', line 17

def start_element(name, attrs = [])
  super
end