Skip to content

Commit

Permalink
Added missign paginators for new IAM operations.
Browse files Browse the repository at this point in the history
Fixes #841
  • Loading branch information
trevorrowe committed Jun 16, 2015
1 parent c87ef02 commit 949fb50
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Unreleased Changes
------------------

* Issue - Aws::IAM - Added missing paginator configurations for the newer
IAM attached policy operations.

See [related GitHub issue #841](https://github.com/aws/aws-sdk-ruby/issues/841)

* Issue - PageableResponse - Resolved an issue where Enumerable was not
correctly getting mixed into pageable responses.

Expand Down
32 changes: 32 additions & 0 deletions aws-sdk-core/apis/iam/2010-05-08/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,38 @@
"limit_key": "MaxItems",
"result_key": "AccountAliases"
},
"ListAttachedGroupPolicies": {
"input_token": "Marker",
"output_token": "Marker",
"more_results": "IsTruncated",
"limit_key": "MaxItems",
"result_key": "AttachedPolicies"
},
"ListAttachedRolePolicies": {
"input_token": "Marker",
"output_token": "Marker",
"more_results": "IsTruncated",
"limit_key": "MaxItems",
"result_key": "AttachedPolicies"
},
"ListAttachedUserPolicies": {
"input_token": "Marker",
"output_token": "Marker",
"more_results": "IsTruncated",
"limit_key": "MaxItems",
"result_key": "AttachedPolicies"
},
"ListEntitiesForPolicy": {
"input_token": "Marker",
"output_token": "Marker",
"more_results": "IsTruncated",
"limit_key": "MaxItems",
"result_key": [
"PolicyGroups",
"PolicyUsers",
"PoliyRoles"
]
},
"ListGroupPolicies": {
"input_token": "Marker",
"output_token": "Marker",
Expand Down

0 comments on commit 949fb50

Please sign in to comment.