Class: Fog::Parsers::AWS::IAM::GetGroupPolicy
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::IAM::GetGroupPolicy
- Defined in:
- lib/fog/aws/parsers/iam/get_group_policy.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/fog/aws/parsers/iam/get_group_policy.rb', line 12 def end_element(name) case name when 'GroupName', 'PolicyName' @response[name] = value when 'PolicyDocument' @response['Policy'][name] = if decoded_string = URI.decode(value) Fog::JSON.decode(decoded_string) rescue value else value end when 'RequestId' @response[name] = value end end |
#reset ⇒ Object
8 9 10 |
# File 'lib/fog/aws/parsers/iam/get_group_policy.rb', line 8 def reset @response = { 'Policy' => {} } end |