Index: generated/googleapis_beta/lib/appengine/v1beta.dart |
diff --git a/generated/googleapis_beta/lib/appengine/v1beta.dart b/generated/googleapis_beta/lib/appengine/v1beta.dart |
index a280f0f9fc4af88ce0c6eb40c093f79b0b2bd454..a77046c05ca4fdc2e5f7f9e41fcb6abe11ecd86a 100644 |
--- a/generated/googleapis_beta/lib/appengine/v1beta.dart |
+++ b/generated/googleapis_beta/lib/appengine/v1beta.dart |
@@ -399,6 +399,8 @@ class AppsAuthorizedCertificatesResourceApi { |
* [appsId] - Part of `parent`. Name of the parent Application resource. |
* Example: apps/myapp. |
* |
+ * [pageToken] - Continuation token for fetching the next page of results. |
+ * |
* [pageSize] - Maximum results to return per page. |
* |
* [view] - Controls the set of fields returned in the LIST response. |
@@ -406,8 +408,6 @@ class AppsAuthorizedCertificatesResourceApi { |
* - "BASIC_CERTIFICATE" : A BASIC_CERTIFICATE. |
* - "FULL_CERTIFICATE" : A FULL_CERTIFICATE. |
* |
- * [pageToken] - Continuation token for fetching the next page of results. |
- * |
* Completes with a [ListAuthorizedCertificatesResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -416,7 +416,7 @@ class AppsAuthorizedCertificatesResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListAuthorizedCertificatesResponse> list(core.String appsId, {core.int pageSize, core.String view, core.String pageToken}) { |
+ async.Future<ListAuthorizedCertificatesResponse> list(core.String appsId, {core.String pageToken, core.int pageSize, core.String view}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -427,15 +427,15 @@ class AppsAuthorizedCertificatesResourceApi { |
if (appsId == null) { |
throw new core.ArgumentError("Parameter appsId is required."); |
} |
+ if (pageToken != null) { |
+ _queryParams["pageToken"] = [pageToken]; |
+ } |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
} |
if (view != null) { |
_queryParams["view"] = [view]; |
} |
- if (pageToken != null) { |
- _queryParams["pageToken"] = [pageToken]; |
- } |
_url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/authorizedCertificates'; |
@@ -1199,12 +1199,12 @@ class AppsLocationsResourceApi { |
* [appsId] - Part of `name`. The resource that owns the locations collection, |
* if applicable. |
* |
- * [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 [ListLocationsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -1213,7 +1213,7 @@ class AppsLocationsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListLocationsResponse> list(core.String appsId, {core.int pageSize, core.String filter, core.String pageToken}) { |
+ async.Future<ListLocationsResponse> list(core.String appsId, {core.String filter, core.String pageToken, core.int pageSize}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -1224,15 +1224,15 @@ class AppsLocationsResourceApi { |
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 = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/locations'; |
@@ -1316,12 +1316,12 @@ class AppsOperationsResourceApi { |
* |
* [appsId] - Part of `name`. The name of the operation's parent resource. |
* |
- * [filter] - The standard list filter. |
- * |
* [pageToken] - The standard list page token. |
* |
* [pageSize] - The standard list page size. |
* |
+ * [filter] - The standard list filter. |
+ * |
* Completes with a [ListOperationsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -1330,7 +1330,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.String pageToken, core.int pageSize, core.String filter}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -1341,15 +1341,15 @@ class AppsOperationsResourceApi { |
if (appsId == null) { |
throw new core.ArgumentError("Parameter appsId is required."); |
} |
- if (filter != null) { |
- _queryParams["filter"] = [filter]; |
- } |
if (pageToken != null) { |
_queryParams["pageToken"] = [pageToken]; |
} |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
} |
+ if (filter != null) { |
+ _queryParams["filter"] = [filter]; |
+ } |
_url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/operations'; |
@@ -1766,6 +1766,8 @@ class AppsServicesVersionsResourceApi { |
* |
* [servicesId] - Part of `parent`. See documentation of `appsId`. |
* |
+ * [pageToken] - Continuation token for fetching the next page of results. |
+ * |
* [pageSize] - Maximum results to return per page. |
* |
* [view] - Controls the set of fields returned in the List response. |
@@ -1773,8 +1775,6 @@ class AppsServicesVersionsResourceApi { |
* - "BASIC" : A BASIC. |
* - "FULL" : A FULL. |
* |
- * [pageToken] - Continuation token for fetching the next page of results. |
- * |
* Completes with a [ListVersionsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -1783,7 +1783,7 @@ class AppsServicesVersionsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListVersionsResponse> list(core.String appsId, core.String servicesId, {core.int pageSize, core.String view, core.String pageToken}) { |
+ async.Future<ListVersionsResponse> list(core.String appsId, core.String servicesId, {core.String pageToken, core.int pageSize, core.String view}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -1797,15 +1797,15 @@ class AppsServicesVersionsResourceApi { |
if (servicesId == null) { |
throw new core.ArgumentError("Parameter servicesId is required."); |
} |
+ if (pageToken != null) { |
+ _queryParams["pageToken"] = [pageToken]; |
+ } |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
} |
if (view != null) { |
_queryParams["view"] = [view]; |
} |
- if (pageToken != null) { |
- _queryParams["pageToken"] = [pageToken]; |
- } |
_url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/services/' + commons.Escaper.ecapeVariable('$servicesId') + '/versions'; |
@@ -4201,17 +4201,24 @@ class ManualScaling { |
} |
} |
-/** Extra network settings. Only applicable for VM runtimes. */ |
+/** |
+ * Extra network settings. Only applicable for App Engine flexible environment |
+ * versions |
+ */ |
class Network { |
/** |
* List of ports, or port pairs, to forward from the virtual machine to the |
- * application container. |
+ * application container. Only applicable for App Engine flexible environment |
+ * versions. |
*/ |
core.List<core.String> forwardedPorts; |
- /** Tag to apply to the VM instance during creation. */ |
+ /** |
+ * Tag to apply to the VM instance during creation. Only applicable for for |
+ * App Engine flexible environment versions. |
+ */ |
core.String instanceTag; |
/** |
- * Google Cloud Platform network where the virtual machines are created. |
+ * Google Compute Engine network where the virtual machines are created. |
* Specify the short name, not the resource path.Defaults to default. |
*/ |
core.String name; |
@@ -4229,7 +4236,8 @@ class Network { |
* If the network the VM instance is being created in is a custom Subnet Mode |
* Network, then the subnetwork_name must be specified and the IP address is |
* created from the IPCidrRange of the subnetwork.If specified, the subnetwork |
- * must exist in the same region as the Flex app. |
+ * must exist in the same region as the App Engine flexible environment |
+ * application. |
*/ |
core.String subnetworkName; |
@@ -5740,7 +5748,10 @@ class Version { |
* apps/myapp/services/default/versions/v1.@OutputOnly |
*/ |
core.String name; |
- /** Extra network settings. Only applicable for VM runtimes. */ |
+ /** |
+ * Extra network settings. Only applicable for App Engine flexible environment |
+ * versions. |
+ */ |
Network network; |
/** |
* Files that match this pattern will not be built into this version. Only |