| Index: generated/googleapis/lib/genomics/v1.dart
|
| diff --git a/generated/googleapis/lib/genomics/v1.dart b/generated/googleapis/lib/genomics/v1.dart
|
| index b4d2809f5b7431ebd4c76e8f780275d8fca49c09..ca1e59c75feb2ca3b7ba6a88fc30963133492b41 100644
|
| --- a/generated/googleapis/lib/genomics/v1.dart
|
| +++ b/generated/googleapis/lib/genomics/v1.dart
|
| @@ -1036,17 +1036,17 @@ class DatasetsResourceApi {
|
| *
|
| * Request parameters:
|
| *
|
| + * [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
|
| + * `nextPageToken` from the previous response.
|
| + *
|
| * [pageSize] - The maximum number of results to return in a single page. If
|
| * unspecified,
|
| * defaults to 50. The maximum value is 1024.
|
| *
|
| * [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
|
| - * `nextPageToken` from the previous response.
|
| - *
|
| * 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.int pageSize, core.String projectId, core.String pageToken}) {
|
| + async.Future<ListDatasetsResponse> list({core.String pageToken, core.int pageSize, core.String projectId}) {
|
| 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 (pageToken != null) {
|
| + _queryParams["pageToken"] = [pageToken];
|
| + }
|
| if (pageSize != null) {
|
| _queryParams["pageSize"] = ["${pageSize}"];
|
| }
|
| if (projectId != null) {
|
| _queryParams["projectId"] = [projectId];
|
| }
|
| - if (pageToken != null) {
|
| - _queryParams["pageToken"] = [pageToken];
|
| - }
|
|
|
| _url = 'v1/datasets';
|
|
|
| @@ -1410,6 +1410,8 @@ 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.
|
| @@ -1434,8 +1436,6 @@ class OperationsResourceApi {
|
| * * `projectId = my-project AND labels.color = *`
|
| * * `projectId = my-project AND labels.color = red`
|
| *
|
| - * [pageToken] - The standard list page token.
|
| - *
|
| * 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.int pageSize, core.String filter, core.String pageToken}) {
|
| + async.Future<ListOperationsResponse> list(core.String name, {core.String pageToken, core.int pageSize, core.String filter}) {
|
| 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 (pageToken != null) {
|
| + _queryParams["pageToken"] = [pageToken];
|
| + }
|
| if (pageSize != null) {
|
| _queryParams["pageSize"] = ["${pageSize}"];
|
| }
|
| if (filter != null) {
|
| _queryParams["filter"] = [filter];
|
| }
|
| - if (pageToken != null) {
|
| - _queryParams["pageToken"] = [pageToken];
|
| - }
|
|
|
| _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
|
|
|
| @@ -1826,10 +1826,6 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| * [readGroupSetId] - Required. The ID of the read group set over which
|
| * coverage is requested.
|
| *
|
| - * [pageSize] - The maximum number of results to return in a single page. If
|
| - * 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.
|
| @@ -1857,6 +1853,10 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| * To get the next page of results, set this parameter to the value of
|
| * `nextPageToken` from the previous response.
|
| *
|
| + * [pageSize] - The maximum number of results to return in a single page. If
|
| + * unspecified,
|
| + * defaults to 1024. The maximum value is 2048.
|
| + *
|
| * 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.int pageSize, core.String start, core.String targetBucketWidth, core.String referenceName, core.String end, core.String pageToken}) {
|
| + 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}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -1876,9 +1876,6 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| if (readGroupSetId == null) {
|
| throw new core.ArgumentError("Parameter readGroupSetId is required.");
|
| }
|
| - if (pageSize != null) {
|
| - _queryParams["pageSize"] = ["${pageSize}"];
|
| - }
|
| if (start != null) {
|
| _queryParams["start"] = [start];
|
| }
|
| @@ -1894,6 +1891,9 @@ class ReadgroupsetsCoveragebucketsResourceApi {
|
| if (pageToken != null) {
|
| _queryParams["pageToken"] = [pageToken];
|
| }
|
| + if (pageSize != null) {
|
| + _queryParams["pageSize"] = ["${pageSize}"];
|
| + }
|
|
|
| _url = 'v1/readgroupsets/' + commons.Escaper.ecapeVariable('$readGroupSetId') + '/coveragebuckets';
|
|
|
| @@ -2104,6 +2104,11 @@ class ReferencesBasesResourceApi {
|
| *
|
| * [referenceId] - The ID of the 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
|
| + * `nextPageToken` from the previous response.
|
| + *
|
| * [pageSize] - The maximum number of bases to return in a single page. If
|
| * unspecified,
|
| * defaults to 200Kbp (kilo base pairs). The maximum value is 10Mbp (mega base
|
| @@ -2115,11 +2120,6 @@ class ReferencesBasesResourceApi {
|
| * 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
|
| - * `nextPageToken` from the previous response.
|
| - *
|
| * 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.int pageSize, core.String start, core.String end, core.String pageToken}) {
|
| + async.Future<ListBasesResponse> list(core.String referenceId, {core.String pageToken, core.int pageSize, core.String start, core.String end}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -2139,6 +2139,9 @@ 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}"];
|
| }
|
| @@ -2148,9 +2151,6 @@ class ReferencesBasesResourceApi {
|
| if (end != null) {
|
| _queryParams["end"] = [end];
|
| }
|
| - if (pageToken != null) {
|
| - _queryParams["pageToken"] = [pageToken];
|
| - }
|
|
|
| _url = 'v1/references/' + commons.Escaper.ecapeVariable('$referenceId') + '/bases';
|
|
|
|
|