Index: generated/googleapis/lib/runtimeconfig/v1.dart |
diff --git a/generated/googleapis/lib/runtimeconfig/v1.dart b/generated/googleapis/lib/runtimeconfig/v1.dart |
index ece11ed801bd71cf433a48fc05a3785518c5d5a2..2cdcdf4bed94cc9e293cff407940ff97a5a9b00e 100644 |
--- a/generated/googleapis/lib/runtimeconfig/v1.dart |
+++ b/generated/googleapis/lib/runtimeconfig/v1.dart |
@@ -150,12 +150,12 @@ class OperationsResourceApi { |
* [name] - The name of the operation collection. |
* Value must have pattern "^operations$". |
* |
+ * [pageToken] - The standard list page token. |
+ * |
* [pageSize] - The standard list page size. |
* |
* [filter] - The standard list filter. |
* |
- * [pageToken] - The standard list page token. |
- * |
* Completes with a [ListOperationsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -164,7 +164,7 @@ class OperationsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListOperationsResponse> list(core.String name, {core.int pageSize, core.String filter, core.String pageToken}) { |
+ async.Future<ListOperationsResponse> list(core.String name, {core.String pageToken, core.int pageSize, core.String filter}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -175,15 +175,15 @@ class OperationsResourceApi { |
if (name == null) { |
throw new core.ArgumentError("Parameter name is required."); |
} |
+ if (pageToken != null) { |
+ _queryParams["pageToken"] = [pageToken]; |
+ } |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
} |
if (filter != null) { |
_queryParams["filter"] = [filter]; |
} |
- if (pageToken != null) { |
- _queryParams["pageToken"] = [pageToken]; |
- } |
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name'); |