Chromium Code Reviews

Unified Diff: generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart

Issue 2695743002: Api-roll 45: 2017-02-13 (Closed)
Patch Set: reverted local changes to pubspec file Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart
diff --git a/generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart b/generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart
index c0e73958e025fa7d646c3468e1539cc9ccdefa5e..fb8ae13cc71894c052a9fff4abcbb5476585a799 100644
--- a/generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart
+++ b/generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart
@@ -257,14 +257,14 @@ class ProjectsConfigsResourceApi {
* for this request, in the format `projects/[PROJECT_ID]`.
* Value must have pattern "^projects/[^/]+$".
*
- * [pageSize] - Specifies the number of results to return per page. If there
- * are fewer
- * elements than the specified number, returns all elements.
- *
* [pageToken] - Specifies a page token to use. Set `pageToken` to a
* `nextPageToken`
* returned by a previous list request to get the next page of results.
*
+ * [pageSize] - Specifies the number of results to return per page. If there
+ * are fewer
+ * elements than the specified number, returns all elements.
+ *
* Completes with a [ListConfigsResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -273,7 +273,7 @@ class ProjectsConfigsResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListConfigsResponse> list(core.String parent, {core.int pageSize, core.String pageToken}) {
+ async.Future<ListConfigsResponse> list(core.String parent, {core.String pageToken, core.int pageSize}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -284,12 +284,12 @@ class ProjectsConfigsResourceApi {
if (parent == null) {
throw new core.ArgumentError("Parameter parent is required.");
}
- if (pageSize != null) {
- _queryParams["pageSize"] = ["${pageSize}"];
- }
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
+ if (pageSize != null) {
+ _queryParams["pageSize"] = ["${pageSize}"];
+ }
_url = 'v1beta1/' + commons.Escaper.ecapeVariableReserved('$parent') + '/configs';
@@ -744,6 +744,10 @@ class ProjectsConfigsVariablesResourceApi {
* `projects/[PROJECT_ID]/configs/[CONFIG_NAME]`
* Value must have pattern "^projects/[^/]+/configs/[^/]+$".
*
+ * [pageToken] - Specifies a page token to use. Set `pageToken` to a
+ * `nextPageToken`
+ * returned by a previous list request to get the next page of results.
+ *
* [pageSize] - Specifies the number of results to return per page. If there
* are fewer
* elements than the specified number, returns all elements.
@@ -752,10 +756,6 @@ class ProjectsConfigsVariablesResourceApi {
*
* `projects/example-project/config/[CONFIG_NAME]/variables/example-variable`.
*
- * [pageToken] - Specifies a page token to use. Set `pageToken` to a
- * `nextPageToken`
- * returned by a previous list request to get the next page of results.
- *
* Completes with a [ListVariablesResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -764,7 +764,7 @@ class ProjectsConfigsVariablesResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListVariablesResponse> list(core.String parent, {core.int pageSize, core.String filter, core.String pageToken}) {
+ async.Future<ListVariablesResponse> list(core.String parent, {core.String pageToken, core.int pageSize, core.String filter}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -775,15 +775,15 @@ class ProjectsConfigsVariablesResourceApi {
if (parent == null) {
throw new core.ArgumentError("Parameter parent 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 = 'v1beta1/' + commons.Escaper.ecapeVariableReserved('$parent') + '/variables';
@@ -1134,14 +1134,14 @@ class ProjectsConfigsWaitersResourceApi {
* `projects/[PROJECT_ID]/configs/[CONFIG_NAME]`
* Value must have pattern "^projects/[^/]+/configs/[^/]+$".
*
- * [pageSize] - Specifies the number of results to return per page. If there
- * are fewer
- * elements than the specified number, returns all elements.
- *
* [pageToken] - Specifies a page token to use. Set `pageToken` to a
* `nextPageToken`
* returned by a previous list request to get the next page of results.
*
+ * [pageSize] - Specifies the number of results to return per page. If there
+ * are fewer
+ * elements than the specified number, returns all elements.
+ *
* Completes with a [ListWaitersResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -1150,7 +1150,7 @@ class ProjectsConfigsWaitersResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListWaitersResponse> list(core.String parent, {core.int pageSize, core.String pageToken}) {
+ async.Future<ListWaitersResponse> list(core.String parent, {core.String pageToken, core.int pageSize}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -1161,12 +1161,12 @@ class ProjectsConfigsWaitersResourceApi {
if (parent == null) {
throw new core.ArgumentError("Parameter parent is required.");
}
- if (pageSize != null) {
- _queryParams["pageSize"] = ["${pageSize}"];
- }
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
+ if (pageSize != null) {
+ _queryParams["pageSize"] = ["${pageSize}"];
+ }
_url = 'v1beta1/' + commons.Escaper.ecapeVariableReserved('$parent') + '/waiters';
« no previous file with comments | « generated/googleapis_beta/lib/pubsub/v1beta2.dart ('k') | generated/googleapis_beta/lib/speech/v1beta1.dart » ('j') | no next file with comments »

Powered by Google App Engine