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

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

Issue 770773002: Api roll 7: 2014-12-01 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years 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/androidpublisher/v2.dart ('k') | generated/googleapis/lib/books/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 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
« no previous file with comments | « generated/googleapis/lib/androidpublisher/v2.dart ('k') | generated/googleapis/lib/books/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698