Sha256: cc02ffa11ba83cb336c01835cebb5bd07adb2c31c41222edd7e670d577c636ca
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
module Fog module AWS class IAM class Real require 'rackspace-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 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rackspace-fog-1.4.2 | lib/rackspace-fog/aws/requests/iam/get_group_policy.rb |