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

Unified Diff: generated/googleapis/lib/cloudtrace/v2.dart

Issue 3003493002: Api-Roll 53: 2017-08-21 (Closed)
Patch Set: Created 3 years, 4 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
« no previous file with comments | « generated/googleapis/lib/cloudtrace/v1.dart ('k') | generated/googleapis/lib/compute/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/cloudtrace/v2.dart
diff --git a/generated/googleapis/lib/cloudtrace/v2.dart b/generated/googleapis/lib/cloudtrace/v2.dart
index 4678aa8ca2ef2c25986117f0d3b443dc037951e8..ed954cb34c4770aebdee596ed077b6d8997abf12 100644
--- a/generated/googleapis/lib/cloudtrace/v2.dart
+++ b/generated/googleapis/lib/cloudtrace/v2.dart
@@ -118,19 +118,6 @@ class ProjectsTracesResourceApi {
* is `projects/PROJECT_ID`.
* Value must have pattern "^projects/[^/]+$".
*
- * [orderBy] - Optional. A single field used to sort the returned traces.
- * Only the following field names can be used:
- *
- * * `trace_id`: the trace's ID field
- * * `name`: the root span's resource name
- * * `duration`: the difference between the root span's start time and end
- * time
- * * `start`: the start time of the root span
- *
- * Sorting is in ascending order unless `desc` is appended to the sort field
- * name.
- * Example: `"name desc"`).
- *
* [filter] - Opional. Return only traces that match this
* [trace filter](/trace/docs/trace-filters). Example:
*
@@ -154,6 +141,19 @@ class ProjectsTracesResourceApi {
* response indicates that more results might be available, even if fewer than
* the maximum number of results is returned by this request.
*
+ * [orderBy] - Optional. A single field used to sort the returned traces.
+ * Only the following field names can be used:
+ *
+ * * `trace_id`: the trace's ID field
+ * * `name`: the root span's resource name
+ * * `duration`: the difference between the root span's start time and end
+ * time
+ * * `start`: the start time of the root span
+ *
+ * Sorting is in ascending order unless `desc` is appended to the sort field
+ * name.
+ * Example: `"name desc"`).
+ *
* Completes with a [ListTracesResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -162,7 +162,7 @@ class ProjectsTracesResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListTracesResponse> list(core.String parent, {core.String orderBy, core.String filter, core.String endTime, core.String startTime, core.String pageToken, core.int pageSize}) {
+ async.Future<ListTracesResponse> list(core.String parent, {core.String filter, core.String endTime, core.String startTime, core.String pageToken, core.int pageSize, core.String orderBy}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -173,9 +173,6 @@ class ProjectsTracesResourceApi {
if (parent == null) {
throw new core.ArgumentError("Parameter parent is required.");
}
- if (orderBy != null) {
- _queryParams["orderBy"] = [orderBy];
- }
if (filter != null) {
_queryParams["filter"] = [filter];
}
@@ -191,6 +188,9 @@ class ProjectsTracesResourceApi {
if (pageSize != null) {
_queryParams["pageSize"] = ["${pageSize}"];
}
+ if (orderBy != null) {
+ _queryParams["orderBy"] = [orderBy];
+ }
_url = 'v2/' + commons.Escaper.ecapeVariableReserved('$parent') + '/traces';
« no previous file with comments | « generated/googleapis/lib/cloudtrace/v1.dart ('k') | generated/googleapis/lib/compute/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698