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; |
} |