Sha256: 2cefa16ae4920bb7392545e4ea9f1af1f497c2d25fb9982cd390ac61e3b9c3a1

Contents?: true

Size: 2 KB

Versions: 39

Compression:

Stored size: 2 KB

Contents

module Fog
  module AWS
    class IAM
      class Real

        require 'fog/aws/parsers/iam/get_group_policy'

        # Get Group Policy
        #
        # ==== Parameters
        # * 'PolicyName'<~String>: Name of the policy to get
        # * 'GroupName'<~String>: Name of the Group who the policy is associated with.
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #       * PolicyDocument<~String> The policy document.
        #       * PolicyName<~String> The name of the policy.
        #       * GroupName<~String> The Group the policy is associated with.
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/IAM/latest/APIReference/API_GetGroupPolicy.html
        #
        def get_group_policy(policy_name, group_name)
          request({
            'Action'      => 'GetGroupPolicy',
            'PolicyName'  => policy_name,
            'GroupName'    => group_name,
            :parser       => Fog::Parsers::AWS::IAM::GetGroupPolicy.new
          })
        end

      end
      class Mock
        def get_group_policy(policy_name, group_name)
          raise Fog::AWS::IAM::NotFound.new("The group with name #{group_name} cannot be found.") unless self.data[:groups].key?(group_name)
          raise Fog::AWS::IAM::NotFound.new("The policy with name #{policy_name} cannot be found.") unless self.data[:groups][group_name][:policies].key?(policy_name)
          Excon::Response.new.tap do |response|
            response.body = { 'Policy' =>  {
                                'PolicyName' => policy_name,
                                'GroupName' => group_name,
                                'PolicyDocument' => data[:groups][group_name][:policies][policy_name]
                              },
                              'IsTruncated' => false,
                              'RequestId'   => Fog::AWS::Mock.request_id
                            }
            response.status = 200
          end
        end
      end
    end
  end
end

Version data entries

39 entries across 39 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/aws/requests/iam/get_group_policy.rb
fog-1.21.0 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/requests/iam/get_group_policy.rb
fog-1.20.0 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/requests/iam/get_group_policy.rb
fog-1.19.0 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/requests/iam/get_group_policy.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/requests/iam/get_group_policy.rb