Skip to content

Commit

Permalink
fix(analyticsdata): update the API
Browse files Browse the repository at this point in the history
#### analyticsdata:v1alpha
The following keys were changed:
- schemas.RunReportRequest.properties.limit.description
- schemas.RunReportRequest.properties.offset.description
- schemas.RunReportResponse.properties.rowCount.description
  • Loading branch information
yoshi-automation authored and bcoe committed Nov 12, 2020
1 parent 5082f7d commit d85b005
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions discovery/analyticsdata-v1alpha.json
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
}
}
},
"revision": "20201107",
"revision": "20201110",
"rootUrl": "https://analyticsdata.googleapis.com/",
"schemas": {
"BatchRunPivotReportsRequest": {
Expand Down Expand Up @@ -1381,7 +1381,7 @@
"type": "boolean"
},
"limit": {
"description": "The number of rows to return. If unspecified, 10 rows are returned. If -1, all rows are returned.",
"description": "The number of rows to return. If unspecified, 10 rows are returned. If -1, all rows are returned. To learn more about this pagination parameter, see [Pagination](basics#pagination).",
"format": "int64",
"type": "string"
},
Expand Down Expand Up @@ -1418,7 +1418,7 @@
"type": "array"
},
"offset": {
"description": "The row count of the start row. The first row is counted as row 0.",
"description": "The row count of the start row. The first row is counted as row 0. To learn more about this pagination parameter, see [Pagination](basics#pagination).",
"format": "int64",
"type": "string"
},
Expand Down Expand Up @@ -1477,7 +1477,7 @@
"description": "This Analytics Property's quota state including this request."
},
"rowCount": {
"description": "The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain row_count = 175 but only 50 rows.",
"description": "The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain row_count = 175 but only 50 rows. To learn more about this pagination parameter, see [Pagination](basics#pagination).",
"format": "int32",
"type": "integer"
},
Expand Down
6 changes: 3 additions & 3 deletions src/apis/analyticsdata/v1alpha.ts
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ export namespace analyticsdata_v1alpha {
*/
keepEmptyRows?: boolean | null;
/**
* The number of rows to return. If unspecified, 10 rows are returned. If -1, all rows are returned.
* The number of rows to return. If unspecified, 10 rows are returned. If -1, all rows are returned. To learn more about this pagination parameter, see [Pagination](basics#pagination).
*/
limit?: string | null;
/**
Expand All @@ -919,7 +919,7 @@ export namespace analyticsdata_v1alpha {
*/
metrics?: Schema$Metric[];
/**
* The row count of the start row. The first row is counted as row 0.
* The row count of the start row. The first row is counted as row 0. To learn more about this pagination parameter, see [Pagination](basics#pagination).
*/
offset?: string | null;
/**
Expand Down Expand Up @@ -960,7 +960,7 @@ export namespace analyticsdata_v1alpha {
*/
propertyQuota?: Schema$PropertyQuota;
/**
* The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain row_count = 175 but only 50 rows.
* The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain row_count = 175 but only 50 rows. To learn more about this pagination parameter, see [Pagination](basics#pagination).
*/
rowCount?: number | null;
/**
Expand Down

0 comments on commit d85b005

Please sign in to comment.