Class: Fog::Parsers::Redshift::AWS::RevokeClusterSecurityGroupIngress
Instance Method Summary
collapse
#fresh_cluster_security_group
Instance Method Details
#end_element(name) ⇒ Object
19
20
21
22
23
24
25
|
# File 'lib/fog/aws/parsers/redshift/revoke_cluster_security_group_ingress.rb', line 19
def end_element(name)
super
case name
when 'ClusterSecurityGroup'
@response['ClusterSecurityGroup'] = @cluster_security_group
end
end
|
#reset ⇒ Object
10
11
12
13
|
# File 'lib/fog/aws/parsers/redshift/revoke_cluster_security_group_ingress.rb', line 10
def reset
super
@response = {}
end
|
#start_element(name, attrs = []) ⇒ Object
15
16
17
|
# File 'lib/fog/aws/parsers/redshift/revoke_cluster_security_group_ingress.rb', line 15
def start_element(name, attrs = [])
super
end
|