Index: generated/googleapis/lib/appengine/v1.dart |
diff --git a/generated/googleapis/lib/appengine/v1.dart b/generated/googleapis/lib/appengine/v1.dart |
index 078f5104cc584c8d7130dceb0ff5b2828f291acb..c987edbd9753478653476a392494eb69a1205f73 100644 |
--- a/generated/googleapis/lib/appengine/v1.dart |
+++ b/generated/googleapis/lib/appengine/v1.dart |
@@ -623,8 +623,6 @@ class AppsServicesResourceApi { |
* |
* [servicesId] - Part of `name`. See documentation of `appsId`. |
* |
- * [updateMask] - Standard field mask for the set of fields to be updated. |
- * |
* [migrateTraffic] - Set to true to gradually shift traffic to one or more |
* versions that you specify. By default, traffic is shifted immediately. For |
* gradual traffic migration, the target versions must be located within |
@@ -639,6 +637,8 @@ class AppsServicesResourceApi { |
* Splitting Traffic |
* (https://cloud.google.com/appengine/docs/admin-api/migrating-splitting-traffic). |
* |
+ * [updateMask] - Standard field mask for the set of fields to be updated. |
+ * |
* Completes with a [Operation]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -647,7 +647,7 @@ class AppsServicesResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<Operation> patch(Service request, core.String appsId, core.String servicesId, {core.String updateMask, core.bool migrateTraffic}) { |
+ async.Future<Operation> patch(Service request, core.String appsId, core.String servicesId, {core.bool migrateTraffic, core.String updateMask}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -664,12 +664,12 @@ class AppsServicesResourceApi { |
if (servicesId == null) { |
throw new core.ArgumentError("Parameter servicesId is required."); |
} |
- if (updateMask != null) { |
- _queryParams["updateMask"] = [updateMask]; |
- } |
if (migrateTraffic != null) { |
_queryParams["migrateTraffic"] = ["${migrateTraffic}"]; |
} |
+ if (updateMask != null) { |
+ _queryParams["updateMask"] = [updateMask]; |
+ } |
_url = 'v1/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/services/' + commons.Escaper.ecapeVariable('$servicesId'); |
@@ -1191,10 +1191,10 @@ class AppsServicesVersionsInstancesResourceApi { |
* |
* [versionsId] - Part of `parent`. See documentation of `appsId`. |
* |
- * [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 [ListInstancesResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -1203,7 +1203,7 @@ class AppsServicesVersionsInstancesResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListInstancesResponse> list(core.String appsId, core.String servicesId, core.String versionsId, {core.String pageToken, core.int pageSize}) { |
+ async.Future<ListInstancesResponse> list(core.String appsId, core.String servicesId, core.String versionsId, {core.int pageSize, core.String pageToken}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -1220,12 +1220,12 @@ class AppsServicesVersionsInstancesResourceApi { |
if (versionsId == null) { |
throw new core.ArgumentError("Parameter versionsId is required."); |
} |
- if (pageToken != null) { |
- _queryParams["pageToken"] = [pageToken]; |
- } |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
} |
+ if (pageToken != null) { |
+ _queryParams["pageToken"] = [pageToken]; |
+ } |
_url = 'v1/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/services/' + commons.Escaper.ecapeVariable('$servicesId') + '/versions/' + commons.Escaper.ecapeVariable('$versionsId') + '/instances'; |