Class: Fog::Parsers::Redshift::AWS::DescribeClusterSecurityGroups
Instance Method Summary
collapse
#fresh_cluster_security_group
Instance Method Details
#end_element(name) ⇒ Object
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/fog/aws/parsers/redshift/describe_cluster_security_groups.rb', line 23
def end_element(name)
super
case name
when 'Marker'
@response[name] = value
when 'ClusterSecurityGroup'
@response['ClusterSecurityGroups'] << { name => @cluster_security_group }
@cluster_security_group = fresh_cluster_security_group
end
end
|
#reset ⇒ Object
:marker - (String) :cluster_security_groups - (Array)
11
12
13
|
# File 'lib/fog/aws/parsers/redshift/describe_cluster_security_groups.rb', line 11
def reset
@response = { 'ClusterSecurityGroups' => [] }
end
|
#start_element(name, attrs = []) ⇒ Object
15
16
17
18
19
20
21
|
# File 'lib/fog/aws/parsers/redshift/describe_cluster_security_groups.rb', line 15
def start_element(name, attrs = [])
super
case name
when 'ClusterSecurityGroups'
@cluster_security_group = fresh_cluster_security_group
end
end
|