| Index: generated/googleapis_beta/lib/appengine/v1beta4.dart
|
| diff --git a/generated/googleapis_beta/lib/appengine/v1beta4.dart b/generated/googleapis_beta/lib/appengine/v1beta4.dart
|
| index e0d2b7fb7c926133ffe4723befc1e5b2258c7430..65503b1a396ba36a6939b3123ad9951aac7b1828 100644
|
| --- a/generated/googleapis_beta/lib/appengine/v1beta4.dart
|
| +++ b/generated/googleapis_beta/lib/appengine/v1beta4.dart
|
| @@ -414,10 +414,10 @@ class AppsModulesResourceApi {
|
| * [appsId] - Part of `name`. Name of the resource requested. Example:
|
| * apps/myapp.
|
| *
|
| - * [pageToken] - Continuation token for fetching the next page of results.
|
| - *
|
| * [pageSize] - Maximum results to return per page.
|
| *
|
| + * [pageToken] - Continuation token for fetching the next page of results.
|
| + *
|
| * Completes with a [ListModulesResponse].
|
| *
|
| * Completes with a [commons.ApiRequestError] if the API endpoint returned an
|
| @@ -426,7 +426,7 @@ class AppsModulesResourceApi {
|
| * If the used [http.Client] completes with an error when making a REST call,
|
| * this method will complete with the same error.
|
| */
|
| - async.Future<ListModulesResponse> list(core.String appsId, {core.String pageToken, core.int pageSize}) {
|
| + async.Future<ListModulesResponse> list(core.String appsId, {core.int pageSize, core.String pageToken}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -437,12 +437,12 @@ class AppsModulesResourceApi {
|
| if (appsId == null) {
|
| throw new core.ArgumentError("Parameter appsId is required.");
|
| }
|
| - if (pageToken != null) {
|
| - _queryParams["pageToken"] = [pageToken];
|
| - }
|
| if (pageSize != null) {
|
| _queryParams["pageSize"] = ["${pageSize}"];
|
| }
|
| + if (pageToken != null) {
|
| + _queryParams["pageToken"] = [pageToken];
|
| + }
|
|
|
| _url = 'v1beta4/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/modules';
|
|
|
| @@ -1154,12 +1154,12 @@ class AppsOperationsResourceApi {
|
| *
|
| * [appsId] - Part of `name`. The name of the operation's parent resource.
|
| *
|
| + * [pageSize] - The standard list page size.
|
| + *
|
| * [filter] - The standard list filter.
|
| *
|
| * [pageToken] - The standard list page token.
|
| *
|
| - * [pageSize] - The standard list page size.
|
| - *
|
| * Completes with a [ListOperationsResponse].
|
| *
|
| * Completes with a [commons.ApiRequestError] if the API endpoint returned an
|
| @@ -1168,7 +1168,7 @@ class AppsOperationsResourceApi {
|
| * 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 appsId, {core.String filter, core.String pageToken, core.int pageSize}) {
|
| + async.Future<ListOperationsResponse> list(core.String appsId, {core.int pageSize, core.String filter, core.String pageToken}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1179,15 +1179,15 @@ class AppsOperationsResourceApi {
|
| if (appsId == null) {
|
| throw new core.ArgumentError("Parameter appsId is required.");
|
| }
|
| + if (pageSize != null) {
|
| + _queryParams["pageSize"] = ["${pageSize}"];
|
| + }
|
| if (filter != null) {
|
| _queryParams["filter"] = [filter];
|
| }
|
| if (pageToken != null) {
|
| _queryParams["pageToken"] = [pageToken];
|
| }
|
| - if (pageSize != null) {
|
| - _queryParams["pageSize"] = ["${pageSize}"];
|
| - }
|
|
|
| _url = 'v1beta4/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/operations';
|
|
|
| @@ -3533,8 +3533,8 @@ class Status {
|
| /** The status code, which should be an enum value of google.rpc.Code. */
|
| core.int code;
|
| /**
|
| - * A list of messages that carry the error details. There will be a common set
|
| - * of message types for APIs to use.
|
| + * A list of messages that carry the error details. There is a common set of
|
| + * message types for APIs to use.
|
| *
|
| * The values for Object must be JSON objects. It can consist of `num`,
|
| * `String`, `bool` and `null` as well as `Map` and `List` values.
|
|
|