Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: generated/googleapis/lib/bigquery/v2.dart

Issue 2973303002: Api-Roll 51: 2017-07-10 (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/appengine/v1.dart ('k') | generated/googleapis/lib/bigquerydatatransfer/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/bigquery/v2.dart
diff --git a/generated/googleapis/lib/bigquery/v2.dart b/generated/googleapis/lib/bigquery/v2.dart
index 9c92f2238c00d23a8387b14d9625d96a96bbcde0..f879413f7f973172e62af818142d917913b1f75b 100644
--- a/generated/googleapis/lib/bigquery/v2.dart
+++ b/generated/googleapis/lib/bigquery/v2.dart
@@ -5050,6 +5050,8 @@ class TableListTables {
core.Map<core.String, core.String> labels;
/** A reference uniquely identifying the table. */
TableReference tableReference;
+ /** [Experimental] The time-based partitioning for this table. */
+ TimePartitioning timePartitioning;
/** The type of table. Possible values are: TABLE, VIEW. */
core.String type;
/** Additional details for a view. */
@@ -5073,6 +5075,9 @@ class TableListTables {
if (_json.containsKey("tableReference")) {
tableReference = new TableReference.fromJson(_json["tableReference"]);
}
+ if (_json.containsKey("timePartitioning")) {
+ timePartitioning = new TimePartitioning.fromJson(_json["timePartitioning"]);
+ }
if (_json.containsKey("type")) {
type = _json["type"];
}
@@ -5098,6 +5103,9 @@ class TableListTables {
if (tableReference != null) {
_json["tableReference"] = (tableReference).toJson();
}
+ if (timePartitioning != null) {
+ _json["timePartitioning"] = (timePartitioning).toJson();
+ }
if (type != null) {
_json["type"] = type;
}
« no previous file with comments | « generated/googleapis/lib/appengine/v1.dart ('k') | generated/googleapis/lib/bigquerydatatransfer/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698