Skip to content

Commit

Permalink
feat(bigquery): update the API
Browse files Browse the repository at this point in the history
#### bigquery:v2

The following keys were added:
- schemas.Dataset.properties.maxTimeTravelHours.description
- schemas.Dataset.properties.maxTimeTravelHours.format
- schemas.Dataset.properties.maxTimeTravelHours.type
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 1, 2022
1 parent a1efc45 commit 00f3816
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
7 changes: 6 additions & 1 deletion discovery/bigquery-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@
}
}
},
"revision": "20220313",
"revision": "20220322",
"rootUrl": "https://bigquery.googleapis.com/",
"schemas": {
"AggregateClassificationMetrics": {
Expand Down Expand Up @@ -2811,6 +2811,11 @@
"description": "The geographic location where the dataset should reside. The default value is US. See details at https://cloud.google.com/bigquery/docs/locations.",
"type": "string"
},
"maxTimeTravelHours": {
"description": "[Optional] Number of hours for the max time travel for all tables in the dataset.",
"format": "int64",
"type": "string"
},
"satisfiesPZS": {
"description": "[Output-only] Reserved for future use.",
"type": "boolean"
Expand Down
11 changes: 11 additions & 0 deletions src/apis/bigquery/v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,10 @@ export namespace bigquery_v2 {
* The geographic location where the dataset should reside. The default value is US. See details at https://cloud.google.com/bigquery/docs/locations.
*/
location?: string | null;
/**
* [Optional] Number of hours for the max time travel for all tables in the dataset.
*/
maxTimeTravelHours?: string | null;
/**
* [Output-only] Reserved for future use.
*/
Expand Down Expand Up @@ -3923,6 +3927,7 @@ export namespace bigquery_v2 {
* // "labels": {},
* // "lastModifiedTime": "my_lastModifiedTime",
* // "location": "my_location",
* // "maxTimeTravelHours": "my_maxTimeTravelHours",
* // "satisfiesPZS": false,
* // "selfLink": "my_selfLink",
* // "tags": []
Expand Down Expand Up @@ -4071,6 +4076,7 @@ export namespace bigquery_v2 {
* // "labels": {},
* // "lastModifiedTime": "my_lastModifiedTime",
* // "location": "my_location",
* // "maxTimeTravelHours": "my_maxTimeTravelHours",
* // "satisfiesPZS": false,
* // "selfLink": "my_selfLink",
* // "tags": []
Expand All @@ -4097,6 +4103,7 @@ export namespace bigquery_v2 {
* // "labels": {},
* // "lastModifiedTime": "my_lastModifiedTime",
* // "location": "my_location",
* // "maxTimeTravelHours": "my_maxTimeTravelHours",
* // "satisfiesPZS": false,
* // "selfLink": "my_selfLink",
* // "tags": []
Expand Down Expand Up @@ -4389,6 +4396,7 @@ export namespace bigquery_v2 {
* // "labels": {},
* // "lastModifiedTime": "my_lastModifiedTime",
* // "location": "my_location",
* // "maxTimeTravelHours": "my_maxTimeTravelHours",
* // "satisfiesPZS": false,
* // "selfLink": "my_selfLink",
* // "tags": []
Expand All @@ -4415,6 +4423,7 @@ export namespace bigquery_v2 {
* // "labels": {},
* // "lastModifiedTime": "my_lastModifiedTime",
* // "location": "my_location",
* // "maxTimeTravelHours": "my_maxTimeTravelHours",
* // "satisfiesPZS": false,
* // "selfLink": "my_selfLink",
* // "tags": []
Expand Down Expand Up @@ -4565,6 +4574,7 @@ export namespace bigquery_v2 {
* // "labels": {},
* // "lastModifiedTime": "my_lastModifiedTime",
* // "location": "my_location",
* // "maxTimeTravelHours": "my_maxTimeTravelHours",
* // "satisfiesPZS": false,
* // "selfLink": "my_selfLink",
* // "tags": []
Expand All @@ -4591,6 +4601,7 @@ export namespace bigquery_v2 {
* // "labels": {},
* // "lastModifiedTime": "my_lastModifiedTime",
* // "location": "my_location",
* // "maxTimeTravelHours": "my_maxTimeTravelHours",
* // "satisfiesPZS": false,
* // "selfLink": "my_selfLink",
* // "tags": []
Expand Down

0 comments on commit 00f3816

Please sign in to comment.