Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

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

Issue 2973303002: Api-Roll 51: 2017-07-10 (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 70b2e5ef65c09a3f32d61ae10718ead787545607..b0fe9c95d2924c6bcc7fbbac6ec85ac802827968 100644
--- a/generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart
+++ b/generated/googleapis_beta/lib/runtimeconfig/v1beta1.dart
@@ -749,6 +749,10 @@ class ProjectsConfigsVariablesResourceApi {
* `projects/[PROJECT_ID]/configs/[CONFIG_NAME]`
* Value must have pattern "^projects/[^/]+/configs/[^/]+$".
*
+ * [filter] - Filters variables by matching the specified filter. For example:
+ *
+ * `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.
@@ -762,10 +766,6 @@ class ProjectsConfigsVariablesResourceApi {
* are fewer
* elements than the specified number, returns all elements.
*
- * [filter] - Filters variables by matching the specified filter. For example:
- *
- * `projects/example-project/config/[CONFIG_NAME]/variables/example-variable`.
- *
* Completes with a [ListVariablesResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -774,7 +774,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.String pageToken, core.bool returnValues, core.int pageSize, core.String filter}) {
+ async.Future<ListVariablesResponse> list(core.String parent, {core.String filter, core.String pageToken, core.bool returnValues, core.int pageSize}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -785,6 +785,9 @@ class ProjectsConfigsVariablesResourceApi {
if (parent == null) {
throw new core.ArgumentError("Parameter parent is required.");
}
+ if (filter != null) {
+ _queryParams["filter"] = [filter];
+ }
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
@@ -794,9 +797,6 @@ class ProjectsConfigsVariablesResourceApi {
if (pageSize != null) {
_queryParams["pageSize"] = ["${pageSize}"];
}
- if (filter != null) {
- _queryParams["filter"] = [filter];
- }
_url = 'v1beta1/' + commons.Escaper.ecapeVariableReserved('$parent') + '/variables';
@@ -1641,7 +1641,6 @@ class Operation {
class Policy {
/**
* Associates a list of `members` to a `role`.
- * Multiple `bindings` must not be specified for the same `role`.
* `bindings` with no members will result in an error.
*/
core.List<Binding> bindings;
« 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
This is Rietveld 408576698