-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathBigQuery-connector.json
More file actions
113 lines (113 loc) · 2.58 KB
/
BigQuery-connector.json
File metadata and controls
113 lines (113 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"metadata": {
"spec-version": "1.0"
},
"display-name": "BigQuery",
"configuration-groups": [
{
"label": "Basic",
"properties": [
{
"widget-type": "textbox",
"label": "Project ID",
"name": "project",
"widget-attributes": {
"default": "auto-detect"
}
},
{
"widget-type": "textbox",
"label": "Dataset Project ID",
"name": "datasetProject",
"widget-attributes": {
"placeholder": "Project the dataset belongs to, if different from the Project ID."
}
},
{
"widget-type": "hidden",
"name": "rootDataset"
},
{
"widget-type": "toggle",
"label": "Show Hidden Datasets",
"name": "showHiddenDatasets",
"widget-attributes": {
"on": {
"value": "true",
"label": "YES"
},
"off": {
"value": "false",
"label": "NO"
},
"default": "false"
}
}
]
},
{
"label": "Credentials",
"properties": [
{
"name": "serviceAccountType",
"label": "Service Account Type",
"widget-type": "radio-group",
"widget-attributes": {
"layout": "inline",
"default": "filePath",
"options": [
{
"id": "filePath",
"label": "File Path"
},
{
"id": "JSON",
"label": "JSON"
}
]
}
},
{
"widget-type": "textbox",
"label": "Service Account File Path",
"name": "serviceFilePath",
"widget-attributes": {
"default": "auto-detect"
}
},
{
"widget-type": "securekey-textarea",
"label": "Service Account JSON",
"name": "serviceAccountJSON"
}
]
}
],
"outputs": [],
"filters": [
{
"name": "ServiceAuthenticationTypeFilePath",
"condition": {
"expression": "serviceAccountType == 'filePath'"
},
"show": [
{
"type": "property",
"name": "serviceFilePath"
}
]
},
{
"name": "ServiceAuthenticationTypeJSON",
"condition": {
"expression": "serviceAccountType == 'JSON'"
},
"show": [
{
"type": "property",
"name": "serviceAccountJSON"
}
]
}
]
}