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

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

Issue 733093002: Api roll 6: 2014-11-17 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 1 month 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/admin/reports_v1.dart ('k') | generated/googleapis/lib/fitness/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 e540926c2545f3ad56329f81e2f35a7793a43908..c932ee4855f23d9afcc3c0d993c7043b85f6b666 100644
--- a/generated/googleapis/lib/bigquery/v2.dart
+++ b/generated/googleapis/lib/bigquery/v2.dart
@@ -1527,10 +1527,14 @@ class DatasetList {
/** Not documented yet. */
class DatasetReference {
- /** [Required] A unique ID for this dataset, without the project name. */
+ /**
+ * [Required] A unique ID for this dataset, without the project name. The ID
+ * must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
+ * The maximum length is 1,024 characters.
+ */
core.String datasetId;
- /** [Optional] The ID of the container project. */
+ /** [Optional] The ID of the project containing this dataset. */
core.String projectId;
@@ -1656,6 +1660,9 @@ class GetQueryResultsResponse {
*/
TableSchema schema;
+ /** The total number of bytes processed for this query. */
+ core.String totalBytesProcessed;
+
/**
* The total number of rows in the complete query result set, which can be
* more than the number of rows in this single page of results. Present only
@@ -1691,6 +1698,9 @@ class GetQueryResultsResponse {
if (_json.containsKey("schema")) {
schema = new TableSchema.fromJson(_json["schema"]);
}
+ if (_json.containsKey("totalBytesProcessed")) {
+ totalBytesProcessed = _json["totalBytesProcessed"];
+ }
if (_json.containsKey("totalRows")) {
totalRows = _json["totalRows"];
}
@@ -1722,6 +1732,9 @@ class GetQueryResultsResponse {
if (schema != null) {
_json["schema"] = (schema).toJson();
}
+ if (totalBytesProcessed != null) {
+ _json["totalBytesProcessed"] = totalBytesProcessed;
+ }
if (totalRows != null) {
_json["totalRows"] = totalRows;
}
@@ -2686,7 +2699,7 @@ class JobReference {
*/
core.String jobId;
- /** [Required] Project ID being billed for the job. */
+ /** [Required] The ID of the project containing this job. */
core.String projectId;
@@ -3962,13 +3975,17 @@ class TableList {
/** Not documented yet. */
class TableReference {
- /** [Required] ID of the dataset containing the table. */
+ /** [Required] The ID of the dataset containing this table. */
core.String datasetId;
- /** [Required] ID of the project billed for storage of the table. */
+ /** [Required] The ID of the project containing this table. */
core.String projectId;
- /** [Required] ID of the table. */
+ /**
+ * [Required] The ID of the table. The ID must contain only letters (a-z,
+ * A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024
+ * characters.
+ */
core.String tableId;
« no previous file with comments | « generated/googleapis/lib/admin/reports_v1.dart ('k') | generated/googleapis/lib/fitness/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698