File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"variables" : {
3
- "${LATEST}" : " 3.304.1 "
3
+ "${LATEST}" : " 3.304.4 "
4
4
},
5
5
"endpoints" : " https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json" ,
6
6
"services" : {
Original file line number Diff line number Diff line change 2
2
3
3
## NOT RELEASED
4
4
5
+ ### Added
6
+
7
+ - AWS api-change: change property used for pagination.
8
+
5
9
### Changed
6
10
7
11
- AWS enhancement: Documentation updates.
Original file line number Diff line number Diff line change 28
28
},
29
29
"extra" : {
30
30
"branch-alias" : {
31
- "dev-master" : " 1.3 -dev"
31
+ "dev-master" : " 1.4 -dev"
32
32
}
33
33
}
34
34
}
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ class ListAliasesResponse extends Result implements \IteratorAggregate
31
31
32
32
/**
33
33
* A flag that indicates whether there are more items in the list. When this value is true, the list in this response is
34
- * truncated. To get more items, pass the value of the `NextMarker` element in thisresponse to the `Marker` parameter in
35
- * a subsequent request.
34
+ * truncated. To get more items, pass the value of the `NextMarker` element in this response to the `Marker` parameter
35
+ * in a subsequent request.
36
36
*
37
37
* @var bool|null
38
38
*/
@@ -63,7 +63,7 @@ public function getAliases(bool $currentPageOnly = false): iterable
63
63
$ page = $ this ;
64
64
while (true ) {
65
65
$ page ->initialize ();
66
- if ($ page ->nextMarker ) {
66
+ if ($ page ->truncated ) {
67
67
$ input ->setMarker ($ page ->nextMarker );
68
68
69
69
$ this ->registerPrefetch ($ nextPage = $ client ->listAliases ($ input ));
You can’t perform that action at this time.
0 commit comments