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

Side by Side Diff: discovery/googleapis/bigquery__v2.json

Issue 1797933002: Api-roll 33: 2016-03-14 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Added resources/*/CHANGELOG.md, addresssed comments Created 4 years, 9 months 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 unified diff | Download patch
« no previous file with comments | « discovery/googleapis/appstate__v1.json ('k') | discovery/googleapis/blogger__v3.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "auth": { 2 "auth": {
3 "oauth2": { 3 "oauth2": {
4 "scopes": { 4 "scopes": {
5 "https://www.googleapis.com/auth/bigquery": { 5 "https://www.googleapis.com/auth/bigquery": {
6 "description": "View and manage your data in Google BigQuery " 6 "description": "View and manage your data in Google BigQuery "
7 }, 7 },
8 "https://www.googleapis.com/auth/bigquery.insertdata": { 8 "https://www.googleapis.com/auth/bigquery.insertdata": {
9 "description": "Insert data into Google BigQuery" 9 "description": "Insert data into Google BigQuery"
10 }, 10 },
(...skipping 14 matching lines...) Expand all
25 } 25 }
26 } 26 }
27 } 27 }
28 }, 28 },
29 "basePath": "/bigquery/v2/", 29 "basePath": "/bigquery/v2/",
30 "baseUrl": "https://www.googleapis.com/bigquery/v2/", 30 "baseUrl": "https://www.googleapis.com/bigquery/v2/",
31 "batchPath": "batch", 31 "batchPath": "batch",
32 "description": "A data platform for customers to create, manage, share and q uery data.", 32 "description": "A data platform for customers to create, manage, share and q uery data.",
33 "discoveryVersion": "v1", 33 "discoveryVersion": "v1",
34 "documentationLink": "https://cloud.google.com/bigquery/", 34 "documentationLink": "https://cloud.google.com/bigquery/",
35 "etag": "\"bRFOOrZKfO9LweMbPqu0kcu6De8/KhBY9BAZ9f1xpe68E42latOsq24\"", 35 "etag": "\"bRFOOrZKfO9LweMbPqu0kcu6De8/eSPju3c2Pyt6CcnQAdTDIxZaY3k\"",
36 "icons": { 36 "icons": {
37 "x16": "https://www.google.com/images/icons/product/search-16.gif", 37 "x16": "https://www.google.com/images/icons/product/search-16.gif",
38 "x32": "https://www.google.com/images/icons/product/search-32.gif" 38 "x32": "https://www.google.com/images/icons/product/search-32.gif"
39 }, 39 },
40 "id": "bigquery:v2", 40 "id": "bigquery:v2",
41 "kind": "discovery#restDescription", 41 "kind": "discovery#restDescription",
42 "name": "bigquery", 42 "name": "bigquery",
43 "ownerDomain": "google.com", 43 "ownerDomain": "google.com",
44 "ownerName": "Google", 44 "ownerName": "Google",
45 "parameters": { 45 "parameters": {
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 "$ref": "Table" 926 "$ref": "Table"
927 }, 927 },
928 "scopes": [ 928 "scopes": [
929 "https://www.googleapis.com/auth/bigquery", 929 "https://www.googleapis.com/auth/bigquery",
930 "https://www.googleapis.com/auth/cloud-platform" 930 "https://www.googleapis.com/auth/cloud-platform"
931 ] 931 ]
932 } 932 }
933 } 933 }
934 } 934 }
935 }, 935 },
936 "revision": "20160127", 936 "revision": "20160304",
937 "rootUrl": "https://www.googleapis.com/", 937 "rootUrl": "https://www.googleapis.com/",
938 "schemas": { 938 "schemas": {
939 "BigtableColumn": {
940 "id": "BigtableColumn",
941 "properties": {
942 "encoding": {
943 "description": "[Optional] The encoding of the values when t he type is not STRING. Acceptable encoding values are: TEXT - indicates values a re alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. 'encoding' can also be set at the column fami ly level. However, the setting at this level takes precedence if 'encoding' is s et at both levels.",
944 "type": "string"
945 },
946 "fieldName": {
947 "description": "[Optional] If the qualifier is not a valid B igQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid iden tifier must be provided as the column field name and is used as field name in qu eries.",
948 "type": "string"
949 },
950 "onlyReadLatest": {
951 "description": "[Optional] If this is set, only the latest v ersion of value in this column are exposed. 'onlyReadLatest' can also be set at the column family level. However, the setting at this level takes precedence if 'onlyReadLatest' is set at both levels.",
952 "type": "boolean"
953 },
954 "qualifierEncoded": {
955 "description": "[Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as . field . If the qualifier is valid UTF-8 string, it can be specified in the qualifier_s tring field. Otherwise, a base-64 encoded value must be set to qualifier_encoded . The column field name is the same as the column qualifier. However, if the qua lifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-z A-Z0-9_]*, a valid identifier must be provided as field_name.",
956 "format": "byte",
957 "type": "string"
958 },
959 "qualifierString": {
960 "type": "string"
961 },
962 "type": {
963 "description": "[Optional] The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.to Bytes function when using the BINARY encoding value. Following BigQuery types ar e allowed (case-sensitive) - BYTES STRING INTEGER FLOAT BOOLEAN Defaut type is B YTES. 'type' can also be set at the column family level. However, the setting at this level takes precedence if 'type' is set at both levels.",
964 "type": "string"
965 }
966 },
967 "type": "object"
968 },
969 "BigtableColumnFamily": {
970 "id": "BigtableColumnFamily",
971 "properties": {
972 "columns": {
973 "description": "[Optional] Lists of columns that should be e xposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as .. Other columns can be accessed as a list through .Column field.",
974 "items": {
975 "$ref": "BigtableColumn"
976 },
977 "type": "array"
978 },
979 "encoding": {
980 "description": "[Optional] The encoding of the values when t he type is not STRING. Acceptable encoding values are: TEXT - indicates values a re alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it.",
981 "type": "string"
982 },
983 "familyId": {
984 "description": "Identifier of the column family.",
985 "type": "string"
986 },
987 "onlyReadLatest": {
988 "description": "[Optional] If this is set only the latest ve rsion of value are exposed for all columns in this column family. This can be ov erridden for a specific column by listing that column in 'columns' and specifyin g a different setting for that column.",
989 "type": "boolean"
990 },
991 "type": {
992 "description": "[Optional] The type to convert the value in cells of this column family. The values are expected to be encoded using HBase B ytes.toBytes function when using the BINARY encoding value. Following BigQuery t ypes are allowed (case-sensitive) - BYTES STRING INTEGER FLOAT BOOLEAN Defaut ty pe is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it.",
993 "type": "string"
994 }
995 },
996 "type": "object"
997 },
998 "BigtableOptions": {
999 "id": "BigtableOptions",
1000 "properties": {
1001 "columnFamilies": {
1002 "description": "[Optional] List of column families to expose in the table schema along with their types. This list restricts the column fami lies that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families refe renced in that query are read from Bigtable.",
1003 "items": {
1004 "$ref": "BigtableColumnFamily"
1005 },
1006 "type": "array"
1007 },
1008 "ignoreUnspecifiedColumnFamilies": {
1009 "description": "[Optional] If field is true, then the column families that are not specified in columnFamilies list are not exposed in the t able schema. Otherwise, they are read with BYTES type values. The default value is false.",
1010 "type": "boolean"
1011 }
1012 },
1013 "type": "object"
1014 },
939 "CsvOptions": { 1015 "CsvOptions": {
940 "id": "CsvOptions", 1016 "id": "CsvOptions",
941 "properties": { 1017 "properties": {
942 "allowJaggedRows": { 1018 "allowJaggedRows": {
943 "description": "[Optional] Indicates if BigQuery should acce pt rows that are missing trailing optional columns. If true, BigQuery treats mis sing trailing columns as null values. If false, records with missing trailing co lumns are treated as bad records, and if there are too many bad records, an inva lid error is returned in the job result. The default value is false.", 1019 "description": "[Optional] Indicates if BigQuery should acce pt rows that are missing trailing optional columns. If true, BigQuery treats mis sing trailing columns as null values. If false, records with missing trailing co lumns are treated as bad records, and if there are too many bad records, an inva lid error is returned in the job result. The default value is false.",
944 "type": "boolean" 1020 "type": "boolean"
945 }, 1021 },
946 "allowQuotedNewlines": { 1022 "allowQuotedNewlines": {
947 "description": "[Optional] Indicates if BigQuery should allo w quoted data sections that contain newline characters in a CSV file. The defaul t value is false.", 1023 "description": "[Optional] Indicates if BigQuery should allo w quoted data sections that contain newline characters in a CSV file. The defaul t value is false.",
948 "type": "boolean" 1024 "type": "boolean"
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
1232 "type": "string" 1308 "type": "string"
1233 }, 1309 },
1234 "type": "array" 1310 "type": "array"
1235 } 1311 }
1236 }, 1312 },
1237 "type": "object" 1313 "type": "object"
1238 }, 1314 },
1239 "ExternalDataConfiguration": { 1315 "ExternalDataConfiguration": {
1240 "id": "ExternalDataConfiguration", 1316 "id": "ExternalDataConfiguration",
1241 "properties": { 1317 "properties": {
1318 "autodetect": {
1319 "description": "[Experimental] Try to detect schema and form at options automatically. Any option specified explicitly will be honored.",
1320 "type": "boolean"
1321 },
1322 "bigtableOptions": {
1323 "$ref": "BigtableOptions",
1324 "description": "[Optional] Additional options if sourceForma t is set to BIGTABLE."
1325 },
1242 "compression": { 1326 "compression": {
1243 "description": "[Optional] The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This s etting is ignored for Google Cloud Datastore backups.", 1327 "description": "[Optional] The compression type of the data source. Possible values include GZIP and NONE. The default value is NONE. This s etting is ignored for Google Cloud Bigtable, Google Cloud Datastore backups and Avro formats.",
1244 "type": "string" 1328 "type": "string"
1245 }, 1329 },
1246 "csvOptions": { 1330 "csvOptions": {
1247 "$ref": "CsvOptions", 1331 "$ref": "CsvOptions",
1248 "description": "Additional properties to set if sourceFormat is set to CSV." 1332 "description": "Additional properties to set if sourceFormat is set to CSV."
1249 }, 1333 },
1250 "ignoreUnknownValues": { 1334 "ignoreUnknownValues": {
1251 "description": "[Optional] Indicates if BigQuery should allo w 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 reco rds, 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 wha t BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values th at don't match any column names Google Cloud Datastore backups: This setting is ignored.", 1335 "description": "[Optional] Indicates if BigQuery should allo w 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 reco rds, 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 wha t BigQuery treats as an extra value: CSV: Trailing columns JSON: Named values th at don't match any column names Google Cloud Bigtable: This setting is ignored. Google Cloud Datastore backups: This setting is ignored. Avro: This setting is i gnored.",
1252 "type": "boolean" 1336 "type": "boolean"
1253 }, 1337 },
1254 "maxBadRecords": { 1338 "maxBadRecords": {
1255 "description": "[Optional] The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceed s 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 Goo gle Cloud Datastore backups.", 1339 "description": "[Optional] The maximum number of bad records that BigQuery can ignore when reading data. If the number of bad records exceed s 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 Goo gle Cloud Bigtable, Google Cloud Datastore backups and Avro formats.",
1256 "format": "int32", 1340 "format": "int32",
1257 "type": "integer" 1341 "type": "integer"
1258 }, 1342 },
1259 "schema": { 1343 "schema": {
1260 "$ref": "TableSchema", 1344 "$ref": "TableSchema",
1261 "description": "[Optional] The schema for the data. Schema i s required for CSV and JSON formats. Schema is disallowed for Google Cloud Datas tore backups." 1345 "description": "[Optional] The schema for the data. Schema i s required for CSV and JSON formats. Schema is disallowed for Google Cloud Bigta ble, Cloud Datastore backups, and Avro formats."
1262 }, 1346 },
1263 "sourceFormat": { 1347 "sourceFormat": {
1264 "description": "[Required] The data format. For CSV files, s pecify \"CSV\". For newline-delimited JSON, specify \"NEWLINE_DELIMITED_JSON\". For Google Cloud Datastore backups, specify \"DATASTORE_BACKUP\".", 1348 "description": "[Required] The data format. For CSV files, s pecify \"CSV\". For newline-delimited JSON, specify \"NEWLINE_DELIMITED_JSON\". For Avro files, specify \"AVRO\". For Google Cloud Datastore backups, specify \" DATASTORE_BACKUP\". [Experimental] For Google Cloud Bigtable, specify \"BIGTABLE \". Please note that reading from Google Cloud Bigtable is experimental and has to be enabled for your project. Please contact Google Cloud Support to enable th is for your project.",
1265 "type": "string" 1349 "type": "string"
1266 }, 1350 },
1267 "sourceUris": { 1351 "sourceUris": {
1268 "description": "[Required] The fully-qualified URIs that poi nt to your data in Google Cloud Storage. Each URI can contain one '*' wildcard c haracter and it must come after the 'bucket' name. Size limits related to load j obs apply to external data sources, plus an additional limit of 10 GB maximum si ze across all URIs. For Google Cloud Datastore backups, exactly one URI can be s pecified, and it must end with '.backup_info'. Also, the '*' wildcard character is not allowed.", 1352 "description": "[Required] The fully-qualified URIs that poi nt to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can con tain one '*' wildcard character and it must come after the 'bucket' name. Size l imits related to load jobs apply to external data sources, plus an additional li mit of 10 GB maximum size across all URIs. For Google Cloud Bigtable URIs: Exact ly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups, exactly o ne URI can be specified, and it must end with '.backup_info'. Also, the '*' wild card character is not allowed.",
1269 "items": { 1353 "items": {
1270 "type": "string" 1354 "type": "string"
1271 }, 1355 },
1272 "type": "array" 1356 "type": "array"
1273 } 1357 }
1274 }, 1358 },
1275 "type": "object" 1359 "type": "object"
1276 }, 1360 },
1277 "GetQueryResultsResponse": { 1361 "GetQueryResultsResponse": {
1278 "id": "GetQueryResultsResponse", 1362 "id": "GetQueryResultsResponse",
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 "description": "[Required] BigQuery SQL query to execute.", 1665 "description": "[Required] BigQuery SQL query to execute.",
1582 "type": "string" 1666 "type": "string"
1583 }, 1667 },
1584 "tableDefinitions": { 1668 "tableDefinitions": {
1585 "additionalProperties": { 1669 "additionalProperties": {
1586 "$ref": "ExternalDataConfiguration" 1670 "$ref": "ExternalDataConfiguration"
1587 }, 1671 },
1588 "description": "[Optional] If querying an external data sour ce outside of BigQuery, describes the data format, location and other properties of the data source. By defining these properties, the data source can then be q ueried as if it were a standard BigQuery table.", 1672 "description": "[Optional] If querying an external data sour ce outside of BigQuery, describes the data format, location and other properties of the data source. By defining these properties, the data source can then be q ueried as if it were a standard BigQuery table.",
1589 "type": "object" 1673 "type": "object"
1590 }, 1674 },
1675 "useLegacySql": {
1676 "description": "[Experimental] Specifies whether to use BigQ uery's legacy SQL dialect for this query. The default value is true. If set to f alse, the query will use BigQuery's updated SQL dialect with improved standards compliance. When using BigQuery's updated SQL, the values of allowLargeResults a nd flattenResults are ignored. Queries with useLegacySql set to false will be ru n as if allowLargeResults is true and flattenResults is false.",
1677 "type": "boolean"
1678 },
1591 "useQueryCache": { 1679 "useQueryCache": {
1592 "default": "true", 1680 "default": "true",
1593 "description": "[Optional] Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed wh enever tables in the query are modified. Moreover, the query cache is only avail able when a query does not have a destination table specified. The default value is true.", 1681 "description": "[Optional] Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed wh enever tables in the query are modified. Moreover, the query cache is only avail able when a query does not have a destination table specified. The default value is true.",
1594 "type": "boolean" 1682 "type": "boolean"
1595 }, 1683 },
1596 "userDefinedFunctionResources": { 1684 "userDefinedFunctionResources": {
1597 "description": "[Experimental] Describes user-defined functi on resources used in the query.", 1685 "description": "[Experimental] Describes user-defined functi on resources used in the query.",
1598 "items": { 1686 "items": {
1599 "$ref": "UserDefinedFunctionResource" 1687 "$ref": "UserDefinedFunctionResource"
1600 }, 1688 },
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1775 "description": "[Output-only] Whether the query result was f etched from the query cache.", 1863 "description": "[Output-only] Whether the query result was f etched from the query cache.",
1776 "type": "boolean" 1864 "type": "boolean"
1777 }, 1865 },
1778 "queryPlan": { 1866 "queryPlan": {
1779 "description": "[Output-only, Experimental] Describes execut ion plan for the query as a list of stages.", 1867 "description": "[Output-only, Experimental] Describes execut ion plan for the query as a list of stages.",
1780 "items": { 1868 "items": {
1781 "$ref": "ExplainQueryStage" 1869 "$ref": "ExplainQueryStage"
1782 }, 1870 },
1783 "type": "array" 1871 "type": "array"
1784 }, 1872 },
1873 "referencedTables": {
1874 "description": "[Output-only, Experimental] Referenced table s for the job. Queries that reference more than 50 tables will not have a comple te list.",
1875 "items": {
1876 "$ref": "TableReference"
1877 },
1878 "type": "array"
1879 },
1785 "totalBytesBilled": { 1880 "totalBytesBilled": {
1786 "description": "[Output-only] Total bytes billed for the job .", 1881 "description": "[Output-only] Total bytes billed for the job .",
1787 "format": "int64", 1882 "format": "int64",
1788 "type": "string" 1883 "type": "string"
1789 }, 1884 },
1790 "totalBytesProcessed": { 1885 "totalBytesProcessed": {
1791 "description": "[Output-only] Total bytes processed for the job.", 1886 "description": "[Output-only] Total bytes processed for the job.",
1792 "format": "int64", 1887 "format": "int64",
1793 "type": "string" 1888 "type": "string"
1794 } 1889 }
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
1965 ] 2060 ]
1966 }, 2061 },
1967 "description": "[Required] A query string, following the Big Query query syntax, of the query to execute. Example: \"SELECT count(f1) FROM [m yProjectId:myDatasetId.myTableId]\".", 2062 "description": "[Required] A query string, following the Big Query query syntax, of the query to execute. Example: \"SELECT count(f1) FROM [m yProjectId:myDatasetId.myTableId]\".",
1968 "type": "string" 2063 "type": "string"
1969 }, 2064 },
1970 "timeoutMs": { 2065 "timeoutMs": {
1971 "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 th e 'jobComplete' flag set to false. You can call GetQueryResults() to wait for th e query to complete and read the results. The default value is 10000 millisecond s (10 seconds).", 2066 "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 th e 'jobComplete' flag set to false. You can call GetQueryResults() to wait for th e query to complete and read the results. The default value is 10000 millisecond s (10 seconds).",
1972 "format": "uint32", 2067 "format": "uint32",
1973 "type": "integer" 2068 "type": "integer"
1974 }, 2069 },
2070 "useLegacySql": {
2071 "description": "[Experimental] Specifies whether to use BigQ uery's legacy SQL dialect for this query. The default value is true. If set to f alse, the query will use BigQuery's updated SQL dialect with improved standards compliance. When using BigQuery's updated SQL, the values of allowLargeResults a nd flattenResults are ignored. Queries with useLegacySql set to false will be ru n as if allowLargeResults is true and flattenResults is false.",
2072 "type": "boolean"
2073 },
1975 "useQueryCache": { 2074 "useQueryCache": {
1976 "default": "true", 2075 "default": "true",
1977 "description": "[Optional] Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed wh enever tables in the query are modified. The default value is true.", 2076 "description": "[Optional] Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed wh enever tables in the query are modified. The default value is true.",
1978 "type": "boolean" 2077 "type": "boolean"
1979 } 2078 }
1980 }, 2079 },
1981 "type": "object" 2080 "type": "object"
1982 }, 2081 },
1983 "QueryResponse": { 2082 "QueryResponse": {
1984 "id": "QueryResponse", 2083 "id": "QueryResponse",
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
2176 }, 2275 },
2177 "type": "object" 2276 "type": "object"
2178 }, 2277 },
2179 "type": "array" 2278 "type": "array"
2180 }, 2279 },
2181 "skipInvalidRows": { 2280 "skipInvalidRows": {
2182 "description": "[Optional] Insert all valid rows of a reques t, even if invalid rows exist. The default value is false, which causes the enti re request to fail if any invalid rows exist.", 2281 "description": "[Optional] Insert all valid rows of a reques t, even if invalid rows exist. The default value is false, which causes the enti re request to fail if any invalid rows exist.",
2183 "type": "boolean" 2282 "type": "boolean"
2184 }, 2283 },
2185 "templateSuffix": { 2284 "templateSuffix": {
2186 "description": "[Optional] If specified, treats the destinat ion 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.co m/bigquery/streaming-data-into-bigquery#template-tables for considerations when working with templates tables.", 2285 "description": "[Experimental] If specified, treats the dest ination table as a base template, and inserts the rows into an instance table na med \"{destination}{templateSuffix}\". BigQuery will manage creation of the inst ance table, using the schema of the base template table. See https://cloud.googl e.com/bigquery/streaming-data-into-bigquery#template-tables for considerations w hen working with templates tables.",
2187 "type": "string" 2286 "type": "string"
2188 } 2287 }
2189 }, 2288 },
2190 "type": "object" 2289 "type": "object"
2191 }, 2290 },
2192 "TableDataInsertAllResponse": { 2291 "TableDataInsertAllResponse": {
2193 "id": "TableDataInsertAllResponse", 2292 "id": "TableDataInsertAllResponse",
2194 "properties": { 2293 "properties": {
2195 "insertErrors": { 2294 "insertErrors": {
2196 "description": "An array of errors for rows that were not in serted.", 2295 "description": "An array of errors for rows that were not in serted.",
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
2423 "type": "array" 2522 "type": "array"
2424 } 2523 }
2425 }, 2524 },
2426 "type": "object" 2525 "type": "object"
2427 } 2526 }
2428 }, 2527 },
2429 "servicePath": "bigquery/v2/", 2528 "servicePath": "bigquery/v2/",
2430 "title": "BigQuery API", 2529 "title": "BigQuery API",
2431 "version": "v2" 2530 "version": "v2"
2432 } 2531 }
OLDNEW
« no previous file with comments | « discovery/googleapis/appstate__v1.json ('k') | discovery/googleapis/blogger__v3.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698