Class: Fog::Parsers::Redshift::AWS::CreateClusterSecurityGroup

Inherits:
ClusterSecurityGroupParser show all
Defined in:
lib/fog/aws/parsers/redshift/create_cluster_security_group.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from ClusterSecurityGroupParser

#fresh_cluster_security_group

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



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

def end_element(name)            
  super
  case name
  when 'ClusterSecurityGroup'
    @response['ClusterSecurityGroup'] = @cluster_security_group
  end
end

#resetObject

:cluster_security_group



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

def reset
  super
  @response = {}
end

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



16
17
18
# File 'lib/fog/aws/parsers/redshift/create_cluster_security_group.rb', line 16

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