Sha256: b9981022f9c47715f1b14c2f44722f1069ae7ebd3c2f300e38d66ab783ef19d2
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
module Fog module AWS class IAM class Real require 'fog/aws/parsers/iam/list_group_policies' # List policies for a group # # ==== Parameters # * group_name<~String> - Name of group to list policies for # * options<~Hash>: Optional # * 'Marker'<~String>: used to paginate subsequent requests # * 'MaxItems'<~Integer>: limit results to this number per page # * 'PathPrefix'<~String>: prefix for filtering results # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'PolicyNames'<~Array> - Matching policy names # * 'IsTruncated<~Boolean> - Whether or not results were truncated # * 'Marker'<~String> - appears when IsTruncated is true as the next marker to use # * 'RequestId'<~String> - Id of the request # # ==== See Also # http://docs.amazonwebservices.com/IAM/latest/APIReference/API_ListGroupPolicies.html # def list_group_policies(group_name, options = {}) request({ 'Action' => 'ListGroupPolicies', 'GroupName' => group_name, :parser => Fog::Parsers::AWS::IAM::ListGroupPolicies.new }.merge!(options)) end end class Mock def list_group_policies(group_name, options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-0.3.19 | lib/fog/aws/requests/iam/list_group_policies.rb |
fog-0.3.18 | lib/fog/aws/requests/iam/list_group_policies.rb |