mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
chore(json-up): fetch latest json
api-list.yaml was updated manually to push out APIs which are just empty or plain incompatible with what we are doing
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"kind": "discovery#restDescription",
|
||||
"etag": "\"bRFOOrZKfO9LweMbPqu0kcu6De8/KhBY9BAZ9f1xpe68E42latOsq24\"",
|
||||
"etag": "\"bRFOOrZKfO9LweMbPqu0kcu6De8/yOlQD0XV-M95o1thz-ymKpLxG7I\"",
|
||||
"discoveryVersion": "v1",
|
||||
"id": "bigquery:v2",
|
||||
"name": "bigquery",
|
||||
"version": "v2",
|
||||
"revision": "20160127",
|
||||
"revision": "20160222",
|
||||
"title": "BigQuery API",
|
||||
"description": "A data platform for customers to create, manage, share and query data.",
|
||||
"ownerDomain": "google.com",
|
||||
@@ -400,9 +400,13 @@
|
||||
"id": "ExternalDataConfiguration",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"autodetect": {
|
||||
"type": "boolean",
|
||||
"description": "[Experimental] Try to detect schema and format options automatically. Any option specified explicitly will be honored."
|
||||
},
|
||||
"compression": {
|
||||
"type": "string",
|
||||
"description": "[Optional] The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Datastore backups."
|
||||
"description": "[Optional] The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This setting is ignored for Google Cloud Datastore backups and Avro."
|
||||
},
|
||||
"csvOptions": {
|
||||
"$ref": "CsvOptions",
|
||||
@@ -410,20 +414,20 @@
|
||||
},
|
||||
"ignoreUnknownValues": {
|
||||
"type": "boolean",
|
||||
"description": "[Optional] Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don't match any column names Google Cloud Datastore backups: This setting is ignored."
|
||||
"description": "[Optional] Indicates if BigQuery should allow extra values that are not represented in the table schema. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. The default value is false. The sourceFormat property determines what BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values that don't match any column names Google Cloud Datastore backups: This setting is ignored. Avro: This setting is ignored."
|
||||
},
|
||||
"maxBadRecords": {
|
||||
"type": "integer",
|
||||
"description": "[Optional] The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Datastore backups.",
|
||||
"description": "[Optional] The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceeds this value, an invalid error is returned in the job result. The default value is 0, which requires that all records are valid. This setting is ignored for Google Cloud Datastore backups and Avro.",
|
||||
"format": "int32"
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "TableSchema",
|
||||
"description": "[Optional] The schema for the data. Schema is required for CSV and JSON formats. Schema is disallowed for Google Cloud Datastore backups."
|
||||
"description": "[Optional] The schema for the data. Schema is required for CSV and JSON formats. Schema is disallowed for Google Cloud Datastore backups and Avro."
|
||||
},
|
||||
"sourceFormat": {
|
||||
"type": "string",
|
||||
"description": "[Required] The data format. For CSV files, specify \"CSV\". For newline-delimited JSON, specify \"NEWLINE_DELIMITED_JSON\". For Google Cloud Datastore backups, specify \"DATASTORE_BACKUP\"."
|
||||
"description": "[Required] The data format. For CSV files, specify \"CSV\". For newline-delimited JSON, specify \"NEWLINE_DELIMITED_JSON\". For Google Cloud Datastore backups, specify \"DATASTORE_BACKUP\". For Avro files, specify \"AVRO\"."
|
||||
},
|
||||
"sourceUris": {
|
||||
"type": "array",
|
||||
@@ -749,6 +753,10 @@
|
||||
"$ref": "ExternalDataConfiguration"
|
||||
}
|
||||
},
|
||||
"useLegacySql": {
|
||||
"type": "boolean",
|
||||
"description": "[Experimental] Specifies whether to use BigQuery's legacy SQL dialect for this query. The default value is true. If set to false, the query will use BigQuery's updated SQL dialect with improved standards compliance. When using BigQuery's updated SQL, the values of allowLargeResults and flattenResults are ignored. Queries with useLegacySql set to false will be run as if allowLargeResults is true and flattenResults is false."
|
||||
},
|
||||
"useQueryCache": {
|
||||
"type": "boolean",
|
||||
"description": "[Optional] Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed whenever tables in the query are modified. Moreover, the query cache is only available when a query does not have a destination table specified. The default value is true.",
|
||||
@@ -943,6 +951,13 @@
|
||||
"$ref": "ExplainQueryStage"
|
||||
}
|
||||
},
|
||||
"referencedTables": {
|
||||
"type": "array",
|
||||
"description": "[Output-only, Experimental] Referenced tables for the job. Queries that reference more than 50 tables will not have a complete list.",
|
||||
"items": {
|
||||
"$ref": "TableReference"
|
||||
}
|
||||
},
|
||||
"totalBytesBilled": {
|
||||
"type": "string",
|
||||
"description": "[Output-only] Total bytes billed for the job.",
|
||||
@@ -1133,6 +1148,10 @@
|
||||
"description": "[Optional] How long to wait for the query to complete, in milliseconds, before the request times out and returns. Note that this is only a timeout for the request, not the query. If the query takes longer to run than the timeout value, the call returns without any results and with the 'jobComplete' flag set to false. You can call GetQueryResults() to wait for the query to complete and read the results. The default value is 10000 milliseconds (10 seconds).",
|
||||
"format": "uint32"
|
||||
},
|
||||
"useLegacySql": {
|
||||
"type": "boolean",
|
||||
"description": "[Experimental] Specifies whether to use BigQuery's legacy SQL dialect for this query. The default value is true. If set to false, the query will use BigQuery's updated SQL dialect with improved standards compliance. When using BigQuery's updated SQL, the values of allowLargeResults and flattenResults are ignored. Queries with useLegacySql set to false will be run as if allowLargeResults is true and flattenResults is false."
|
||||
},
|
||||
"useQueryCache": {
|
||||
"type": "boolean",
|
||||
"description": "[Optional] Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed whenever tables in the query are modified. The default value is true.",
|
||||
@@ -1345,7 +1364,7 @@
|
||||
},
|
||||
"templateSuffix": {
|
||||
"type": "string",
|
||||
"description": "[Optional] If specified, treats the destination table as a base template, and inserts the rows into an instance table named \"{destination}{templateSuffix}\". BigQuery will manage creation of the instance table, using the schema of the base template table. See https://cloud.google.com/bigquery/streaming-data-into-bigquery#template-tables for considerations when working with templates tables."
|
||||
"description": "[Experimental] If specified, treats the destination table as a base template, and inserts the rows into an instance table named \"{destination}{templateSuffix}\". BigQuery will manage creation of the instance table, using the schema of the base template table. See https://cloud.google.com/bigquery/streaming-data-into-bigquery#template-tables for considerations when working with templates tables."
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user