Skip to content

Commit 6173cae

Browse files
author
Ajay Kannan
committed
---
yaml --- r: 2049 b: refs/heads/pubsub-alpha c: e9359a0 h: refs/heads/master i: 2047: 9b1d5b2
1 parent ad8ca14 commit 6173cae

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
@@ -3,7 +3,7 @@ refs/heads/master: 689bbb466df4b2d5d2483d6edb8ac5c7c7f7c6fa
33
refs/heads/travis: e21ee7b88a5edc3f3d8c71f90c3fc32abf7e8dd6
44
refs/heads/gh-pages: 4e0561bb4504bf647db669a14417b2b2c87ba45d
55
refs/heads/bigquery: 762fa5830e6c398c0396177e3e7fd243bd62cfc3
6-
refs/heads/pubsub-alpha: 57de95ab08944e567a3f083bc7168d7ec6239d74
6+
refs/heads/pubsub-alpha: e9359a0e5a69fccf224bcaf7002fc851755ab0f3
77
refs/heads/resource-manager: ebf4adc5ee835cd2086c4ac5b4e78d01a5a005a7
88
refs/heads/update-datastore: 482954f2c5055231e5b3122ea91d2ba00ce8187c
99
refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444

branches/pubsub-alpha/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)