| 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 45861e72e0268fa2ab738d28a152b4fd2d685c54..a280f0f9fc4af88ce0c6eb40c093f79b0b2bd454 100644
|
| --- a/generated/googleapis_beta/lib/appengine/v1beta.dart
|
| +++ b/generated/googleapis_beta/lib/appengine/v1beta.dart
|
| @@ -399,10 +399,15 @@ 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.
|
| + * Possible string values are:
|
| + * - "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
|
| @@ -411,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.String pageToken, core.int pageSize}) {
|
| + async.Future<ListAuthorizedCertificatesResponse> list(core.String appsId, {core.int pageSize, core.String view, core.String pageToken}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -422,12 +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';
|
|
|
| @@ -1191,12 +1199,12 @@ class AppsLocationsResourceApi {
|
| * [appsId] - Part of `name`. The resource that owns the locations collection,
|
| * if applicable.
|
| *
|
| - * [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 [ListLocationsResponse].
|
| *
|
| * Completes with a [commons.ApiRequestError] if the API endpoint returned an
|
| @@ -1205,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.String pageToken, core.int pageSize, core.String filter}) {
|
| + async.Future<ListLocationsResponse> list(core.String appsId, {core.int pageSize, core.String filter, core.String pageToken}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1216,15 +1224,15 @@ class AppsLocationsResourceApi {
|
| if (appsId == null) {
|
| throw new core.ArgumentError("Parameter appsId 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 = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/locations';
|
|
|
| @@ -1308,12 +1316,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
|
| @@ -1322,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.int pageSize, core.String filter, core.String pageToken}) {
|
| + async.Future<ListOperationsResponse> list(core.String appsId, {core.String filter, core.String pageToken, core.int pageSize}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1333,15 +1341,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 = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/operations';
|
|
|
| @@ -1518,6 +1526,8 @@ 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
|
| @@ -1532,8 +1542,6 @@ 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
|
| @@ -1542,7 +1550,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.bool migrateTraffic, core.String updateMask}) {
|
| + async.Future<Operation> patch(Service request, core.String appsId, core.String servicesId, {core.String updateMask, core.bool migrateTraffic}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1559,12 +1567,12 @@ class AppsServicesResourceApi {
|
| if (servicesId == null) {
|
| throw new core.ArgumentError("Parameter servicesId is required.");
|
| }
|
| - if (migrateTraffic != null) {
|
| - _queryParams["migrateTraffic"] = ["${migrateTraffic}"];
|
| - }
|
| if (updateMask != null) {
|
| _queryParams["updateMask"] = [updateMask];
|
| }
|
| + if (migrateTraffic != null) {
|
| + _queryParams["migrateTraffic"] = ["${migrateTraffic}"];
|
| + }
|
|
|
| _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/services/' + commons.Escaper.ecapeVariable('$servicesId');
|
|
|
| @@ -1758,8 +1766,6 @@ 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.
|
| @@ -1767,6 +1773,8 @@ 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
|
| @@ -1775,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.String pageToken, core.int pageSize, core.String view}) {
|
| + async.Future<ListVersionsResponse> list(core.String appsId, core.String servicesId, {core.int pageSize, core.String view, core.String pageToken}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1789,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';
|
|
|
| @@ -2257,7 +2265,7 @@ class ApiEndpointHandler {
|
|
|
| /**
|
| * An Application resource contains the top-level configuration of an App Engine
|
| - * application. Next tag: 19
|
| + * application. Next tag: 20
|
| */
|
| class Application {
|
| /**
|
| @@ -2434,8 +2442,8 @@ class AuthorizedCertificate {
|
| /**
|
| * Aggregate count of the domain mappings with this certificate mapped. This
|
| * count includes domain mappings on applications for which the user does not
|
| - * have VIEWER permissions.Only returned by GET requests when specifically
|
| - * requested by the view=FULL option.@OutputOnly
|
| + * have VIEWER permissions.Only returned by GET or LIST requests when
|
| + * specifically requested by the view=FULL_CERTIFICATE option.@OutputOnly
|
| */
|
| core.int domainMappingsCount;
|
| /**
|
| @@ -2465,8 +2473,8 @@ class AuthorizedCertificate {
|
| * not represent the full list of mapped domain mappings if the user does not
|
| * have VIEWER permissions on all of the applications that have this
|
| * certificate mapped. See domain_mappings_count for a complete count.Only
|
| - * returned by GET requests when specifically requested by the view=FULL
|
| - * option.@OutputOnly
|
| + * returned by GET or LIST requests when specifically requested by the
|
| + * view=FULL_CERTIFICATE option.@OutputOnly
|
| */
|
| core.List<core.String> visibleDomainMappings;
|
|
|
| @@ -5331,8 +5339,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.
|
|
|