Skip to content

Commit 1ea3f4d

Browse files
author
Ajay Kannan
committed
---
yaml --- r: 6627 b: refs/heads/tswast-patch-1 c: e9359a0 h: refs/heads/master i: 6625: c6e0f97 6623: 9be25d3
1 parent 58bff2e commit 1ea3f4d

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: 57de95ab08944e567a3f083bc7168d7ec6239d74
60+
refs/heads/tswast-patch-1: e9359a0e5a69fccf224bcaf7002fc851755ab0f3
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/ResourceManager.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,17 +136,19 @@ public static ProjectListOption filter(String filter) {
136136
* Returns an option to specify a page token.
137137
*
138138
* The page token (returned from a previous call to list) indicates from where listing should
139-
* continue. Pagination is not yet supported; the server ignores this field.
139+
* continue.
140140
*/
141141
public static ProjectListOption pageToken(String pageToken) {
142142
return new ProjectListOption(ResourceManagerRpc.Option.PAGE_TOKEN, pageToken);
143143
}
144144

145145
/**
146-
* The maximum number of projects to return in the response.
146+
* The maximum number of projects to return per RPC.
147147
*
148-
* The server can return fewer projects than requested. If unspecified, server picks an
149-
* appropriate default. Note: pagination is not yet supported; the server ignores this field.
148+
* The server can return fewer projects than requested. When there are more results than the
149+
* page size, the server will return a page token that can be used to fetch other results.
150+
* Note: pagination is not yet supported; the server currently ignores this field and returns
151+
* all results.
150152
*/
151153
public static ProjectListOption pageSize(int pageSize) {
152154
return new ProjectListOption(ResourceManagerRpc.Option.PAGE_SIZE, pageSize);

0 commit comments

Comments
 (0)