Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Unified Diff: generated/googleapis_beta/lib/proximitybeacon/v1beta1.dart

Issue 2973303002: Api-Roll 51: 2017-07-10 (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: generated/googleapis_beta/lib/proximitybeacon/v1beta1.dart
diff --git a/generated/googleapis_beta/lib/proximitybeacon/v1beta1.dart b/generated/googleapis_beta/lib/proximitybeacon/v1beta1.dart
index 2eeb6401762b51444474522728e425a794f43ec1..a4b0dc40e8054e54b7f02d19f2709b72c31e9306 100644
--- a/generated/googleapis_beta/lib/proximitybeacon/v1beta1.dart
+++ b/generated/googleapis_beta/lib/proximitybeacon/v1beta1.dart
@@ -427,6 +427,10 @@ class BeaconsResourceApi {
* [pageToken] - A pagination token obtained from a previous request to list
* beacons.
*
+ * [pageSize] - The maximum number of records to return for this request, up
+ * to a
+ * server-defined upper limit.
+ *
* [q] - Filter query string that supports the following field filters:
*
* * **description:`"<string>"`**
@@ -496,10 +500,6 @@ class BeaconsResourceApi {
* `GET
* /v1beta1/beacons?q=status:active%20lat:51.123%20lng:-1.095%20radius:1000`
*
- * [pageSize] - The maximum number of records to return for this request, up
- * to a
- * server-defined upper limit.
- *
* [projectId] - The project id to list beacons under. If not present then the
* project
* credential that made the request is used as the project.
@@ -513,7 +513,7 @@ class BeaconsResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListBeaconsResponse> list({core.String pageToken, core.String q, core.int pageSize, core.String projectId}) {
+ async.Future<ListBeaconsResponse> list({core.String pageToken, core.int pageSize, core.String q, core.String projectId}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -524,12 +524,12 @@ class BeaconsResourceApi {
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
- if (q != null) {
- _queryParams["q"] = [q];
- }
if (pageSize != null) {
_queryParams["pageSize"] = ["${pageSize}"];
}
+ if (q != null) {
+ _queryParams["q"] = [q];
+ }
if (projectId != null) {
_queryParams["projectId"] = [projectId];
}
@@ -1002,9 +1002,6 @@ class BeaconsDiagnosticsResourceApi {
* from the
* response to a previous request. Optional.
*
- * [pageSize] - Specifies the maximum number of results to return. Defaults to
- * 10. Maximum 1000. Optional.
- *
* [alertFilter] - Requests only beacons that have the given alert. For
* example, to find
* beacons that have low batteries use `alert_filter=LOW_BATTERY`.
@@ -1013,6 +1010,9 @@ class BeaconsDiagnosticsResourceApi {
* - "WRONG_LOCATION" : A WRONG_LOCATION.
* - "LOW_BATTERY" : A LOW_BATTERY.
*
+ * [pageSize] - Specifies the maximum number of results to return. Defaults to
+ * 10. Maximum 1000. Optional.
+ *
* [projectId] - Requests only diagnostic records for the given project id. If
* not set,
* then the project making the request will be used for looking up
@@ -1026,7 +1026,7 @@ class BeaconsDiagnosticsResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListDiagnosticsResponse> list(core.String beaconName, {core.String pageToken, core.int pageSize, core.String alertFilter, core.String projectId}) {
+ async.Future<ListDiagnosticsResponse> list(core.String beaconName, {core.String pageToken, core.String alertFilter, core.int pageSize, core.String projectId}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -1040,12 +1040,12 @@ class BeaconsDiagnosticsResourceApi {
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
- if (pageSize != null) {
- _queryParams["pageSize"] = ["${pageSize}"];
- }
if (alertFilter != null) {
_queryParams["alertFilter"] = [alertFilter];
}
+ if (pageSize != null) {
+ _queryParams["pageSize"] = ["${pageSize}"];
+ }
if (projectId != null) {
_queryParams["projectId"] = [projectId];
}
« no previous file with comments | « generated/googleapis_beta/lib/oslogin/v1alpha.dart ('k') | generated/googleapis_beta/lib/pubsub/v1beta2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698