Index: generated/googleapis/lib/genomics/v1.dart |
diff --git a/generated/googleapis/lib/genomics/v1.dart b/generated/googleapis/lib/genomics/v1.dart |
index 93cea1e0d621715290d10d357c915ed245dc2b42..20900ef9b01cbbc3e6a445ca79c5bd5a0d22a8b1 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,6 +1410,12 @@ class OperationsResourceApi { |
* [name] - The name of the operation's parent resource. |
* 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: |
* |
@@ -1430,12 +1436,6 @@ 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 filter, core.String pageToken, core.int pageSize}) { |
+ 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 (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. |
* |
- * [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. |
- * |
* [end] - The end position of the range on the reference, 0-based exclusive. |
* If |
* specified, `referenceName` must also be specified. If unset or 0, defaults |
@@ -1857,6 +1844,19 @@ class ReadgroupsetsCoveragebucketsResourceApi { |
* 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. |
+ * |
* 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 targetBucketWidth, core.String referenceName, core.String end, core.String pageToken, core.int pageSize, core.String start}) { |
+ async.Future<ListCoverageBucketsResponse> list(core.String readGroupSetId, {core.String end, core.String pageToken, core.int pageSize, core.String start, core.String targetBucketWidth, core.String referenceName}) { |
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 (targetBucketWidth != null) { |
- _queryParams["targetBucketWidth"] = [targetBucketWidth]; |
- } |
- if (referenceName != null) { |
- _queryParams["referenceName"] = [referenceName]; |
- } |
if (end != null) { |
_queryParams["end"] = [end]; |
} |
@@ -1894,6 +1888,12 @@ class ReadgroupsetsCoveragebucketsResourceApi { |
if (start != null) { |
_queryParams["start"] = [start]; |
} |
+ if (targetBucketWidth != null) { |
+ _queryParams["targetBucketWidth"] = [targetBucketWidth]; |
+ } |
+ if (referenceName != null) { |
+ _queryParams["referenceName"] = [referenceName]; |
+ } |
_url = 'v1/readgroupsets/' + commons.Escaper.ecapeVariable('$readGroupSetId') + '/coveragebuckets'; |
@@ -2104,6 +2104,13 @@ class ReferencesBasesResourceApi { |
* |
* [referenceId] - The ID of the reference. |
* |
+ * [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 |
+ * 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. |
@@ -2113,13 +2120,6 @@ class ReferencesBasesResourceApi { |
* 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 |
- * pairs). |
- * |
- * [start] - The start position (0-based) of this query. Defaults to 0. |
- * |
* 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 end, core.String pageToken, core.int pageSize, core.String start}) { |
+ async.Future<ListBasesResponse> list(core.String referenceId, {core.int pageSize, core.String start, core.String end, core.String pageToken}) { |
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 (end != null) { |
- _queryParams["end"] = [end]; |
- } |
- 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]; |
+ } |
_url = 'v1/references/' + commons.Escaper.ecapeVariable('$referenceId') + '/bases'; |