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

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

Issue 2039113004: Api-roll 37: 2016-06-06 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 6 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/calendar__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": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/xJN8TIpPcg1NGIZr6unBuM4TVZg\"", 35 "etag": "\"C5oy1hgQsABtYOYIOXWcR3BgYqU/07E0qLkq3o7f8SkcNVom0FFgfOc\"",
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": "20160511", 936 "revision": "20160526",
937 "rootUrl": "https://www.googleapis.com/", 937 "rootUrl": "https://www.googleapis.com/",
938 "schemas": { 938 "schemas": {
939 "BigtableColumn": { 939 "BigtableColumn": {
940 "id": "BigtableColumn", 940 "id": "BigtableColumn",
941 "properties": { 941 "properties": {
942 "encoding": { 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.", 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" 944 "type": "string"
945 }, 945 },
946 "fieldName": { 946 "fieldName": {
(...skipping 1607 matching lines...) Expand 10 before | Expand all | Expand 10 after
2554 }, 2554 },
2555 "type": "object" 2555 "type": "object"
2556 }, 2556 },
2557 "ViewDefinition": { 2557 "ViewDefinition": {
2558 "id": "ViewDefinition", 2558 "id": "ViewDefinition",
2559 "properties": { 2559 "properties": {
2560 "query": { 2560 "query": {
2561 "description": "[Required] A query that BigQuery executes wh en the view is referenced.", 2561 "description": "[Required] A query that BigQuery executes wh en the view is referenced.",
2562 "type": "string" 2562 "type": "string"
2563 }, 2563 },
2564 "useLegacySql": {
2565 "description": "[Experimental] Specifies whether to use BigQ uery's legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery's standard SQL: https://cloud.google.com/bigquery/sql-re ference/ Queries and views that reference this view must use the same flag value .",
2566 "type": "boolean"
2567 },
2564 "userDefinedFunctionResources": { 2568 "userDefinedFunctionResources": {
2565 "description": "[Experimental] Describes user-defined functi on resources used in the query.", 2569 "description": "[Experimental] Describes user-defined functi on resources used in the query.",
2566 "items": { 2570 "items": {
2567 "$ref": "UserDefinedFunctionResource" 2571 "$ref": "UserDefinedFunctionResource"
2568 }, 2572 },
2569 "type": "array" 2573 "type": "array"
2570 } 2574 }
2571 }, 2575 },
2572 "type": "object" 2576 "type": "object"
2573 } 2577 }
2574 }, 2578 },
2575 "servicePath": "bigquery/v2/", 2579 "servicePath": "bigquery/v2/",
2576 "title": "BigQuery API", 2580 "title": "BigQuery API",
2577 "version": "v2" 2581 "version": "v2"
2578 } 2582 }
OLDNEW
« no previous file with comments | « discovery/googleapis/appstate__v1.json ('k') | discovery/googleapis/calendar__v3.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698