| Index: generated/googleapis/lib/genomics/v1.dart
|
| diff --git a/generated/googleapis/lib/genomics/v1.dart b/generated/googleapis/lib/genomics/v1.dart
|
| index ca1e59c75feb2ca3b7ba6a88fc30963133492b41..9c7308065077f75ffa533eed436ec7a0bcfbb64e 100644
|
| --- a/generated/googleapis/lib/genomics/v1.dart
|
| +++ b/generated/googleapis/lib/genomics/v1.dart
|
| @@ -1036,6 +1036,8 @@ class DatasetsResourceApi {
|
| *
|
| * Request parameters:
|
| *
|
| + * [projectId] - Required. The Google Cloud project ID to list datasets for.
|
| + *
|
| * [pageToken] - The continuation token, which is used to page through large
|
| * result sets.
|
| * To get the next page of results, set this parameter to the value of
|
| @@ -1045,8 +1047,6 @@ class DatasetsResourceApi {
|
| * unspecified,
|
| * defaults to 50. The maximum value is 1024.
|
| *
|
| - * [projectId] - Required. The Google Cloud project ID to list datasets for.
|
| - *
|
| * Completes with a [ListDatasetsResponse].
|
| *
|
| * Completes with a [commons.ApiRequestError] if the API endpoint returned an
|
| @@ -1055,7 +1055,7 @@ class DatasetsResourceApi {
|
| * If the used [http.Client] completes with an error when making a REST call,
|
| * this method will complete with the same error.
|
| */
|
| - async.Future<ListDatasetsResponse> list({core.String pageToken, core.int pageSize, core.String projectId}) {
|
| + async.Future<ListDatasetsResponse> list({core.String projectId, core.String pageToken, core.int pageSize}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1063,15 +1063,15 @@ class DatasetsResourceApi {
|
| var _downloadOptions = commons.DownloadOptions.Metadata;
|
| var _body = null;
|
|
|
| + if (projectId != null) {
|
| + _queryParams["projectId"] = [projectId];
|
| + }
|
| if (pageToken != null) {
|
| _queryParams["pageToken"] = [pageToken];
|
| }
|
| if (pageSize != null) {
|
| _queryParams["pageSize"] = ["${pageSize}"];
|
| }
|
| - if (projectId != null) {
|
| - _queryParams["projectId"] = [projectId];
|
| - }
|
|
|
| _url = 'v1/datasets';
|
|
|
| @@ -1410,12 +1410,6 @@ class OperationsResourceApi {
|
| * [name] - The name of the operation collection.
|
| * Value must have pattern "^operations$".
|
| *
|
| - * [pageToken] - The standard list page token.
|
| - *
|
| - * [pageSize] - The maximum number of results to return. If unspecified,
|
| - * defaults to
|
| - * 256. The maximum value is 2048.
|
| - *
|
| * [filter] - A string for filtering Operations.
|
| * The following filter fields are supported:
|
| *
|
| @@ -1436,6 +1430,12 @@ class OperationsResourceApi {
|
| * * `projectId = my-project AND labels.color = *`
|
| * * `projectId = my-project AND labels.color = red`
|
| *
|
| + * [pageToken] - The standard list page token.
|
| + *
|
| + * [pageSize] - The maximum number of results to return. If unspecified,
|
| + * defaults to
|
| + * 256. The maximum value is 2048.
|
| + *
|
| * Completes with a [ListOperationsResponse].
|
| *
|
| * Completes with a [commons.ApiRequestError] if the API endpoint returned an
|
| @@ -1444,7 +1444,7 @@ class OperationsResourceApi {
|
| * 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 name, {core.String pageToken, core.int pageSize, core.String filter}) {
|
| + async.Future<ListOperationsResponse> list(core.String name, {core.String filter, core.String pageToken, core.int pageSize}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1455,15 +1455,15 @@ class OperationsResourceApi {
|
| if (name == null) {
|
| throw new core.ArgumentError("Parameter name is required.");
|
| }
|
| + if (filter != null) {
|
| + _queryParams["filter"] = [filter];
|
| + }
|
| if (pageToken != null) {
|
| _queryParams["pageToken"] = [pageToken];
|
| }
|
| if (pageSize != null) {
|
| _queryParams["pageSize"] = ["${pageSize}"];
|
| }
|
| - if (filter != null) {
|
| - _queryParams["filter"] = [filter];
|
| - }
|
|
|
| _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
|
|
|
| @@ -1826,19 +1826,6 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| * [readGroupSetId] - Required. The ID of the read group set over which
|
| * coverage is requested.
|
| *
|
| - * [start] - The start position of the range on the reference, 0-based
|
| - * inclusive. If
|
| - * specified, `referenceName` must also be specified. Defaults to 0.
|
| - *
|
| - * [targetBucketWidth] - The desired width of each reported coverage bucket in
|
| - * base pairs. This
|
| - * will be rounded down to the nearest precomputed bucket width; the value
|
| - * of which is returned as `bucketWidth` in the response. Defaults
|
| - * to infinity (each bucket spans an entire reference sequence) or the length
|
| - * of the target range, if specified. The smallest precomputed
|
| - * `bucketWidth` is currently 2048 base pairs; this is subject to
|
| - * change.
|
| - *
|
| * [referenceName] - The name of the reference to query, within the reference
|
| * set associated
|
| * with this query. Optional.
|
| @@ -1857,6 +1844,19 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| * unspecified,
|
| * defaults to 1024. The maximum value is 2048.
|
| *
|
| + * [start] - The start position of the range on the reference, 0-based
|
| + * inclusive. If
|
| + * specified, `referenceName` must also be specified. Defaults to 0.
|
| + *
|
| + * [targetBucketWidth] - The desired width of each reported coverage bucket in
|
| + * base pairs. This
|
| + * will be rounded down to the nearest precomputed bucket width; the value
|
| + * of which is returned as `bucketWidth` in the response. Defaults
|
| + * to infinity (each bucket spans an entire reference sequence) or the length
|
| + * of the target range, if specified. The smallest precomputed
|
| + * `bucketWidth` is currently 2048 base pairs; this is subject to
|
| + * change.
|
| + *
|
| * Completes with a [ListCoverageBucketsResponse].
|
| *
|
| * Completes with a [commons.ApiRequestError] if the API endpoint returned an
|
| @@ -1865,7 +1865,7 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| * If the used [http.Client] completes with an error when making a REST call,
|
| * this method will complete with the same error.
|
| */
|
| - async.Future<ListCoverageBucketsResponse> list(core.String readGroupSetId, {core.String start, core.String targetBucketWidth, core.String referenceName, core.String end, core.String pageToken, core.int pageSize}) {
|
| + async.Future<ListCoverageBucketsResponse> list(core.String readGroupSetId, {core.String referenceName, core.String end, core.String pageToken, core.int pageSize, core.String start, core.String targetBucketWidth}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1876,12 +1876,6 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| if (readGroupSetId == null) {
|
| throw new core.ArgumentError("Parameter readGroupSetId is required.");
|
| }
|
| - if (start != null) {
|
| - _queryParams["start"] = [start];
|
| - }
|
| - if (targetBucketWidth != null) {
|
| - _queryParams["targetBucketWidth"] = [targetBucketWidth];
|
| - }
|
| if (referenceName != null) {
|
| _queryParams["referenceName"] = [referenceName];
|
| }
|
| @@ -1894,6 +1888,12 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| if (pageSize != null) {
|
| _queryParams["pageSize"] = ["${pageSize}"];
|
| }
|
| + if (start != null) {
|
| + _queryParams["start"] = [start];
|
| + }
|
| + if (targetBucketWidth != null) {
|
| + _queryParams["targetBucketWidth"] = [targetBucketWidth];
|
| + }
|
|
|
| _url = 'v1/readgroupsets/' + commons.Escaper.ecapeVariable('$readGroupSetId') + '/coveragebuckets';
|
|
|
| @@ -2104,6 +2104,12 @@ class ReferencesBasesResourceApi {
|
| *
|
| * [referenceId] - The ID of the reference.
|
| *
|
| + * [start] - The start position (0-based) of this query. Defaults to 0.
|
| + *
|
| + * [end] - The end position (0-based, exclusive) of this query. Defaults to
|
| + * the length
|
| + * of this reference.
|
| + *
|
| * [pageToken] - The continuation token, which is used to page through large
|
| * result sets.
|
| * To get the next page of results, set this parameter to the value of
|
| @@ -2114,12 +2120,6 @@ class ReferencesBasesResourceApi {
|
| * defaults to 200Kbp (kilo base pairs). The maximum value is 10Mbp (mega base
|
| * pairs).
|
| *
|
| - * [start] - The start position (0-based) of this query. Defaults to 0.
|
| - *
|
| - * [end] - The end position (0-based, exclusive) of this query. Defaults to
|
| - * the length
|
| - * of this reference.
|
| - *
|
| * Completes with a [ListBasesResponse].
|
| *
|
| * Completes with a [commons.ApiRequestError] if the API endpoint returned an
|
| @@ -2128,7 +2128,7 @@ class ReferencesBasesResourceApi {
|
| * If the used [http.Client] completes with an error when making a REST call,
|
| * this method will complete with the same error.
|
| */
|
| - async.Future<ListBasesResponse> list(core.String referenceId, {core.String pageToken, core.int pageSize, core.String start, core.String end}) {
|
| + async.Future<ListBasesResponse> list(core.String referenceId, {core.String start, core.String end, core.String pageToken, core.int pageSize}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -2139,18 +2139,18 @@ class ReferencesBasesResourceApi {
|
| if (referenceId == null) {
|
| throw new core.ArgumentError("Parameter referenceId is required.");
|
| }
|
| - if (pageToken != null) {
|
| - _queryParams["pageToken"] = [pageToken];
|
| - }
|
| - if (pageSize != null) {
|
| - _queryParams["pageSize"] = ["${pageSize}"];
|
| - }
|
| if (start != null) {
|
| _queryParams["start"] = [start];
|
| }
|
| if (end != null) {
|
| _queryParams["end"] = [end];
|
| }
|
| + if (pageToken != null) {
|
| + _queryParams["pageToken"] = [pageToken];
|
| + }
|
| + if (pageSize != null) {
|
| + _queryParams["pageSize"] = ["${pageSize}"];
|
| + }
|
|
|
| _url = 'v1/references/' + commons.Escaper.ecapeVariable('$referenceId') + '/bases';
|
|
|
|
|