Index: generated/googleapis/lib/bigquery/v2.dart |
diff --git a/generated/googleapis/lib/bigquery/v2.dart b/generated/googleapis/lib/bigquery/v2.dart |
index c932ee4855f23d9afcc3c0d993c7043b85f6b666..bafca410af2ce14d075433542302045e4121a5bd 100644 |
--- a/generated/googleapis/lib/bigquery/v2.dart |
+++ b/generated/googleapis/lib/bigquery/v2.dart |
@@ -2741,6 +2741,9 @@ class JobStatistics { |
*/ |
core.String endTime; |
+ /** [Output-only] Statistics for an extract job. */ |
+ JobStatistics4 extract; |
+ |
/** [Output-only] Statistics for a load job. */ |
JobStatistics3 load; |
@@ -2770,6 +2773,9 @@ class JobStatistics { |
if (_json.containsKey("endTime")) { |
endTime = _json["endTime"]; |
} |
+ if (_json.containsKey("extract")) { |
+ extract = new JobStatistics4.fromJson(_json["extract"]); |
+ } |
if (_json.containsKey("load")) { |
load = new JobStatistics3.fromJson(_json["load"]); |
} |
@@ -2792,6 +2798,9 @@ class JobStatistics { |
if (endTime != null) { |
_json["endTime"] = endTime; |
} |
+ if (extract != null) { |
+ _json["extract"] = (extract).toJson(); |
+ } |
if (load != null) { |
_json["load"] = (load).toJson(); |
} |
@@ -2902,6 +2911,34 @@ class JobStatistics3 { |
/** Not documented yet. */ |
+class JobStatistics4 { |
+ /** |
+ * [Output-only] Number of files per destination URI or URI pattern specified |
+ * in the extract configuration. These values will be in the same order as the |
+ * URIs specified in the 'destinationUris' field. |
+ */ |
+ core.List<core.String> destinationUriFileCounts; |
+ |
+ |
+ JobStatistics4(); |
+ |
+ JobStatistics4.fromJson(core.Map _json) { |
+ if (_json.containsKey("destinationUriFileCounts")) { |
+ destinationUriFileCounts = _json["destinationUriFileCounts"]; |
+ } |
+ } |
+ |
+ core.Map toJson() { |
+ var _json = new core.Map(); |
+ if (destinationUriFileCounts != null) { |
+ _json["destinationUriFileCounts"] = destinationUriFileCounts; |
+ } |
+ return _json; |
+ } |
+} |
+ |
+ |
+/** Not documented yet. */ |
class JobStatus { |
/** |
* [Output-only] Final error result of the job. If present, indicates that the |