Skip to content

Commit

Permalink
Added paginators to the Route 53 Domains client.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremeamia committed Feb 20, 2015
1 parent 21f487c commit 90f0573
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,7 @@
* `Aws\CloudFront` - Added support for origin paths in web distributions.
* `Aws\Ecs` - Added support for specifying volumes and mount points. Also
switched the client to use a JSON protocol.
* `Aws\Route53Domains` - Add iterators for `ListDomains` and `ListOperations`.

## 2.7.18 - 2015-02-12

Expand Down
14 changes: 14 additions & 0 deletions src/Aws/Route53Domains/Resources/route53domains-2014-05-15.php
Expand Up @@ -2113,4 +2113,18 @@
),
),
),
'iterators' => array(
'ListDomains' => array(
'limit_key' => 'MaxItems',
'input_token' => 'Marker',
'output_token' => 'NextPageMarker',
'result_key' => 'Domains',
),
'ListOperations' => array(
'limit_key' => 'MaxItems',
'input_token' => 'Marker',
'output_token' => 'NextPageMarker',
'result_key' => 'Operations',
),
),
);

0 comments on commit 90f0573

Please sign in to comment.