| Index: generated/googleapis/lib/coordinate/v1.dart
|
| diff --git a/generated/googleapis/lib/coordinate/v1.dart b/generated/googleapis/lib/coordinate/v1.dart
|
| index 11e46c5a00229f9976a01b73e8ed7ca76a046a85..91f14dd8f39b69aa9bd65c58dd09e4ef39d3abbf 100644
|
| --- a/generated/googleapis/lib/coordinate/v1.dart
|
| +++ b/generated/googleapis/lib/coordinate/v1.dart
|
| @@ -245,6 +245,8 @@ class JobsResourceApi {
|
| * [minModifiedTimestampMs] - Minimum time a job was modified in milliseconds
|
| * since epoch.
|
| *
|
| + * [omitJobChanges] - Whether to omit detail job history information.
|
| + *
|
| * [pageToken] - Continuation token
|
| *
|
| * Completes with a [JobListResponse].
|
| @@ -255,7 +257,7 @@ class JobsResourceApi {
|
| * If the used [http.Client] completes with an error when making a REST call,
|
| * this method will complete with the same error.
|
| */
|
| - async.Future<JobListResponse> list(core.String teamId, {core.int maxResults, core.String minModifiedTimestampMs, core.String pageToken}) {
|
| + async.Future<JobListResponse> list(core.String teamId, {core.int maxResults, core.String minModifiedTimestampMs, core.bool omitJobChanges, core.String pageToken}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -272,6 +274,9 @@ class JobsResourceApi {
|
| if (minModifiedTimestampMs != null) {
|
| _queryParams["minModifiedTimestampMs"] = [minModifiedTimestampMs];
|
| }
|
| + if (omitJobChanges != null) {
|
| + _queryParams["omitJobChanges"] = ["${omitJobChanges}"];
|
| + }
|
| if (pageToken != null) {
|
| _queryParams["pageToken"] = [pageToken];
|
| }
|
|
|