Index: generated/googleapis/lib/genomics/v1.dart |
diff --git a/generated/googleapis/lib/genomics/v1.dart b/generated/googleapis/lib/genomics/v1.dart |
index 26b75311d14cdf9f5508ef374de90f14aa7a85e4..886cefa03383423853b91449cb312215884040cd 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,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,6 +1826,10 @@ class ReadgroupsetsCoveragebucketsResourceApi { |
* [readGroupSetId] - Required. The ID of the read group set over which |
* coverage is requested. |
* |
+ * [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 |
@@ -1853,10 +1857,6 @@ class ReadgroupsetsCoveragebucketsResourceApi { |
* `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 end, core.String pageToken, core.int pageSize, core.String start, core.String targetBucketWidth, core.String referenceName}) { |
+ 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,6 +1876,9 @@ class ReadgroupsetsCoveragebucketsResourceApi { |
if (readGroupSetId == null) { |
throw new core.ArgumentError("Parameter readGroupSetId is required."); |
} |
+ if (referenceName != null) { |
+ _queryParams["referenceName"] = [referenceName]; |
+ } |
if (end != null) { |
_queryParams["end"] = [end]; |
} |
@@ -1891,9 +1894,6 @@ class ReadgroupsetsCoveragebucketsResourceApi { |
if (targetBucketWidth != null) { |
_queryParams["targetBucketWidth"] = [targetBucketWidth]; |
} |
- if (referenceName != null) { |
- _queryParams["referenceName"] = [referenceName]; |
- } |
_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'; |
@@ -6910,8 +6910,8 @@ class Status { |
/** The status code, which should be an enum value of google.rpc.Code. */ |
core.int code; |
/** |
- * A list of messages that carry the error details. There will be a |
- * common set of message types for APIs to use. |
+ * A list of messages that carry the error details. There is a common set of |
+ * message types for APIs to use. |
* |
* The values for Object must be JSON objects. It can consist of `num`, |
* `String`, `bool` and `null` as well as `Map` and `List` values. |