Class: Fog::Parsers::AWS::IAM::SinglePolicy
Instance Method Summary
collapse
#fresh_policy, #start_element
Instance Method Details
#end_element(name) ⇒ Object
16
17
18
19
20
21
22
|
# File 'lib/fog/aws/parsers/iam/single_policy.rb', line 16
def end_element(name)
case name
when 'RequestId'
@response[name] = value
end
super
end
|
#finished_policy(policy) ⇒ Object
12
13
14
|
# File 'lib/fog/aws/parsers/iam/single_policy.rb', line 12
def finished_policy(policy)
@response['Policy'] = policy
end
|
#reset ⇒ Object
7
8
9
10
|
# File 'lib/fog/aws/parsers/iam/single_policy.rb', line 7
def reset
super
@response = { 'Policy' => {} }
end
|