@looker/sdk 22.20.1 → 23.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/README.md +1 -1
- package/lib/3.1/funcs.js +4 -1075
- package/lib/3.1/funcs.js.map +1 -1
- package/lib/3.1/methods.js +3 -720
- package/lib/3.1/methods.js.map +1 -1
- package/lib/3.1/methodsInterface.js +1 -1
- package/lib/3.1/methodsInterface.js.map +1 -1
- package/lib/3.1/models.d.ts +33 -0
- package/lib/3.1/models.js +0 -33
- package/lib/3.1/models.js.map +1 -1
- package/lib/3.1/streams.js +3 -720
- package/lib/3.1/streams.js.map +1 -1
- package/lib/4.0/funcs.d.ts +2 -1
- package/lib/4.0/funcs.js +826 -2102
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +2 -1
- package/lib/4.0/methods.js +553 -1404
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +2 -1
- package/lib/4.0/methodsInterface.js +1 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +95 -0
- package/lib/4.0/models.js +0 -43
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +2 -1
- package/lib/4.0/streams.js +553 -1404
- package/lib/4.0/streams.js.map +1 -1
- package/lib/browserSdk.js +0 -9
- package/lib/browserSdk.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +2 -2
- package/lib/constants.js.map +1 -1
- package/lib/esm/3.1/funcs.js +862 -854
- package/lib/esm/3.1/funcs.js.map +1 -1
- package/lib/esm/3.1/methods.js +152 -858
- package/lib/esm/3.1/methods.js.map +1 -1
- package/lib/esm/3.1/methodsInterface.js.map +1 -1
- package/lib/esm/3.1/models.js +57 -67
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/3.1/streams.js +152 -858
- package/lib/esm/3.1/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1993 -1967
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +864 -1704
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js +72 -87
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +864 -1704
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/browserSdk.js +20 -14
- package/lib/esm/browserSdk.js.map +1 -1
- package/lib/esm/constants.js +10 -2
- package/lib/esm/constants.js.map +1 -1
- package/lib/esm/extensionSdk.js +12 -6
- package/lib/esm/extensionSdk.js.map +1 -1
- package/lib/esm/index.js +141 -17
- package/lib/esm/index.js.map +1 -1
- package/lib/extensionSdk.js +0 -4
- package/lib/extensionSdk.js.map +1 -1
- package/lib/index.js +20 -38
- package/lib/index.js.map +1 -1
- package/package.json +3 -3
package/lib/3.1/streams.js
CHANGED
|
@@ -4,27 +4,21 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.Looker31SDKStream = void 0;
|
|
7
|
-
|
|
8
7
|
var _sdkRtl = require("@looker/sdk-rtl");
|
|
9
|
-
|
|
10
8
|
var _constants = require("../constants");
|
|
11
|
-
|
|
12
9
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
13
|
-
|
|
14
10
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
15
|
-
|
|
16
|
-
function
|
|
17
|
-
|
|
11
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
12
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
13
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
18
14
|
class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
19
15
|
constructor(authSession) {
|
|
20
16
|
super(authSession, _constants.sdkVersion);
|
|
21
17
|
this.apiVersion = Looker31SDKStream.ApiVersion;
|
|
22
18
|
this.apiPath = authSession.settings.base_url === '' ? '' : authSession.settings.base_url + '/api/' + this.apiVersion;
|
|
23
19
|
}
|
|
24
|
-
|
|
25
20
|
login(callback, request, options) {
|
|
26
21
|
var _this = this;
|
|
27
|
-
|
|
28
22
|
return _asyncToGenerator(function* () {
|
|
29
23
|
return _this.authStream(callback, 'POST', '/login', {
|
|
30
24
|
client_id: request.client_id,
|
|
@@ -32,234 +26,178 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
32
26
|
}, null, options);
|
|
33
27
|
})();
|
|
34
28
|
}
|
|
35
|
-
|
|
36
29
|
login_user(callback, user_id, associative, options) {
|
|
37
30
|
var _this2 = this;
|
|
38
|
-
|
|
39
31
|
return _asyncToGenerator(function* () {
|
|
40
32
|
return _this2.authStream(callback, 'POST', "/login/".concat(user_id), {
|
|
41
33
|
associative
|
|
42
34
|
}, null, options);
|
|
43
35
|
})();
|
|
44
36
|
}
|
|
45
|
-
|
|
46
37
|
logout(callback, options) {
|
|
47
38
|
var _this3 = this;
|
|
48
|
-
|
|
49
39
|
return _asyncToGenerator(function* () {
|
|
50
40
|
return _this3.authStream(callback, 'DELETE', '/logout', null, null, options);
|
|
51
41
|
})();
|
|
52
42
|
}
|
|
53
|
-
|
|
54
43
|
create_sso_embed_url(callback, body, options) {
|
|
55
44
|
var _this4 = this;
|
|
56
|
-
|
|
57
45
|
return _asyncToGenerator(function* () {
|
|
58
46
|
return _this4.authStream(callback, 'POST', '/embed/sso_url', null, body, options);
|
|
59
47
|
})();
|
|
60
48
|
}
|
|
61
|
-
|
|
62
49
|
ldap_config(callback, options) {
|
|
63
50
|
var _this5 = this;
|
|
64
|
-
|
|
65
51
|
return _asyncToGenerator(function* () {
|
|
66
52
|
return _this5.authStream(callback, 'GET', '/ldap_config', null, null, options);
|
|
67
53
|
})();
|
|
68
54
|
}
|
|
69
|
-
|
|
70
55
|
update_ldap_config(callback, body, options) {
|
|
71
56
|
var _this6 = this;
|
|
72
|
-
|
|
73
57
|
return _asyncToGenerator(function* () {
|
|
74
58
|
return _this6.authStream(callback, 'PATCH', '/ldap_config', null, body, options);
|
|
75
59
|
})();
|
|
76
60
|
}
|
|
77
|
-
|
|
78
61
|
test_ldap_config_connection(callback, body, options) {
|
|
79
62
|
var _this7 = this;
|
|
80
|
-
|
|
81
63
|
return _asyncToGenerator(function* () {
|
|
82
64
|
return _this7.authStream(callback, 'PUT', '/ldap_config/test_connection', null, body, options);
|
|
83
65
|
})();
|
|
84
66
|
}
|
|
85
|
-
|
|
86
67
|
test_ldap_config_auth(callback, body, options) {
|
|
87
68
|
var _this8 = this;
|
|
88
|
-
|
|
89
69
|
return _asyncToGenerator(function* () {
|
|
90
70
|
return _this8.authStream(callback, 'PUT', '/ldap_config/test_auth', null, body, options);
|
|
91
71
|
})();
|
|
92
72
|
}
|
|
93
|
-
|
|
94
73
|
test_ldap_config_user_info(callback, body, options) {
|
|
95
74
|
var _this9 = this;
|
|
96
|
-
|
|
97
75
|
return _asyncToGenerator(function* () {
|
|
98
76
|
return _this9.authStream(callback, 'PUT', '/ldap_config/test_user_info', null, body, options);
|
|
99
77
|
})();
|
|
100
78
|
}
|
|
101
|
-
|
|
102
79
|
test_ldap_config_user_auth(callback, body, options) {
|
|
103
80
|
var _this10 = this;
|
|
104
|
-
|
|
105
81
|
return _asyncToGenerator(function* () {
|
|
106
82
|
return _this10.authStream(callback, 'PUT', '/ldap_config/test_user_auth', null, body, options);
|
|
107
83
|
})();
|
|
108
84
|
}
|
|
109
|
-
|
|
110
85
|
oidc_config(callback, options) {
|
|
111
86
|
var _this11 = this;
|
|
112
|
-
|
|
113
87
|
return _asyncToGenerator(function* () {
|
|
114
88
|
return _this11.authStream(callback, 'GET', '/oidc_config', null, null, options);
|
|
115
89
|
})();
|
|
116
90
|
}
|
|
117
|
-
|
|
118
91
|
update_oidc_config(callback, body, options) {
|
|
119
92
|
var _this12 = this;
|
|
120
|
-
|
|
121
93
|
return _asyncToGenerator(function* () {
|
|
122
94
|
return _this12.authStream(callback, 'PATCH', '/oidc_config', null, body, options);
|
|
123
95
|
})();
|
|
124
96
|
}
|
|
125
|
-
|
|
126
97
|
oidc_test_config(callback, test_slug, options) {
|
|
127
98
|
var _this13 = this;
|
|
128
|
-
|
|
129
99
|
return _asyncToGenerator(function* () {
|
|
130
100
|
test_slug = (0, _sdkRtl.encodeParam)(test_slug);
|
|
131
101
|
return _this13.authStream(callback, 'GET', "/oidc_test_configs/".concat(test_slug), null, null, options);
|
|
132
102
|
})();
|
|
133
103
|
}
|
|
134
|
-
|
|
135
104
|
delete_oidc_test_config(callback, test_slug, options) {
|
|
136
105
|
var _this14 = this;
|
|
137
|
-
|
|
138
106
|
return _asyncToGenerator(function* () {
|
|
139
107
|
test_slug = (0, _sdkRtl.encodeParam)(test_slug);
|
|
140
108
|
return _this14.authStream(callback, 'DELETE', "/oidc_test_configs/".concat(test_slug), null, null, options);
|
|
141
109
|
})();
|
|
142
110
|
}
|
|
143
|
-
|
|
144
111
|
create_oidc_test_config(callback, body, options) {
|
|
145
112
|
var _this15 = this;
|
|
146
|
-
|
|
147
113
|
return _asyncToGenerator(function* () {
|
|
148
114
|
return _this15.authStream(callback, 'POST', '/oidc_test_configs', null, body, options);
|
|
149
115
|
})();
|
|
150
116
|
}
|
|
151
|
-
|
|
152
117
|
password_config(callback, options) {
|
|
153
118
|
var _this16 = this;
|
|
154
|
-
|
|
155
119
|
return _asyncToGenerator(function* () {
|
|
156
120
|
return _this16.authStream(callback, 'GET', '/password_config', null, null, options);
|
|
157
121
|
})();
|
|
158
122
|
}
|
|
159
|
-
|
|
160
123
|
update_password_config(callback, body, options) {
|
|
161
124
|
var _this17 = this;
|
|
162
|
-
|
|
163
125
|
return _asyncToGenerator(function* () {
|
|
164
126
|
return _this17.authStream(callback, 'PATCH', '/password_config', null, body, options);
|
|
165
127
|
})();
|
|
166
128
|
}
|
|
167
|
-
|
|
168
129
|
force_password_reset_at_next_login_for_all_users(callback, options) {
|
|
169
130
|
var _this18 = this;
|
|
170
|
-
|
|
171
131
|
return _asyncToGenerator(function* () {
|
|
172
132
|
return _this18.authStream(callback, 'PUT', '/password_config/force_password_reset_at_next_login_for_all_users', null, null, options);
|
|
173
133
|
})();
|
|
174
134
|
}
|
|
175
|
-
|
|
176
135
|
saml_config(callback, options) {
|
|
177
136
|
var _this19 = this;
|
|
178
|
-
|
|
179
137
|
return _asyncToGenerator(function* () {
|
|
180
138
|
return _this19.authStream(callback, 'GET', '/saml_config', null, null, options);
|
|
181
139
|
})();
|
|
182
140
|
}
|
|
183
|
-
|
|
184
141
|
update_saml_config(callback, body, options) {
|
|
185
142
|
var _this20 = this;
|
|
186
|
-
|
|
187
143
|
return _asyncToGenerator(function* () {
|
|
188
144
|
return _this20.authStream(callback, 'PATCH', '/saml_config', null, body, options);
|
|
189
145
|
})();
|
|
190
146
|
}
|
|
191
|
-
|
|
192
147
|
saml_test_config(callback, test_slug, options) {
|
|
193
148
|
var _this21 = this;
|
|
194
|
-
|
|
195
149
|
return _asyncToGenerator(function* () {
|
|
196
150
|
test_slug = (0, _sdkRtl.encodeParam)(test_slug);
|
|
197
151
|
return _this21.authStream(callback, 'GET', "/saml_test_configs/".concat(test_slug), null, null, options);
|
|
198
152
|
})();
|
|
199
153
|
}
|
|
200
|
-
|
|
201
154
|
delete_saml_test_config(callback, test_slug, options) {
|
|
202
155
|
var _this22 = this;
|
|
203
|
-
|
|
204
156
|
return _asyncToGenerator(function* () {
|
|
205
157
|
test_slug = (0, _sdkRtl.encodeParam)(test_slug);
|
|
206
158
|
return _this22.authStream(callback, 'DELETE', "/saml_test_configs/".concat(test_slug), null, null, options);
|
|
207
159
|
})();
|
|
208
160
|
}
|
|
209
|
-
|
|
210
161
|
create_saml_test_config(callback, body, options) {
|
|
211
162
|
var _this23 = this;
|
|
212
|
-
|
|
213
163
|
return _asyncToGenerator(function* () {
|
|
214
164
|
return _this23.authStream(callback, 'POST', '/saml_test_configs', null, body, options);
|
|
215
165
|
})();
|
|
216
166
|
}
|
|
217
|
-
|
|
218
167
|
parse_saml_idp_metadata(callback, body, options) {
|
|
219
168
|
var _this24 = this;
|
|
220
|
-
|
|
221
169
|
return _asyncToGenerator(function* () {
|
|
222
170
|
return _this24.authStream(callback, 'POST', '/parse_saml_idp_metadata', null, body, options);
|
|
223
171
|
})();
|
|
224
172
|
}
|
|
225
|
-
|
|
226
173
|
fetch_and_parse_saml_idp_metadata(callback, body, options) {
|
|
227
174
|
var _this25 = this;
|
|
228
|
-
|
|
229
175
|
return _asyncToGenerator(function* () {
|
|
230
176
|
return _this25.authStream(callback, 'POST', '/fetch_and_parse_saml_idp_metadata', null, body, options);
|
|
231
177
|
})();
|
|
232
178
|
}
|
|
233
|
-
|
|
234
179
|
session_config(callback, options) {
|
|
235
180
|
var _this26 = this;
|
|
236
|
-
|
|
237
181
|
return _asyncToGenerator(function* () {
|
|
238
182
|
return _this26.authStream(callback, 'GET', '/session_config', null, null, options);
|
|
239
183
|
})();
|
|
240
184
|
}
|
|
241
|
-
|
|
242
185
|
update_session_config(callback, body, options) {
|
|
243
186
|
var _this27 = this;
|
|
244
|
-
|
|
245
187
|
return _asyncToGenerator(function* () {
|
|
246
188
|
return _this27.authStream(callback, 'PATCH', '/session_config', null, body, options);
|
|
247
189
|
})();
|
|
248
190
|
}
|
|
249
|
-
|
|
250
191
|
all_user_login_lockouts(callback, fields, options) {
|
|
251
192
|
var _this28 = this;
|
|
252
|
-
|
|
253
193
|
return _asyncToGenerator(function* () {
|
|
254
194
|
return _this28.authStream(callback, 'GET', '/user_login_lockouts', {
|
|
255
195
|
fields
|
|
256
196
|
}, null, options);
|
|
257
197
|
})();
|
|
258
198
|
}
|
|
259
|
-
|
|
260
199
|
search_user_login_lockouts(callback, request, options) {
|
|
261
200
|
var _this29 = this;
|
|
262
|
-
|
|
263
201
|
return _asyncToGenerator(function* () {
|
|
264
202
|
return _this29.authStream(callback, 'GET', '/user_login_lockouts/search', {
|
|
265
203
|
fields: request.fields,
|
|
@@ -274,75 +212,59 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
274
212
|
}, null, options);
|
|
275
213
|
})();
|
|
276
214
|
}
|
|
277
|
-
|
|
278
215
|
delete_user_login_lockout(callback, key, options) {
|
|
279
216
|
var _this30 = this;
|
|
280
|
-
|
|
281
217
|
return _asyncToGenerator(function* () {
|
|
282
218
|
key = (0, _sdkRtl.encodeParam)(key);
|
|
283
219
|
return _this30.authStream(callback, 'DELETE', "/user_login_lockout/".concat(key), null, null, options);
|
|
284
220
|
})();
|
|
285
221
|
}
|
|
286
|
-
|
|
287
222
|
all_color_collections(callback, fields, options) {
|
|
288
223
|
var _this31 = this;
|
|
289
|
-
|
|
290
224
|
return _asyncToGenerator(function* () {
|
|
291
225
|
return _this31.authStream(callback, 'GET', '/color_collections', {
|
|
292
226
|
fields
|
|
293
227
|
}, null, options);
|
|
294
228
|
})();
|
|
295
229
|
}
|
|
296
|
-
|
|
297
230
|
create_color_collection(callback, body, options) {
|
|
298
231
|
var _this32 = this;
|
|
299
|
-
|
|
300
232
|
return _asyncToGenerator(function* () {
|
|
301
233
|
return _this32.authStream(callback, 'POST', '/color_collections', null, body, options);
|
|
302
234
|
})();
|
|
303
235
|
}
|
|
304
|
-
|
|
305
236
|
color_collections_custom(callback, fields, options) {
|
|
306
237
|
var _this33 = this;
|
|
307
|
-
|
|
308
238
|
return _asyncToGenerator(function* () {
|
|
309
239
|
return _this33.authStream(callback, 'GET', '/color_collections/custom', {
|
|
310
240
|
fields
|
|
311
241
|
}, null, options);
|
|
312
242
|
})();
|
|
313
243
|
}
|
|
314
|
-
|
|
315
244
|
color_collections_standard(callback, fields, options) {
|
|
316
245
|
var _this34 = this;
|
|
317
|
-
|
|
318
246
|
return _asyncToGenerator(function* () {
|
|
319
247
|
return _this34.authStream(callback, 'GET', '/color_collections/standard', {
|
|
320
248
|
fields
|
|
321
249
|
}, null, options);
|
|
322
250
|
})();
|
|
323
251
|
}
|
|
324
|
-
|
|
325
252
|
default_color_collection(callback, options) {
|
|
326
253
|
var _this35 = this;
|
|
327
|
-
|
|
328
254
|
return _asyncToGenerator(function* () {
|
|
329
255
|
return _this35.authStream(callback, 'GET', '/color_collections/default', null, null, options);
|
|
330
256
|
})();
|
|
331
257
|
}
|
|
332
|
-
|
|
333
258
|
set_default_color_collection(callback, collection_id, options) {
|
|
334
259
|
var _this36 = this;
|
|
335
|
-
|
|
336
260
|
return _asyncToGenerator(function* () {
|
|
337
261
|
return _this36.authStream(callback, 'PUT', '/color_collections/default', {
|
|
338
262
|
collection_id
|
|
339
263
|
}, null, options);
|
|
340
264
|
})();
|
|
341
265
|
}
|
|
342
|
-
|
|
343
266
|
color_collection(callback, collection_id, fields, options) {
|
|
344
267
|
var _this37 = this;
|
|
345
|
-
|
|
346
268
|
return _asyncToGenerator(function* () {
|
|
347
269
|
collection_id = (0, _sdkRtl.encodeParam)(collection_id);
|
|
348
270
|
return _this37.authStream(callback, 'GET', "/color_collections/".concat(collection_id), {
|
|
@@ -350,236 +272,180 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
350
272
|
}, null, options);
|
|
351
273
|
})();
|
|
352
274
|
}
|
|
353
|
-
|
|
354
275
|
update_color_collection(callback, collection_id, body, options) {
|
|
355
276
|
var _this38 = this;
|
|
356
|
-
|
|
357
277
|
return _asyncToGenerator(function* () {
|
|
358
278
|
collection_id = (0, _sdkRtl.encodeParam)(collection_id);
|
|
359
279
|
return _this38.authStream(callback, 'PATCH', "/color_collections/".concat(collection_id), null, body, options);
|
|
360
280
|
})();
|
|
361
281
|
}
|
|
362
|
-
|
|
363
282
|
delete_color_collection(callback, collection_id, options) {
|
|
364
283
|
var _this39 = this;
|
|
365
|
-
|
|
366
284
|
return _asyncToGenerator(function* () {
|
|
367
285
|
collection_id = (0, _sdkRtl.encodeParam)(collection_id);
|
|
368
286
|
return _this39.authStream(callback, 'DELETE', "/color_collections/".concat(collection_id), null, null, options);
|
|
369
287
|
})();
|
|
370
288
|
}
|
|
371
|
-
|
|
372
289
|
backup_configuration(callback, options) {
|
|
373
290
|
var _this40 = this;
|
|
374
|
-
|
|
375
291
|
return _asyncToGenerator(function* () {
|
|
376
292
|
return _this40.authStream(callback, 'GET', '/backup_configuration', null, null, options);
|
|
377
293
|
})();
|
|
378
294
|
}
|
|
379
|
-
|
|
380
295
|
update_backup_configuration(callback, body, options) {
|
|
381
296
|
var _this41 = this;
|
|
382
|
-
|
|
383
297
|
return _asyncToGenerator(function* () {
|
|
384
298
|
return _this41.authStream(callback, 'PATCH', '/backup_configuration', null, body, options);
|
|
385
299
|
})();
|
|
386
300
|
}
|
|
387
|
-
|
|
388
301
|
cloud_storage_configuration(callback, options) {
|
|
389
302
|
var _this42 = this;
|
|
390
|
-
|
|
391
303
|
return _asyncToGenerator(function* () {
|
|
392
304
|
return _this42.authStream(callback, 'GET', '/cloud_storage', null, null, options);
|
|
393
305
|
})();
|
|
394
306
|
}
|
|
395
|
-
|
|
396
307
|
update_cloud_storage_configuration(callback, body, options) {
|
|
397
308
|
var _this43 = this;
|
|
398
|
-
|
|
399
309
|
return _asyncToGenerator(function* () {
|
|
400
310
|
return _this43.authStream(callback, 'PATCH', '/cloud_storage', null, body, options);
|
|
401
311
|
})();
|
|
402
312
|
}
|
|
403
|
-
|
|
404
313
|
custom_welcome_email(callback, options) {
|
|
405
314
|
var _this44 = this;
|
|
406
|
-
|
|
407
315
|
return _asyncToGenerator(function* () {
|
|
408
316
|
return _this44.authStream(callback, 'GET', '/custom_welcome_email', null, null, options);
|
|
409
317
|
})();
|
|
410
318
|
}
|
|
411
|
-
|
|
412
319
|
update_custom_welcome_email(callback, body, send_test_welcome_email, options) {
|
|
413
320
|
var _this45 = this;
|
|
414
|
-
|
|
415
321
|
return _asyncToGenerator(function* () {
|
|
416
322
|
return _this45.authStream(callback, 'PATCH', '/custom_welcome_email', {
|
|
417
323
|
send_test_welcome_email
|
|
418
324
|
}, body, options);
|
|
419
325
|
})();
|
|
420
326
|
}
|
|
421
|
-
|
|
422
327
|
update_custom_welcome_email_test(callback, body, options) {
|
|
423
328
|
var _this46 = this;
|
|
424
|
-
|
|
425
329
|
return _asyncToGenerator(function* () {
|
|
426
330
|
return _this46.authStream(callback, 'PUT', '/custom_welcome_email_test', null, body, options);
|
|
427
331
|
})();
|
|
428
332
|
}
|
|
429
|
-
|
|
430
333
|
digest_emails_enabled(callback, options) {
|
|
431
334
|
var _this47 = this;
|
|
432
|
-
|
|
433
335
|
return _asyncToGenerator(function* () {
|
|
434
336
|
return _this47.authStream(callback, 'GET', '/digest_emails_enabled', null, null, options);
|
|
435
337
|
})();
|
|
436
338
|
}
|
|
437
|
-
|
|
438
339
|
update_digest_emails_enabled(callback, body, options) {
|
|
439
340
|
var _this48 = this;
|
|
440
|
-
|
|
441
341
|
return _asyncToGenerator(function* () {
|
|
442
342
|
return _this48.authStream(callback, 'PATCH', '/digest_emails_enabled', null, body, options);
|
|
443
343
|
})();
|
|
444
344
|
}
|
|
445
|
-
|
|
446
345
|
create_digest_email_send(callback, options) {
|
|
447
346
|
var _this49 = this;
|
|
448
|
-
|
|
449
347
|
return _asyncToGenerator(function* () {
|
|
450
348
|
return _this49.authStream(callback, 'POST', '/digest_email_send', null, null, options);
|
|
451
349
|
})();
|
|
452
350
|
}
|
|
453
|
-
|
|
454
351
|
internal_help_resources_content(callback, options) {
|
|
455
352
|
var _this50 = this;
|
|
456
|
-
|
|
457
353
|
return _asyncToGenerator(function* () {
|
|
458
354
|
return _this50.authStream(callback, 'GET', '/internal_help_resources_content', null, null, options);
|
|
459
355
|
})();
|
|
460
356
|
}
|
|
461
|
-
|
|
462
357
|
update_internal_help_resources_content(callback, body, options) {
|
|
463
358
|
var _this51 = this;
|
|
464
|
-
|
|
465
359
|
return _asyncToGenerator(function* () {
|
|
466
360
|
return _this51.authStream(callback, 'PATCH', '/internal_help_resources_content', null, body, options);
|
|
467
361
|
})();
|
|
468
362
|
}
|
|
469
|
-
|
|
470
363
|
internal_help_resources(callback, options) {
|
|
471
364
|
var _this52 = this;
|
|
472
|
-
|
|
473
365
|
return _asyncToGenerator(function* () {
|
|
474
366
|
return _this52.authStream(callback, 'GET', '/internal_help_resources_enabled', null, null, options);
|
|
475
367
|
})();
|
|
476
368
|
}
|
|
477
|
-
|
|
478
369
|
update_internal_help_resources(callback, body, options) {
|
|
479
370
|
var _this53 = this;
|
|
480
|
-
|
|
481
371
|
return _asyncToGenerator(function* () {
|
|
482
372
|
return _this53.authStream(callback, 'PATCH', '/internal_help_resources', null, body, options);
|
|
483
373
|
})();
|
|
484
374
|
}
|
|
485
|
-
|
|
486
375
|
all_legacy_features(callback, options) {
|
|
487
376
|
var _this54 = this;
|
|
488
|
-
|
|
489
377
|
return _asyncToGenerator(function* () {
|
|
490
378
|
return _this54.authStream(callback, 'GET', '/legacy_features', null, null, options);
|
|
491
379
|
})();
|
|
492
380
|
}
|
|
493
|
-
|
|
494
381
|
legacy_feature(callback, legacy_feature_id, options) {
|
|
495
382
|
var _this55 = this;
|
|
496
|
-
|
|
497
383
|
return _asyncToGenerator(function* () {
|
|
498
384
|
return _this55.authStream(callback, 'GET', "/legacy_features/".concat(legacy_feature_id), null, null, options);
|
|
499
385
|
})();
|
|
500
386
|
}
|
|
501
|
-
|
|
502
387
|
update_legacy_feature(callback, legacy_feature_id, body, options) {
|
|
503
388
|
var _this56 = this;
|
|
504
|
-
|
|
505
389
|
return _asyncToGenerator(function* () {
|
|
506
390
|
return _this56.authStream(callback, 'PATCH', "/legacy_features/".concat(legacy_feature_id), null, body, options);
|
|
507
391
|
})();
|
|
508
392
|
}
|
|
509
|
-
|
|
510
393
|
all_locales(callback, options) {
|
|
511
394
|
var _this57 = this;
|
|
512
|
-
|
|
513
395
|
return _asyncToGenerator(function* () {
|
|
514
396
|
return _this57.authStream(callback, 'GET', '/locales', null, null, options);
|
|
515
397
|
})();
|
|
516
398
|
}
|
|
517
|
-
|
|
518
399
|
set_smtp_settings(callback, body, options) {
|
|
519
400
|
var _this58 = this;
|
|
520
|
-
|
|
521
401
|
return _asyncToGenerator(function* () {
|
|
522
402
|
return _this58.authStream(callback, 'POST', '/smtp_settings', null, body, options);
|
|
523
403
|
})();
|
|
524
404
|
}
|
|
525
|
-
|
|
526
405
|
all_timezones(callback, options) {
|
|
527
406
|
var _this59 = this;
|
|
528
|
-
|
|
529
407
|
return _asyncToGenerator(function* () {
|
|
530
408
|
return _this59.authStream(callback, 'GET', '/timezones', null, null, options);
|
|
531
409
|
})();
|
|
532
410
|
}
|
|
533
|
-
|
|
534
411
|
versions(callback, fields, options) {
|
|
535
412
|
var _this60 = this;
|
|
536
|
-
|
|
537
413
|
return _asyncToGenerator(function* () {
|
|
538
414
|
return _this60.authStream(callback, 'GET', '/versions', {
|
|
539
415
|
fields
|
|
540
416
|
}, null, options);
|
|
541
417
|
})();
|
|
542
418
|
}
|
|
543
|
-
|
|
544
419
|
whitelabel_configuration(callback, fields, options) {
|
|
545
420
|
var _this61 = this;
|
|
546
|
-
|
|
547
421
|
return _asyncToGenerator(function* () {
|
|
548
422
|
return _this61.authStream(callback, 'GET', '/whitelabel_configuration', {
|
|
549
423
|
fields
|
|
550
424
|
}, null, options);
|
|
551
425
|
})();
|
|
552
426
|
}
|
|
553
|
-
|
|
554
427
|
update_whitelabel_configuration(callback, body, options) {
|
|
555
428
|
var _this62 = this;
|
|
556
|
-
|
|
557
429
|
return _asyncToGenerator(function* () {
|
|
558
430
|
return _this62.authStream(callback, 'PUT', '/whitelabel_configuration', null, body, options);
|
|
559
431
|
})();
|
|
560
432
|
}
|
|
561
|
-
|
|
562
433
|
all_connections(callback, fields, options) {
|
|
563
434
|
var _this63 = this;
|
|
564
|
-
|
|
565
435
|
return _asyncToGenerator(function* () {
|
|
566
436
|
return _this63.authStream(callback, 'GET', '/connections', {
|
|
567
437
|
fields
|
|
568
438
|
}, null, options);
|
|
569
439
|
})();
|
|
570
440
|
}
|
|
571
|
-
|
|
572
441
|
create_connection(callback, body, options) {
|
|
573
442
|
var _this64 = this;
|
|
574
|
-
|
|
575
443
|
return _asyncToGenerator(function* () {
|
|
576
444
|
return _this64.authStream(callback, 'POST', '/connections', null, body, options);
|
|
577
445
|
})();
|
|
578
446
|
}
|
|
579
|
-
|
|
580
447
|
connection(callback, connection_name, fields, options) {
|
|
581
448
|
var _this65 = this;
|
|
582
|
-
|
|
583
449
|
return _asyncToGenerator(function* () {
|
|
584
450
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
585
451
|
return _this65.authStream(callback, 'GET', "/connections/".concat(connection_name), {
|
|
@@ -587,38 +453,30 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
587
453
|
}, null, options);
|
|
588
454
|
})();
|
|
589
455
|
}
|
|
590
|
-
|
|
591
456
|
update_connection(callback, connection_name, body, options) {
|
|
592
457
|
var _this66 = this;
|
|
593
|
-
|
|
594
458
|
return _asyncToGenerator(function* () {
|
|
595
459
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
596
460
|
return _this66.authStream(callback, 'PATCH', "/connections/".concat(connection_name), null, body, options);
|
|
597
461
|
})();
|
|
598
462
|
}
|
|
599
|
-
|
|
600
463
|
delete_connection(callback, connection_name, options) {
|
|
601
464
|
var _this67 = this;
|
|
602
|
-
|
|
603
465
|
return _asyncToGenerator(function* () {
|
|
604
466
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
605
467
|
return _this67.authStream(callback, 'DELETE', "/connections/".concat(connection_name), null, null, options);
|
|
606
468
|
})();
|
|
607
469
|
}
|
|
608
|
-
|
|
609
470
|
delete_connection_override(callback, connection_name, override_context, options) {
|
|
610
471
|
var _this68 = this;
|
|
611
|
-
|
|
612
472
|
return _asyncToGenerator(function* () {
|
|
613
473
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
614
474
|
override_context = (0, _sdkRtl.encodeParam)(override_context);
|
|
615
475
|
return _this68.authStream(callback, 'DELETE', "/connections/".concat(connection_name, "/connection_override/").concat(override_context), null, null, options);
|
|
616
476
|
})();
|
|
617
477
|
}
|
|
618
|
-
|
|
619
478
|
test_connection(callback, connection_name, tests, options) {
|
|
620
479
|
var _this69 = this;
|
|
621
|
-
|
|
622
480
|
return _asyncToGenerator(function* () {
|
|
623
481
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
624
482
|
return _this69.authStream(callback, 'PUT', "/connections/".concat(connection_name, "/test"), {
|
|
@@ -626,30 +484,24 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
626
484
|
}, null, options);
|
|
627
485
|
})();
|
|
628
486
|
}
|
|
629
|
-
|
|
630
487
|
test_connection_config(callback, body, tests, options) {
|
|
631
488
|
var _this70 = this;
|
|
632
|
-
|
|
633
489
|
return _asyncToGenerator(function* () {
|
|
634
490
|
return _this70.authStream(callback, 'PUT', '/connections/test', {
|
|
635
491
|
tests
|
|
636
492
|
}, body, options);
|
|
637
493
|
})();
|
|
638
494
|
}
|
|
639
|
-
|
|
640
495
|
all_dialect_infos(callback, fields, options) {
|
|
641
496
|
var _this71 = this;
|
|
642
|
-
|
|
643
497
|
return _asyncToGenerator(function* () {
|
|
644
498
|
return _this71.authStream(callback, 'GET', '/dialect_info', {
|
|
645
499
|
fields
|
|
646
500
|
}, null, options);
|
|
647
501
|
})();
|
|
648
502
|
}
|
|
649
|
-
|
|
650
503
|
search_content_favorites(callback, request, options) {
|
|
651
504
|
var _this72 = this;
|
|
652
|
-
|
|
653
505
|
return _asyncToGenerator(function* () {
|
|
654
506
|
return _this72.authStream(callback, 'GET', '/content_favorite/search', {
|
|
655
507
|
id: request.id,
|
|
@@ -665,36 +517,28 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
665
517
|
}, null, options);
|
|
666
518
|
})();
|
|
667
519
|
}
|
|
668
|
-
|
|
669
520
|
content_favorite(callback, content_favorite_id, fields, options) {
|
|
670
521
|
var _this73 = this;
|
|
671
|
-
|
|
672
522
|
return _asyncToGenerator(function* () {
|
|
673
523
|
return _this73.authStream(callback, 'GET', "/content_favorite/".concat(content_favorite_id), {
|
|
674
524
|
fields
|
|
675
525
|
}, null, options);
|
|
676
526
|
})();
|
|
677
527
|
}
|
|
678
|
-
|
|
679
528
|
delete_content_favorite(callback, content_favorite_id, options) {
|
|
680
529
|
var _this74 = this;
|
|
681
|
-
|
|
682
530
|
return _asyncToGenerator(function* () {
|
|
683
531
|
return _this74.authStream(callback, 'DELETE', "/content_favorite/".concat(content_favorite_id), null, null, options);
|
|
684
532
|
})();
|
|
685
533
|
}
|
|
686
|
-
|
|
687
534
|
create_content_favorite(callback, body, options) {
|
|
688
535
|
var _this75 = this;
|
|
689
|
-
|
|
690
536
|
return _asyncToGenerator(function* () {
|
|
691
537
|
return _this75.authStream(callback, 'POST', '/content_favorite', null, body, options);
|
|
692
538
|
})();
|
|
693
539
|
}
|
|
694
|
-
|
|
695
540
|
all_content_metadatas(callback, parent_id, fields, options) {
|
|
696
541
|
var _this76 = this;
|
|
697
|
-
|
|
698
542
|
return _asyncToGenerator(function* () {
|
|
699
543
|
return _this76.authStream(callback, 'GET', '/content_metadata', {
|
|
700
544
|
parent_id,
|
|
@@ -702,28 +546,22 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
702
546
|
}, null, options);
|
|
703
547
|
})();
|
|
704
548
|
}
|
|
705
|
-
|
|
706
549
|
content_metadata(callback, content_metadata_id, fields, options) {
|
|
707
550
|
var _this77 = this;
|
|
708
|
-
|
|
709
551
|
return _asyncToGenerator(function* () {
|
|
710
552
|
return _this77.authStream(callback, 'GET', "/content_metadata/".concat(content_metadata_id), {
|
|
711
553
|
fields
|
|
712
554
|
}, null, options);
|
|
713
555
|
})();
|
|
714
556
|
}
|
|
715
|
-
|
|
716
557
|
update_content_metadata(callback, content_metadata_id, body, options) {
|
|
717
558
|
var _this78 = this;
|
|
718
|
-
|
|
719
559
|
return _asyncToGenerator(function* () {
|
|
720
560
|
return _this78.authStream(callback, 'PATCH', "/content_metadata/".concat(content_metadata_id), null, body, options);
|
|
721
561
|
})();
|
|
722
562
|
}
|
|
723
|
-
|
|
724
563
|
all_content_metadata_accesses(callback, content_metadata_id, fields, options) {
|
|
725
564
|
var _this79 = this;
|
|
726
|
-
|
|
727
565
|
return _asyncToGenerator(function* () {
|
|
728
566
|
return _this79.authStream(callback, 'GET', '/content_metadata_access', {
|
|
729
567
|
content_metadata_id,
|
|
@@ -731,36 +569,28 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
731
569
|
}, null, options);
|
|
732
570
|
})();
|
|
733
571
|
}
|
|
734
|
-
|
|
735
572
|
create_content_metadata_access(callback, body, send_boards_notification_email, options) {
|
|
736
573
|
var _this80 = this;
|
|
737
|
-
|
|
738
574
|
return _asyncToGenerator(function* () {
|
|
739
575
|
return _this80.authStream(callback, 'POST', '/content_metadata_access', {
|
|
740
576
|
send_boards_notification_email
|
|
741
577
|
}, body, options);
|
|
742
578
|
})();
|
|
743
579
|
}
|
|
744
|
-
|
|
745
580
|
update_content_metadata_access(callback, content_metadata_access_id, body, options) {
|
|
746
581
|
var _this81 = this;
|
|
747
|
-
|
|
748
582
|
return _asyncToGenerator(function* () {
|
|
749
583
|
return _this81.authStream(callback, 'PUT', "/content_metadata_access/".concat(content_metadata_access_id), null, body, options);
|
|
750
584
|
})();
|
|
751
585
|
}
|
|
752
|
-
|
|
753
586
|
delete_content_metadata_access(callback, content_metadata_access_id, options) {
|
|
754
587
|
var _this82 = this;
|
|
755
|
-
|
|
756
588
|
return _asyncToGenerator(function* () {
|
|
757
589
|
return _this82.authStream(callback, 'DELETE', "/content_metadata_access/".concat(content_metadata_access_id), null, null, options);
|
|
758
590
|
})();
|
|
759
591
|
}
|
|
760
|
-
|
|
761
592
|
content_thumbnail(callback, request, options) {
|
|
762
593
|
var _this83 = this;
|
|
763
|
-
|
|
764
594
|
return _asyncToGenerator(function* () {
|
|
765
595
|
request.type = (0, _sdkRtl.encodeParam)(request.type);
|
|
766
596
|
request.resource_id = (0, _sdkRtl.encodeParam)(request.resource_id);
|
|
@@ -772,20 +602,16 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
772
602
|
}, null, options);
|
|
773
603
|
})();
|
|
774
604
|
}
|
|
775
|
-
|
|
776
605
|
content_validation(callback, fields, options) {
|
|
777
606
|
var _this84 = this;
|
|
778
|
-
|
|
779
607
|
return _asyncToGenerator(function* () {
|
|
780
608
|
return _this84.authStream(callback, 'GET', '/content_validation', {
|
|
781
609
|
fields
|
|
782
610
|
}, null, options);
|
|
783
611
|
})();
|
|
784
612
|
}
|
|
785
|
-
|
|
786
613
|
search_content_views(callback, request, options) {
|
|
787
614
|
var _this85 = this;
|
|
788
|
-
|
|
789
615
|
return _asyncToGenerator(function* () {
|
|
790
616
|
return _this85.authStream(callback, 'GET', '/content_view/search', {
|
|
791
617
|
view_count: request.view_count,
|
|
@@ -804,10 +630,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
804
630
|
}, null, options);
|
|
805
631
|
})();
|
|
806
632
|
}
|
|
807
|
-
|
|
808
633
|
vector_thumbnail(callback, type, resource_id, reload, options) {
|
|
809
634
|
var _this86 = this;
|
|
810
|
-
|
|
811
635
|
return _asyncToGenerator(function* () {
|
|
812
636
|
type = (0, _sdkRtl.encodeParam)(type);
|
|
813
637
|
resource_id = (0, _sdkRtl.encodeParam)(resource_id);
|
|
@@ -816,28 +640,22 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
816
640
|
}, null, options);
|
|
817
641
|
})();
|
|
818
642
|
}
|
|
819
|
-
|
|
820
643
|
all_dashboards(callback, fields, options) {
|
|
821
644
|
var _this87 = this;
|
|
822
|
-
|
|
823
645
|
return _asyncToGenerator(function* () {
|
|
824
646
|
return _this87.authStream(callback, 'GET', '/dashboards', {
|
|
825
647
|
fields
|
|
826
648
|
}, null, options);
|
|
827
649
|
})();
|
|
828
650
|
}
|
|
829
|
-
|
|
830
651
|
create_dashboard(callback, body, options) {
|
|
831
652
|
var _this88 = this;
|
|
832
|
-
|
|
833
653
|
return _asyncToGenerator(function* () {
|
|
834
654
|
return _this88.authStream(callback, 'POST', '/dashboards', null, body, options);
|
|
835
655
|
})();
|
|
836
656
|
}
|
|
837
|
-
|
|
838
657
|
search_dashboards(callback, request, options) {
|
|
839
658
|
var _this89 = this;
|
|
840
|
-
|
|
841
659
|
return _asyncToGenerator(function* () {
|
|
842
660
|
return _this89.authStream(callback, 'GET', '/dashboards/search', {
|
|
843
661
|
id: request.id,
|
|
@@ -860,10 +678,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
860
678
|
}, null, options);
|
|
861
679
|
})();
|
|
862
680
|
}
|
|
863
|
-
|
|
864
681
|
import_lookml_dashboard(callback, lookml_dashboard_id, space_id, body, raw_locale, options) {
|
|
865
682
|
var _this90 = this;
|
|
866
|
-
|
|
867
683
|
return _asyncToGenerator(function* () {
|
|
868
684
|
lookml_dashboard_id = (0, _sdkRtl.encodeParam)(lookml_dashboard_id);
|
|
869
685
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
@@ -872,10 +688,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
872
688
|
}, body, options);
|
|
873
689
|
})();
|
|
874
690
|
}
|
|
875
|
-
|
|
876
691
|
sync_lookml_dashboard(callback, lookml_dashboard_id, body, raw_locale, options) {
|
|
877
692
|
var _this91 = this;
|
|
878
|
-
|
|
879
693
|
return _asyncToGenerator(function* () {
|
|
880
694
|
lookml_dashboard_id = (0, _sdkRtl.encodeParam)(lookml_dashboard_id);
|
|
881
695
|
return _this91.authStream(callback, 'PATCH', "/dashboards/".concat(lookml_dashboard_id, "/sync"), {
|
|
@@ -883,10 +697,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
883
697
|
}, body, options);
|
|
884
698
|
})();
|
|
885
699
|
}
|
|
886
|
-
|
|
887
700
|
dashboard(callback, dashboard_id, fields, options) {
|
|
888
701
|
var _this92 = this;
|
|
889
|
-
|
|
890
702
|
return _asyncToGenerator(function* () {
|
|
891
703
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
892
704
|
return _this92.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id), {
|
|
@@ -894,46 +706,36 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
894
706
|
}, null, options);
|
|
895
707
|
})();
|
|
896
708
|
}
|
|
897
|
-
|
|
898
709
|
update_dashboard(callback, dashboard_id, body, options) {
|
|
899
710
|
var _this93 = this;
|
|
900
|
-
|
|
901
711
|
return _asyncToGenerator(function* () {
|
|
902
712
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
903
713
|
return _this93.authStream(callback, 'PATCH', "/dashboards/".concat(dashboard_id), null, body, options);
|
|
904
714
|
})();
|
|
905
715
|
}
|
|
906
|
-
|
|
907
716
|
delete_dashboard(callback, dashboard_id, options) {
|
|
908
717
|
var _this94 = this;
|
|
909
|
-
|
|
910
718
|
return _asyncToGenerator(function* () {
|
|
911
719
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
912
720
|
return _this94.authStream(callback, 'DELETE', "/dashboards/".concat(dashboard_id), null, null, options);
|
|
913
721
|
})();
|
|
914
722
|
}
|
|
915
|
-
|
|
916
723
|
dashboard_aggregate_table_lookml(callback, dashboard_id, options) {
|
|
917
724
|
var _this95 = this;
|
|
918
|
-
|
|
919
725
|
return _asyncToGenerator(function* () {
|
|
920
726
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
921
727
|
return _this95.authStream(callback, 'GET', "/dashboards/aggregate_table_lookml/".concat(dashboard_id), null, null, options);
|
|
922
728
|
})();
|
|
923
729
|
}
|
|
924
|
-
|
|
925
730
|
dashboard_lookml(callback, dashboard_id, options) {
|
|
926
731
|
var _this96 = this;
|
|
927
|
-
|
|
928
732
|
return _asyncToGenerator(function* () {
|
|
929
733
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
930
734
|
return _this96.authStream(callback, 'GET', "/dashboards/lookml/".concat(dashboard_id), null, null, options);
|
|
931
735
|
})();
|
|
932
736
|
}
|
|
933
|
-
|
|
934
737
|
search_dashboard_elements(callback, request, options) {
|
|
935
738
|
var _this97 = this;
|
|
936
|
-
|
|
937
739
|
return _asyncToGenerator(function* () {
|
|
938
740
|
return _this97.authStream(callback, 'GET', '/dashboard_elements/search', {
|
|
939
741
|
dashboard_id: request.dashboard_id,
|
|
@@ -946,10 +748,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
946
748
|
}, null, options);
|
|
947
749
|
})();
|
|
948
750
|
}
|
|
949
|
-
|
|
950
751
|
dashboard_element(callback, dashboard_element_id, fields, options) {
|
|
951
752
|
var _this98 = this;
|
|
952
|
-
|
|
953
753
|
return _asyncToGenerator(function* () {
|
|
954
754
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
955
755
|
return _this98.authStream(callback, 'GET', "/dashboard_elements/".concat(dashboard_element_id), {
|
|
@@ -957,10 +757,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
957
757
|
}, null, options);
|
|
958
758
|
})();
|
|
959
759
|
}
|
|
960
|
-
|
|
961
760
|
update_dashboard_element(callback, dashboard_element_id, body, fields, options) {
|
|
962
761
|
var _this99 = this;
|
|
963
|
-
|
|
964
762
|
return _asyncToGenerator(function* () {
|
|
965
763
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
966
764
|
return _this99.authStream(callback, 'PATCH', "/dashboard_elements/".concat(dashboard_element_id), {
|
|
@@ -968,19 +766,15 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
968
766
|
}, body, options);
|
|
969
767
|
})();
|
|
970
768
|
}
|
|
971
|
-
|
|
972
769
|
delete_dashboard_element(callback, dashboard_element_id, options) {
|
|
973
770
|
var _this100 = this;
|
|
974
|
-
|
|
975
771
|
return _asyncToGenerator(function* () {
|
|
976
772
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
977
773
|
return _this100.authStream(callback, 'DELETE', "/dashboard_elements/".concat(dashboard_element_id), null, null, options);
|
|
978
774
|
})();
|
|
979
775
|
}
|
|
980
|
-
|
|
981
776
|
dashboard_dashboard_elements(callback, dashboard_id, fields, options) {
|
|
982
777
|
var _this101 = this;
|
|
983
|
-
|
|
984
778
|
return _asyncToGenerator(function* () {
|
|
985
779
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
986
780
|
return _this101.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_elements"), {
|
|
@@ -988,10 +782,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
988
782
|
}, null, options);
|
|
989
783
|
})();
|
|
990
784
|
}
|
|
991
|
-
|
|
992
785
|
create_dashboard_element(callback, request, options) {
|
|
993
786
|
var _this102 = this;
|
|
994
|
-
|
|
995
787
|
return _asyncToGenerator(function* () {
|
|
996
788
|
return _this102.authStream(callback, 'POST', '/dashboard_elements', {
|
|
997
789
|
fields: request.fields,
|
|
@@ -999,10 +791,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
999
791
|
}, request.body, options);
|
|
1000
792
|
})();
|
|
1001
793
|
}
|
|
1002
|
-
|
|
1003
794
|
dashboard_filter(callback, dashboard_filter_id, fields, options) {
|
|
1004
795
|
var _this103 = this;
|
|
1005
|
-
|
|
1006
796
|
return _asyncToGenerator(function* () {
|
|
1007
797
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
1008
798
|
return _this103.authStream(callback, 'GET', "/dashboard_filters/".concat(dashboard_filter_id), {
|
|
@@ -1010,10 +800,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1010
800
|
}, null, options);
|
|
1011
801
|
})();
|
|
1012
802
|
}
|
|
1013
|
-
|
|
1014
803
|
update_dashboard_filter(callback, dashboard_filter_id, body, fields, options) {
|
|
1015
804
|
var _this104 = this;
|
|
1016
|
-
|
|
1017
805
|
return _asyncToGenerator(function* () {
|
|
1018
806
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
1019
807
|
return _this104.authStream(callback, 'PATCH', "/dashboard_filters/".concat(dashboard_filter_id), {
|
|
@@ -1021,19 +809,15 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1021
809
|
}, body, options);
|
|
1022
810
|
})();
|
|
1023
811
|
}
|
|
1024
|
-
|
|
1025
812
|
delete_dashboard_filter(callback, dashboard_filter_id, options) {
|
|
1026
813
|
var _this105 = this;
|
|
1027
|
-
|
|
1028
814
|
return _asyncToGenerator(function* () {
|
|
1029
815
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
1030
816
|
return _this105.authStream(callback, 'DELETE', "/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
|
|
1031
817
|
})();
|
|
1032
818
|
}
|
|
1033
|
-
|
|
1034
819
|
dashboard_dashboard_filters(callback, dashboard_id, fields, options) {
|
|
1035
820
|
var _this106 = this;
|
|
1036
|
-
|
|
1037
821
|
return _asyncToGenerator(function* () {
|
|
1038
822
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1039
823
|
return _this106.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_filters"), {
|
|
@@ -1041,20 +825,16 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1041
825
|
}, null, options);
|
|
1042
826
|
})();
|
|
1043
827
|
}
|
|
1044
|
-
|
|
1045
828
|
create_dashboard_filter(callback, body, fields, options) {
|
|
1046
829
|
var _this107 = this;
|
|
1047
|
-
|
|
1048
830
|
return _asyncToGenerator(function* () {
|
|
1049
831
|
return _this107.authStream(callback, 'POST', '/dashboard_filters', {
|
|
1050
832
|
fields
|
|
1051
833
|
}, body, options);
|
|
1052
834
|
})();
|
|
1053
835
|
}
|
|
1054
|
-
|
|
1055
836
|
dashboard_layout_component(callback, dashboard_layout_component_id, fields, options) {
|
|
1056
837
|
var _this108 = this;
|
|
1057
|
-
|
|
1058
838
|
return _asyncToGenerator(function* () {
|
|
1059
839
|
dashboard_layout_component_id = (0, _sdkRtl.encodeParam)(dashboard_layout_component_id);
|
|
1060
840
|
return _this108.authStream(callback, 'GET', "/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
@@ -1062,10 +842,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1062
842
|
}, null, options);
|
|
1063
843
|
})();
|
|
1064
844
|
}
|
|
1065
|
-
|
|
1066
845
|
update_dashboard_layout_component(callback, dashboard_layout_component_id, body, fields, options) {
|
|
1067
846
|
var _this109 = this;
|
|
1068
|
-
|
|
1069
847
|
return _asyncToGenerator(function* () {
|
|
1070
848
|
dashboard_layout_component_id = (0, _sdkRtl.encodeParam)(dashboard_layout_component_id);
|
|
1071
849
|
return _this109.authStream(callback, 'PATCH', "/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
@@ -1073,10 +851,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1073
851
|
}, body, options);
|
|
1074
852
|
})();
|
|
1075
853
|
}
|
|
1076
|
-
|
|
1077
854
|
dashboard_layout_dashboard_layout_components(callback, dashboard_layout_id, fields, options) {
|
|
1078
855
|
var _this110 = this;
|
|
1079
|
-
|
|
1080
856
|
return _asyncToGenerator(function* () {
|
|
1081
857
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1082
858
|
return _this110.authStream(callback, 'GET', "/dashboard_layouts/".concat(dashboard_layout_id, "/dashboard_layout_components"), {
|
|
@@ -1084,10 +860,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1084
860
|
}, null, options);
|
|
1085
861
|
})();
|
|
1086
862
|
}
|
|
1087
|
-
|
|
1088
863
|
dashboard_layout(callback, dashboard_layout_id, fields, options) {
|
|
1089
864
|
var _this111 = this;
|
|
1090
|
-
|
|
1091
865
|
return _asyncToGenerator(function* () {
|
|
1092
866
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1093
867
|
return _this111.authStream(callback, 'GET', "/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
@@ -1095,10 +869,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1095
869
|
}, null, options);
|
|
1096
870
|
})();
|
|
1097
871
|
}
|
|
1098
|
-
|
|
1099
872
|
update_dashboard_layout(callback, dashboard_layout_id, body, fields, options) {
|
|
1100
873
|
var _this112 = this;
|
|
1101
|
-
|
|
1102
874
|
return _asyncToGenerator(function* () {
|
|
1103
875
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1104
876
|
return _this112.authStream(callback, 'PATCH', "/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
@@ -1106,19 +878,15 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1106
878
|
}, body, options);
|
|
1107
879
|
})();
|
|
1108
880
|
}
|
|
1109
|
-
|
|
1110
881
|
delete_dashboard_layout(callback, dashboard_layout_id, options) {
|
|
1111
882
|
var _this113 = this;
|
|
1112
|
-
|
|
1113
883
|
return _asyncToGenerator(function* () {
|
|
1114
884
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1115
885
|
return _this113.authStream(callback, 'DELETE', "/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
|
|
1116
886
|
})();
|
|
1117
887
|
}
|
|
1118
|
-
|
|
1119
888
|
dashboard_dashboard_layouts(callback, dashboard_id, fields, options) {
|
|
1120
889
|
var _this114 = this;
|
|
1121
|
-
|
|
1122
890
|
return _asyncToGenerator(function* () {
|
|
1123
891
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1124
892
|
return _this114.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_layouts"), {
|
|
@@ -1126,62 +894,48 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1126
894
|
}, null, options);
|
|
1127
895
|
})();
|
|
1128
896
|
}
|
|
1129
|
-
|
|
1130
897
|
create_dashboard_layout(callback, body, fields, options) {
|
|
1131
898
|
var _this115 = this;
|
|
1132
|
-
|
|
1133
899
|
return _asyncToGenerator(function* () {
|
|
1134
900
|
return _this115.authStream(callback, 'POST', '/dashboard_layouts', {
|
|
1135
901
|
fields
|
|
1136
902
|
}, body, options);
|
|
1137
903
|
})();
|
|
1138
904
|
}
|
|
1139
|
-
|
|
1140
905
|
perform_data_action(callback, body, options) {
|
|
1141
906
|
var _this116 = this;
|
|
1142
|
-
|
|
1143
907
|
return _asyncToGenerator(function* () {
|
|
1144
908
|
return _this116.authStream(callback, 'POST', '/data_actions', null, body, options);
|
|
1145
909
|
})();
|
|
1146
910
|
}
|
|
1147
|
-
|
|
1148
911
|
fetch_remote_data_action_form(callback, body, options) {
|
|
1149
912
|
var _this117 = this;
|
|
1150
|
-
|
|
1151
913
|
return _asyncToGenerator(function* () {
|
|
1152
914
|
return _this117.authStream(callback, 'POST', '/data_actions/form', null, body, options);
|
|
1153
915
|
})();
|
|
1154
916
|
}
|
|
1155
|
-
|
|
1156
917
|
all_datagroups(callback, options) {
|
|
1157
918
|
var _this118 = this;
|
|
1158
|
-
|
|
1159
919
|
return _asyncToGenerator(function* () {
|
|
1160
920
|
return _this118.authStream(callback, 'GET', '/datagroups', null, null, options);
|
|
1161
921
|
})();
|
|
1162
922
|
}
|
|
1163
|
-
|
|
1164
923
|
datagroup(callback, datagroup_id, options) {
|
|
1165
924
|
var _this119 = this;
|
|
1166
|
-
|
|
1167
925
|
return _asyncToGenerator(function* () {
|
|
1168
926
|
datagroup_id = (0, _sdkRtl.encodeParam)(datagroup_id);
|
|
1169
927
|
return _this119.authStream(callback, 'GET', "/datagroups/".concat(datagroup_id), null, null, options);
|
|
1170
928
|
})();
|
|
1171
929
|
}
|
|
1172
|
-
|
|
1173
930
|
update_datagroup(callback, datagroup_id, body, options) {
|
|
1174
931
|
var _this120 = this;
|
|
1175
|
-
|
|
1176
932
|
return _asyncToGenerator(function* () {
|
|
1177
933
|
datagroup_id = (0, _sdkRtl.encodeParam)(datagroup_id);
|
|
1178
934
|
return _this120.authStream(callback, 'PATCH', "/datagroups/".concat(datagroup_id), null, body, options);
|
|
1179
935
|
})();
|
|
1180
936
|
}
|
|
1181
|
-
|
|
1182
937
|
graph_derived_tables_for_model(callback, request, options) {
|
|
1183
938
|
var _this121 = this;
|
|
1184
|
-
|
|
1185
939
|
return _asyncToGenerator(function* () {
|
|
1186
940
|
request.model = (0, _sdkRtl.encodeParam)(request.model);
|
|
1187
941
|
return _this121.authStream(callback, 'GET', "/derived_table/graph/model/".concat(request.model), {
|
|
@@ -1190,10 +944,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1190
944
|
}, null, options);
|
|
1191
945
|
})();
|
|
1192
946
|
}
|
|
1193
|
-
|
|
1194
947
|
graph_derived_tables_for_view(callback, request, options) {
|
|
1195
948
|
var _this122 = this;
|
|
1196
|
-
|
|
1197
949
|
return _asyncToGenerator(function* () {
|
|
1198
950
|
request.view = (0, _sdkRtl.encodeParam)(request.view);
|
|
1199
951
|
return _this122.authStream(callback, 'GET', "/derived_table/graph/view/".concat(request.view), {
|
|
@@ -1202,10 +954,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1202
954
|
}, null, options);
|
|
1203
955
|
})();
|
|
1204
956
|
}
|
|
1205
|
-
|
|
1206
957
|
start_pdt_build(callback, request, options) {
|
|
1207
958
|
var _this123 = this;
|
|
1208
|
-
|
|
1209
959
|
return _asyncToGenerator(function* () {
|
|
1210
960
|
request.model_name = (0, _sdkRtl.encodeParam)(request.model_name);
|
|
1211
961
|
request.view_name = (0, _sdkRtl.encodeParam)(request.view_name);
|
|
@@ -1217,19 +967,15 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1217
967
|
}, null, options);
|
|
1218
968
|
})();
|
|
1219
969
|
}
|
|
1220
|
-
|
|
1221
970
|
check_pdt_build(callback, materialization_id, options) {
|
|
1222
971
|
var _this124 = this;
|
|
1223
|
-
|
|
1224
972
|
return _asyncToGenerator(function* () {
|
|
1225
973
|
materialization_id = (0, _sdkRtl.encodeParam)(materialization_id);
|
|
1226
974
|
return _this124.authStream(callback, 'GET', "/derived_table/".concat(materialization_id, "/status"), null, null, options);
|
|
1227
975
|
})();
|
|
1228
976
|
}
|
|
1229
|
-
|
|
1230
977
|
stop_pdt_build(callback, materialization_id, source, options) {
|
|
1231
978
|
var _this125 = this;
|
|
1232
|
-
|
|
1233
979
|
return _asyncToGenerator(function* () {
|
|
1234
980
|
materialization_id = (0, _sdkRtl.encodeParam)(materialization_id);
|
|
1235
981
|
return _this125.authStream(callback, 'GET', "/derived_table/".concat(materialization_id, "/stop"), {
|
|
@@ -1237,10 +983,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1237
983
|
}, null, options);
|
|
1238
984
|
})();
|
|
1239
985
|
}
|
|
1240
|
-
|
|
1241
986
|
search_folders(callback, request, options) {
|
|
1242
987
|
var _this126 = this;
|
|
1243
|
-
|
|
1244
988
|
return _asyncToGenerator(function* () {
|
|
1245
989
|
return _this126.authStream(callback, 'GET', '/folders/search', {
|
|
1246
990
|
fields: request.fields,
|
|
@@ -1258,10 +1002,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1258
1002
|
}, null, options);
|
|
1259
1003
|
})();
|
|
1260
1004
|
}
|
|
1261
|
-
|
|
1262
1005
|
folder(callback, folder_id, fields, options) {
|
|
1263
1006
|
var _this127 = this;
|
|
1264
|
-
|
|
1265
1007
|
return _asyncToGenerator(function* () {
|
|
1266
1008
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1267
1009
|
return _this127.authStream(callback, 'GET', "/folders/".concat(folder_id), {
|
|
@@ -1269,46 +1011,36 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1269
1011
|
}, null, options);
|
|
1270
1012
|
})();
|
|
1271
1013
|
}
|
|
1272
|
-
|
|
1273
1014
|
update_folder(callback, folder_id, body, options) {
|
|
1274
1015
|
var _this128 = this;
|
|
1275
|
-
|
|
1276
1016
|
return _asyncToGenerator(function* () {
|
|
1277
1017
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1278
1018
|
return _this128.authStream(callback, 'PATCH', "/folders/".concat(folder_id), null, body, options);
|
|
1279
1019
|
})();
|
|
1280
1020
|
}
|
|
1281
|
-
|
|
1282
1021
|
delete_folder(callback, folder_id, options) {
|
|
1283
1022
|
var _this129 = this;
|
|
1284
|
-
|
|
1285
1023
|
return _asyncToGenerator(function* () {
|
|
1286
1024
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1287
1025
|
return _this129.authStream(callback, 'DELETE', "/folders/".concat(folder_id), null, null, options);
|
|
1288
1026
|
})();
|
|
1289
1027
|
}
|
|
1290
|
-
|
|
1291
1028
|
all_folders(callback, fields, options) {
|
|
1292
1029
|
var _this130 = this;
|
|
1293
|
-
|
|
1294
1030
|
return _asyncToGenerator(function* () {
|
|
1295
1031
|
return _this130.authStream(callback, 'GET', '/folders', {
|
|
1296
1032
|
fields
|
|
1297
1033
|
}, null, options);
|
|
1298
1034
|
})();
|
|
1299
1035
|
}
|
|
1300
|
-
|
|
1301
1036
|
create_folder(callback, body, options) {
|
|
1302
1037
|
var _this131 = this;
|
|
1303
|
-
|
|
1304
1038
|
return _asyncToGenerator(function* () {
|
|
1305
1039
|
return _this131.authStream(callback, 'POST', '/folders', null, body, options);
|
|
1306
1040
|
})();
|
|
1307
1041
|
}
|
|
1308
|
-
|
|
1309
1042
|
folder_children(callback, request, options) {
|
|
1310
1043
|
var _this132 = this;
|
|
1311
|
-
|
|
1312
1044
|
return _asyncToGenerator(function* () {
|
|
1313
1045
|
request.folder_id = (0, _sdkRtl.encodeParam)(request.folder_id);
|
|
1314
1046
|
return _this132.authStream(callback, 'GET', "/folders/".concat(request.folder_id, "/children"), {
|
|
@@ -1319,10 +1051,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1319
1051
|
}, null, options);
|
|
1320
1052
|
})();
|
|
1321
1053
|
}
|
|
1322
|
-
|
|
1323
1054
|
folder_children_search(callback, request, options) {
|
|
1324
1055
|
var _this133 = this;
|
|
1325
|
-
|
|
1326
1056
|
return _asyncToGenerator(function* () {
|
|
1327
1057
|
request.folder_id = (0, _sdkRtl.encodeParam)(request.folder_id);
|
|
1328
1058
|
return _this133.authStream(callback, 'GET', "/folders/".concat(request.folder_id, "/children/search"), {
|
|
@@ -1332,10 +1062,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1332
1062
|
}, null, options);
|
|
1333
1063
|
})();
|
|
1334
1064
|
}
|
|
1335
|
-
|
|
1336
1065
|
folder_parent(callback, folder_id, fields, options) {
|
|
1337
1066
|
var _this134 = this;
|
|
1338
|
-
|
|
1339
1067
|
return _asyncToGenerator(function* () {
|
|
1340
1068
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1341
1069
|
return _this134.authStream(callback, 'GET', "/folders/".concat(folder_id, "/parent"), {
|
|
@@ -1343,10 +1071,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1343
1071
|
}, null, options);
|
|
1344
1072
|
})();
|
|
1345
1073
|
}
|
|
1346
|
-
|
|
1347
1074
|
folder_ancestors(callback, folder_id, fields, options) {
|
|
1348
1075
|
var _this135 = this;
|
|
1349
|
-
|
|
1350
1076
|
return _asyncToGenerator(function* () {
|
|
1351
1077
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1352
1078
|
return _this135.authStream(callback, 'GET', "/folders/".concat(folder_id, "/ancestors"), {
|
|
@@ -1354,10 +1080,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1354
1080
|
}, null, options);
|
|
1355
1081
|
})();
|
|
1356
1082
|
}
|
|
1357
|
-
|
|
1358
1083
|
folder_looks(callback, folder_id, fields, options) {
|
|
1359
1084
|
var _this136 = this;
|
|
1360
|
-
|
|
1361
1085
|
return _asyncToGenerator(function* () {
|
|
1362
1086
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1363
1087
|
return _this136.authStream(callback, 'GET', "/folders/".concat(folder_id, "/looks"), {
|
|
@@ -1365,10 +1089,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1365
1089
|
}, null, options);
|
|
1366
1090
|
})();
|
|
1367
1091
|
}
|
|
1368
|
-
|
|
1369
1092
|
folder_dashboards(callback, folder_id, fields, options) {
|
|
1370
1093
|
var _this137 = this;
|
|
1371
|
-
|
|
1372
1094
|
return _asyncToGenerator(function* () {
|
|
1373
1095
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1374
1096
|
return _this137.authStream(callback, 'GET', "/folders/".concat(folder_id, "/dashboards"), {
|
|
@@ -1376,10 +1098,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1376
1098
|
}, null, options);
|
|
1377
1099
|
})();
|
|
1378
1100
|
}
|
|
1379
|
-
|
|
1380
1101
|
all_groups(callback, request, options) {
|
|
1381
1102
|
var _this138 = this;
|
|
1382
|
-
|
|
1383
1103
|
return _asyncToGenerator(function* () {
|
|
1384
1104
|
return _this138.authStream(callback, 'GET', '/groups', {
|
|
1385
1105
|
fields: request.fields,
|
|
@@ -1392,20 +1112,16 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1392
1112
|
}, null, options);
|
|
1393
1113
|
})();
|
|
1394
1114
|
}
|
|
1395
|
-
|
|
1396
1115
|
create_group(callback, body, fields, options) {
|
|
1397
1116
|
var _this139 = this;
|
|
1398
|
-
|
|
1399
1117
|
return _asyncToGenerator(function* () {
|
|
1400
1118
|
return _this139.authStream(callback, 'POST', '/groups', {
|
|
1401
1119
|
fields
|
|
1402
1120
|
}, body, options);
|
|
1403
1121
|
})();
|
|
1404
1122
|
}
|
|
1405
|
-
|
|
1406
1123
|
search_groups(callback, request, options) {
|
|
1407
1124
|
var _this140 = this;
|
|
1408
|
-
|
|
1409
1125
|
return _asyncToGenerator(function* () {
|
|
1410
1126
|
return _this140.authStream(callback, 'GET', '/groups/search', {
|
|
1411
1127
|
fields: request.fields,
|
|
@@ -1421,56 +1137,44 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1421
1137
|
}, null, options);
|
|
1422
1138
|
})();
|
|
1423
1139
|
}
|
|
1424
|
-
|
|
1425
1140
|
group(callback, group_id, fields, options) {
|
|
1426
1141
|
var _this141 = this;
|
|
1427
|
-
|
|
1428
1142
|
return _asyncToGenerator(function* () {
|
|
1429
1143
|
return _this141.authStream(callback, 'GET', "/groups/".concat(group_id), {
|
|
1430
1144
|
fields
|
|
1431
1145
|
}, null, options);
|
|
1432
1146
|
})();
|
|
1433
1147
|
}
|
|
1434
|
-
|
|
1435
1148
|
update_group(callback, group_id, body, fields, options) {
|
|
1436
1149
|
var _this142 = this;
|
|
1437
|
-
|
|
1438
1150
|
return _asyncToGenerator(function* () {
|
|
1439
1151
|
return _this142.authStream(callback, 'PATCH', "/groups/".concat(group_id), {
|
|
1440
1152
|
fields
|
|
1441
1153
|
}, body, options);
|
|
1442
1154
|
})();
|
|
1443
1155
|
}
|
|
1444
|
-
|
|
1445
1156
|
delete_group(callback, group_id, options) {
|
|
1446
1157
|
var _this143 = this;
|
|
1447
|
-
|
|
1448
1158
|
return _asyncToGenerator(function* () {
|
|
1449
1159
|
return _this143.authStream(callback, 'DELETE', "/groups/".concat(group_id), null, null, options);
|
|
1450
1160
|
})();
|
|
1451
1161
|
}
|
|
1452
|
-
|
|
1453
1162
|
all_group_groups(callback, group_id, fields, options) {
|
|
1454
1163
|
var _this144 = this;
|
|
1455
|
-
|
|
1456
1164
|
return _asyncToGenerator(function* () {
|
|
1457
1165
|
return _this144.authStream(callback, 'GET', "/groups/".concat(group_id, "/groups"), {
|
|
1458
1166
|
fields
|
|
1459
1167
|
}, null, options);
|
|
1460
1168
|
})();
|
|
1461
1169
|
}
|
|
1462
|
-
|
|
1463
1170
|
add_group_group(callback, group_id, body, options) {
|
|
1464
1171
|
var _this145 = this;
|
|
1465
|
-
|
|
1466
1172
|
return _asyncToGenerator(function* () {
|
|
1467
1173
|
return _this145.authStream(callback, 'POST', "/groups/".concat(group_id, "/groups"), null, body, options);
|
|
1468
1174
|
})();
|
|
1469
1175
|
}
|
|
1470
|
-
|
|
1471
1176
|
all_group_users(callback, request, options) {
|
|
1472
1177
|
var _this146 = this;
|
|
1473
|
-
|
|
1474
1178
|
return _asyncToGenerator(function* () {
|
|
1475
1179
|
return _this146.authStream(callback, 'GET', "/groups/".concat(request.group_id, "/users"), {
|
|
1476
1180
|
fields: request.fields,
|
|
@@ -1480,70 +1184,54 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1480
1184
|
}, null, options);
|
|
1481
1185
|
})();
|
|
1482
1186
|
}
|
|
1483
|
-
|
|
1484
1187
|
add_group_user(callback, group_id, body, options) {
|
|
1485
1188
|
var _this147 = this;
|
|
1486
|
-
|
|
1487
1189
|
return _asyncToGenerator(function* () {
|
|
1488
1190
|
return _this147.authStream(callback, 'POST', "/groups/".concat(group_id, "/users"), null, body, options);
|
|
1489
1191
|
})();
|
|
1490
1192
|
}
|
|
1491
|
-
|
|
1492
1193
|
delete_group_user(callback, group_id, user_id, options) {
|
|
1493
1194
|
var _this148 = this;
|
|
1494
|
-
|
|
1495
1195
|
return _asyncToGenerator(function* () {
|
|
1496
1196
|
return _this148.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
|
|
1497
1197
|
})();
|
|
1498
1198
|
}
|
|
1499
|
-
|
|
1500
1199
|
delete_group_from_group(callback, group_id, deleting_group_id, options) {
|
|
1501
1200
|
var _this149 = this;
|
|
1502
|
-
|
|
1503
1201
|
return _asyncToGenerator(function* () {
|
|
1504
1202
|
return _this149.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
|
|
1505
1203
|
})();
|
|
1506
1204
|
}
|
|
1507
|
-
|
|
1508
1205
|
update_user_attribute_group_value(callback, group_id, user_attribute_id, body, options) {
|
|
1509
1206
|
var _this150 = this;
|
|
1510
|
-
|
|
1511
1207
|
return _asyncToGenerator(function* () {
|
|
1512
1208
|
return _this150.authStream(callback, 'PATCH', "/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
1513
1209
|
})();
|
|
1514
1210
|
}
|
|
1515
|
-
|
|
1516
1211
|
delete_user_attribute_group_value(callback, group_id, user_attribute_id, options) {
|
|
1517
1212
|
var _this151 = this;
|
|
1518
|
-
|
|
1519
1213
|
return _asyncToGenerator(function* () {
|
|
1520
1214
|
return _this151.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
1521
1215
|
})();
|
|
1522
1216
|
}
|
|
1523
|
-
|
|
1524
1217
|
all_homepages(callback, fields, options) {
|
|
1525
1218
|
var _this152 = this;
|
|
1526
|
-
|
|
1527
1219
|
return _asyncToGenerator(function* () {
|
|
1528
1220
|
return _this152.authStream(callback, 'GET', '/homepages', {
|
|
1529
1221
|
fields
|
|
1530
1222
|
}, null, options);
|
|
1531
1223
|
})();
|
|
1532
1224
|
}
|
|
1533
|
-
|
|
1534
1225
|
create_homepage(callback, body, fields, options) {
|
|
1535
1226
|
var _this153 = this;
|
|
1536
|
-
|
|
1537
1227
|
return _asyncToGenerator(function* () {
|
|
1538
1228
|
return _this153.authStream(callback, 'POST', '/homepages', {
|
|
1539
1229
|
fields
|
|
1540
1230
|
}, body, options);
|
|
1541
1231
|
})();
|
|
1542
1232
|
}
|
|
1543
|
-
|
|
1544
1233
|
search_homepages(callback, request, options) {
|
|
1545
1234
|
var _this154 = this;
|
|
1546
|
-
|
|
1547
1235
|
return _asyncToGenerator(function* () {
|
|
1548
1236
|
return _this154.authStream(callback, 'GET', '/homepages/search', {
|
|
1549
1237
|
title: request.title,
|
|
@@ -1562,38 +1250,30 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1562
1250
|
}, null, options);
|
|
1563
1251
|
})();
|
|
1564
1252
|
}
|
|
1565
|
-
|
|
1566
1253
|
homepage(callback, homepage_id, fields, options) {
|
|
1567
1254
|
var _this155 = this;
|
|
1568
|
-
|
|
1569
1255
|
return _asyncToGenerator(function* () {
|
|
1570
1256
|
return _this155.authStream(callback, 'GET', "/homepages/".concat(homepage_id), {
|
|
1571
1257
|
fields
|
|
1572
1258
|
}, null, options);
|
|
1573
1259
|
})();
|
|
1574
1260
|
}
|
|
1575
|
-
|
|
1576
1261
|
update_homepage(callback, homepage_id, body, fields, options) {
|
|
1577
1262
|
var _this156 = this;
|
|
1578
|
-
|
|
1579
1263
|
return _asyncToGenerator(function* () {
|
|
1580
1264
|
return _this156.authStream(callback, 'PATCH', "/homepages/".concat(homepage_id), {
|
|
1581
1265
|
fields
|
|
1582
1266
|
}, body, options);
|
|
1583
1267
|
})();
|
|
1584
1268
|
}
|
|
1585
|
-
|
|
1586
1269
|
delete_homepage(callback, homepage_id, options) {
|
|
1587
1270
|
var _this157 = this;
|
|
1588
|
-
|
|
1589
1271
|
return _asyncToGenerator(function* () {
|
|
1590
1272
|
return _this157.authStream(callback, 'DELETE', "/homepages/".concat(homepage_id), null, null, options);
|
|
1591
1273
|
})();
|
|
1592
1274
|
}
|
|
1593
|
-
|
|
1594
1275
|
all_homepage_items(callback, request, options) {
|
|
1595
1276
|
var _this158 = this;
|
|
1596
|
-
|
|
1597
1277
|
return _asyncToGenerator(function* () {
|
|
1598
1278
|
return _this158.authStream(callback, 'GET', '/homepage_items', {
|
|
1599
1279
|
fields: request.fields,
|
|
@@ -1602,48 +1282,38 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1602
1282
|
}, null, options);
|
|
1603
1283
|
})();
|
|
1604
1284
|
}
|
|
1605
|
-
|
|
1606
1285
|
create_homepage_item(callback, body, fields, options) {
|
|
1607
1286
|
var _this159 = this;
|
|
1608
|
-
|
|
1609
1287
|
return _asyncToGenerator(function* () {
|
|
1610
1288
|
return _this159.authStream(callback, 'POST', '/homepage_items', {
|
|
1611
1289
|
fields
|
|
1612
1290
|
}, body, options);
|
|
1613
1291
|
})();
|
|
1614
1292
|
}
|
|
1615
|
-
|
|
1616
1293
|
homepage_item(callback, homepage_item_id, fields, options) {
|
|
1617
1294
|
var _this160 = this;
|
|
1618
|
-
|
|
1619
1295
|
return _asyncToGenerator(function* () {
|
|
1620
1296
|
return _this160.authStream(callback, 'GET', "/homepage_items/".concat(homepage_item_id), {
|
|
1621
1297
|
fields
|
|
1622
1298
|
}, null, options);
|
|
1623
1299
|
})();
|
|
1624
1300
|
}
|
|
1625
|
-
|
|
1626
1301
|
update_homepage_item(callback, homepage_item_id, body, fields, options) {
|
|
1627
1302
|
var _this161 = this;
|
|
1628
|
-
|
|
1629
1303
|
return _asyncToGenerator(function* () {
|
|
1630
1304
|
return _this161.authStream(callback, 'PATCH', "/homepage_items/".concat(homepage_item_id), {
|
|
1631
1305
|
fields
|
|
1632
1306
|
}, body, options);
|
|
1633
1307
|
})();
|
|
1634
1308
|
}
|
|
1635
|
-
|
|
1636
1309
|
delete_homepage_item(callback, homepage_item_id, options) {
|
|
1637
1310
|
var _this162 = this;
|
|
1638
|
-
|
|
1639
1311
|
return _asyncToGenerator(function* () {
|
|
1640
1312
|
return _this162.authStream(callback, 'DELETE', "/homepage_items/".concat(homepage_item_id), null, null, options);
|
|
1641
1313
|
})();
|
|
1642
1314
|
}
|
|
1643
|
-
|
|
1644
1315
|
all_homepage_sections(callback, request, options) {
|
|
1645
1316
|
var _this163 = this;
|
|
1646
|
-
|
|
1647
1317
|
return _asyncToGenerator(function* () {
|
|
1648
1318
|
return _this163.authStream(callback, 'GET', '/homepage_sections', {
|
|
1649
1319
|
fields: request.fields,
|
|
@@ -1651,114 +1321,90 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1651
1321
|
}, null, options);
|
|
1652
1322
|
})();
|
|
1653
1323
|
}
|
|
1654
|
-
|
|
1655
1324
|
create_homepage_section(callback, body, fields, options) {
|
|
1656
1325
|
var _this164 = this;
|
|
1657
|
-
|
|
1658
1326
|
return _asyncToGenerator(function* () {
|
|
1659
1327
|
return _this164.authStream(callback, 'POST', '/homepage_sections', {
|
|
1660
1328
|
fields
|
|
1661
1329
|
}, body, options);
|
|
1662
1330
|
})();
|
|
1663
1331
|
}
|
|
1664
|
-
|
|
1665
1332
|
homepage_section(callback, homepage_section_id, fields, options) {
|
|
1666
1333
|
var _this165 = this;
|
|
1667
|
-
|
|
1668
1334
|
return _asyncToGenerator(function* () {
|
|
1669
1335
|
return _this165.authStream(callback, 'GET', "/homepage_sections/".concat(homepage_section_id), {
|
|
1670
1336
|
fields
|
|
1671
1337
|
}, null, options);
|
|
1672
1338
|
})();
|
|
1673
1339
|
}
|
|
1674
|
-
|
|
1675
1340
|
update_homepage_section(callback, homepage_section_id, body, fields, options) {
|
|
1676
1341
|
var _this166 = this;
|
|
1677
|
-
|
|
1678
1342
|
return _asyncToGenerator(function* () {
|
|
1679
1343
|
return _this166.authStream(callback, 'PATCH', "/homepage_sections/".concat(homepage_section_id), {
|
|
1680
1344
|
fields
|
|
1681
1345
|
}, body, options);
|
|
1682
1346
|
})();
|
|
1683
1347
|
}
|
|
1684
|
-
|
|
1685
1348
|
delete_homepage_section(callback, homepage_section_id, options) {
|
|
1686
1349
|
var _this167 = this;
|
|
1687
|
-
|
|
1688
1350
|
return _asyncToGenerator(function* () {
|
|
1689
1351
|
return _this167.authStream(callback, 'DELETE', "/homepage_sections/".concat(homepage_section_id), null, null, options);
|
|
1690
1352
|
})();
|
|
1691
1353
|
}
|
|
1692
|
-
|
|
1693
1354
|
all_primary_homepage_sections(callback, fields, options) {
|
|
1694
1355
|
var _this168 = this;
|
|
1695
|
-
|
|
1696
1356
|
return _asyncToGenerator(function* () {
|
|
1697
1357
|
return _this168.authStream(callback, 'GET', '/primary_homepage_sections', {
|
|
1698
1358
|
fields
|
|
1699
1359
|
}, null, options);
|
|
1700
1360
|
})();
|
|
1701
1361
|
}
|
|
1702
|
-
|
|
1703
1362
|
all_integration_hubs(callback, fields, options) {
|
|
1704
1363
|
var _this169 = this;
|
|
1705
|
-
|
|
1706
1364
|
return _asyncToGenerator(function* () {
|
|
1707
1365
|
return _this169.authStream(callback, 'GET', '/integration_hubs', {
|
|
1708
1366
|
fields
|
|
1709
1367
|
}, null, options);
|
|
1710
1368
|
})();
|
|
1711
1369
|
}
|
|
1712
|
-
|
|
1713
1370
|
create_integration_hub(callback, body, fields, options) {
|
|
1714
1371
|
var _this170 = this;
|
|
1715
|
-
|
|
1716
1372
|
return _asyncToGenerator(function* () {
|
|
1717
1373
|
return _this170.authStream(callback, 'POST', '/integration_hubs', {
|
|
1718
1374
|
fields
|
|
1719
1375
|
}, body, options);
|
|
1720
1376
|
})();
|
|
1721
1377
|
}
|
|
1722
|
-
|
|
1723
1378
|
integration_hub(callback, integration_hub_id, fields, options) {
|
|
1724
1379
|
var _this171 = this;
|
|
1725
|
-
|
|
1726
1380
|
return _asyncToGenerator(function* () {
|
|
1727
1381
|
return _this171.authStream(callback, 'GET', "/integration_hubs/".concat(integration_hub_id), {
|
|
1728
1382
|
fields
|
|
1729
1383
|
}, null, options);
|
|
1730
1384
|
})();
|
|
1731
1385
|
}
|
|
1732
|
-
|
|
1733
1386
|
update_integration_hub(callback, integration_hub_id, body, fields, options) {
|
|
1734
1387
|
var _this172 = this;
|
|
1735
|
-
|
|
1736
1388
|
return _asyncToGenerator(function* () {
|
|
1737
1389
|
return _this172.authStream(callback, 'PATCH', "/integration_hubs/".concat(integration_hub_id), {
|
|
1738
1390
|
fields
|
|
1739
1391
|
}, body, options);
|
|
1740
1392
|
})();
|
|
1741
1393
|
}
|
|
1742
|
-
|
|
1743
1394
|
delete_integration_hub(callback, integration_hub_id, options) {
|
|
1744
1395
|
var _this173 = this;
|
|
1745
|
-
|
|
1746
1396
|
return _asyncToGenerator(function* () {
|
|
1747
1397
|
return _this173.authStream(callback, 'DELETE', "/integration_hubs/".concat(integration_hub_id), null, null, options);
|
|
1748
1398
|
})();
|
|
1749
1399
|
}
|
|
1750
|
-
|
|
1751
1400
|
accept_integration_hub_legal_agreement(callback, integration_hub_id, options) {
|
|
1752
1401
|
var _this174 = this;
|
|
1753
|
-
|
|
1754
1402
|
return _asyncToGenerator(function* () {
|
|
1755
1403
|
return _this174.authStream(callback, 'POST', "/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
|
|
1756
1404
|
})();
|
|
1757
1405
|
}
|
|
1758
|
-
|
|
1759
1406
|
all_integrations(callback, request, options) {
|
|
1760
1407
|
var _this175 = this;
|
|
1761
|
-
|
|
1762
1408
|
return _asyncToGenerator(function* () {
|
|
1763
1409
|
return _this175.authStream(callback, 'GET', '/integrations', {
|
|
1764
1410
|
fields: request.fields,
|
|
@@ -1766,10 +1412,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1766
1412
|
}, null, options);
|
|
1767
1413
|
})();
|
|
1768
1414
|
}
|
|
1769
|
-
|
|
1770
1415
|
integration(callback, integration_id, fields, options) {
|
|
1771
1416
|
var _this176 = this;
|
|
1772
|
-
|
|
1773
1417
|
return _asyncToGenerator(function* () {
|
|
1774
1418
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
1775
1419
|
return _this176.authStream(callback, 'GET', "/integrations/".concat(integration_id), {
|
|
@@ -1777,10 +1421,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1777
1421
|
}, null, options);
|
|
1778
1422
|
})();
|
|
1779
1423
|
}
|
|
1780
|
-
|
|
1781
1424
|
update_integration(callback, integration_id, body, fields, options) {
|
|
1782
1425
|
var _this177 = this;
|
|
1783
|
-
|
|
1784
1426
|
return _asyncToGenerator(function* () {
|
|
1785
1427
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
1786
1428
|
return _this177.authStream(callback, 'PATCH', "/integrations/".concat(integration_id), {
|
|
@@ -1788,48 +1430,38 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1788
1430
|
}, body, options);
|
|
1789
1431
|
})();
|
|
1790
1432
|
}
|
|
1791
|
-
|
|
1792
1433
|
fetch_integration_form(callback, integration_id, body, options) {
|
|
1793
1434
|
var _this178 = this;
|
|
1794
|
-
|
|
1795
1435
|
return _asyncToGenerator(function* () {
|
|
1796
1436
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
1797
1437
|
return _this178.authStream(callback, 'POST', "/integrations/".concat(integration_id, "/form"), null, body, options);
|
|
1798
1438
|
})();
|
|
1799
1439
|
}
|
|
1800
|
-
|
|
1801
1440
|
test_integration(callback, integration_id, options) {
|
|
1802
1441
|
var _this179 = this;
|
|
1803
|
-
|
|
1804
1442
|
return _asyncToGenerator(function* () {
|
|
1805
1443
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
1806
1444
|
return _this179.authStream(callback, 'POST', "/integrations/".concat(integration_id, "/test"), null, null, options);
|
|
1807
1445
|
})();
|
|
1808
1446
|
}
|
|
1809
|
-
|
|
1810
1447
|
all_looks(callback, fields, options) {
|
|
1811
1448
|
var _this180 = this;
|
|
1812
|
-
|
|
1813
1449
|
return _asyncToGenerator(function* () {
|
|
1814
1450
|
return _this180.authStream(callback, 'GET', '/looks', {
|
|
1815
1451
|
fields
|
|
1816
1452
|
}, null, options);
|
|
1817
1453
|
})();
|
|
1818
1454
|
}
|
|
1819
|
-
|
|
1820
1455
|
create_look(callback, body, fields, options) {
|
|
1821
1456
|
var _this181 = this;
|
|
1822
|
-
|
|
1823
1457
|
return _asyncToGenerator(function* () {
|
|
1824
1458
|
return _this181.authStream(callback, 'POST', '/looks', {
|
|
1825
1459
|
fields
|
|
1826
1460
|
}, body, options);
|
|
1827
1461
|
})();
|
|
1828
1462
|
}
|
|
1829
|
-
|
|
1830
1463
|
search_looks(callback, request, options) {
|
|
1831
1464
|
var _this182 = this;
|
|
1832
|
-
|
|
1833
1465
|
return _asyncToGenerator(function* () {
|
|
1834
1466
|
return _this182.authStream(callback, 'GET', '/looks/search', {
|
|
1835
1467
|
id: request.id,
|
|
@@ -1850,38 +1482,30 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1850
1482
|
}, null, options);
|
|
1851
1483
|
})();
|
|
1852
1484
|
}
|
|
1853
|
-
|
|
1854
1485
|
look(callback, look_id, fields, options) {
|
|
1855
1486
|
var _this183 = this;
|
|
1856
|
-
|
|
1857
1487
|
return _asyncToGenerator(function* () {
|
|
1858
1488
|
return _this183.authStream(callback, 'GET', "/looks/".concat(look_id), {
|
|
1859
1489
|
fields
|
|
1860
1490
|
}, null, options);
|
|
1861
1491
|
})();
|
|
1862
1492
|
}
|
|
1863
|
-
|
|
1864
1493
|
update_look(callback, look_id, body, fields, options) {
|
|
1865
1494
|
var _this184 = this;
|
|
1866
|
-
|
|
1867
1495
|
return _asyncToGenerator(function* () {
|
|
1868
1496
|
return _this184.authStream(callback, 'PATCH', "/looks/".concat(look_id), {
|
|
1869
1497
|
fields
|
|
1870
1498
|
}, body, options);
|
|
1871
1499
|
})();
|
|
1872
1500
|
}
|
|
1873
|
-
|
|
1874
1501
|
delete_look(callback, look_id, options) {
|
|
1875
1502
|
var _this185 = this;
|
|
1876
|
-
|
|
1877
1503
|
return _asyncToGenerator(function* () {
|
|
1878
1504
|
return _this185.authStream(callback, 'DELETE', "/looks/".concat(look_id), null, null, options);
|
|
1879
1505
|
})();
|
|
1880
1506
|
}
|
|
1881
|
-
|
|
1882
1507
|
run_look(callback, request, options) {
|
|
1883
1508
|
var _this186 = this;
|
|
1884
|
-
|
|
1885
1509
|
return _asyncToGenerator(function* () {
|
|
1886
1510
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
1887
1511
|
return _this186.authStream(callback, 'GET', "/looks/".concat(request.look_id, "/run/").concat(request.result_format), {
|
|
@@ -1900,28 +1524,22 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1900
1524
|
}, null, options);
|
|
1901
1525
|
})();
|
|
1902
1526
|
}
|
|
1903
|
-
|
|
1904
1527
|
all_lookml_models(callback, fields, options) {
|
|
1905
1528
|
var _this187 = this;
|
|
1906
|
-
|
|
1907
1529
|
return _asyncToGenerator(function* () {
|
|
1908
1530
|
return _this187.authStream(callback, 'GET', '/lookml_models', {
|
|
1909
1531
|
fields
|
|
1910
1532
|
}, null, options);
|
|
1911
1533
|
})();
|
|
1912
1534
|
}
|
|
1913
|
-
|
|
1914
1535
|
create_lookml_model(callback, body, options) {
|
|
1915
1536
|
var _this188 = this;
|
|
1916
|
-
|
|
1917
1537
|
return _asyncToGenerator(function* () {
|
|
1918
1538
|
return _this188.authStream(callback, 'POST', '/lookml_models', null, body, options);
|
|
1919
1539
|
})();
|
|
1920
1540
|
}
|
|
1921
|
-
|
|
1922
1541
|
lookml_model(callback, lookml_model_name, fields, options) {
|
|
1923
1542
|
var _this189 = this;
|
|
1924
|
-
|
|
1925
1543
|
return _asyncToGenerator(function* () {
|
|
1926
1544
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
1927
1545
|
return _this189.authStream(callback, 'GET', "/lookml_models/".concat(lookml_model_name), {
|
|
@@ -1929,28 +1547,22 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1929
1547
|
}, null, options);
|
|
1930
1548
|
})();
|
|
1931
1549
|
}
|
|
1932
|
-
|
|
1933
1550
|
update_lookml_model(callback, lookml_model_name, body, options) {
|
|
1934
1551
|
var _this190 = this;
|
|
1935
|
-
|
|
1936
1552
|
return _asyncToGenerator(function* () {
|
|
1937
1553
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
1938
1554
|
return _this190.authStream(callback, 'PATCH', "/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
1939
1555
|
})();
|
|
1940
1556
|
}
|
|
1941
|
-
|
|
1942
1557
|
delete_lookml_model(callback, lookml_model_name, options) {
|
|
1943
1558
|
var _this191 = this;
|
|
1944
|
-
|
|
1945
1559
|
return _asyncToGenerator(function* () {
|
|
1946
1560
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
1947
1561
|
return _this191.authStream(callback, 'DELETE', "/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
1948
1562
|
})();
|
|
1949
1563
|
}
|
|
1950
|
-
|
|
1951
1564
|
lookml_model_explore(callback, lookml_model_name, explore_name, fields, options) {
|
|
1952
1565
|
var _this192 = this;
|
|
1953
|
-
|
|
1954
1566
|
return _asyncToGenerator(function* () {
|
|
1955
1567
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
1956
1568
|
explore_name = (0, _sdkRtl.encodeParam)(explore_name);
|
|
@@ -1959,66 +1571,52 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
1959
1571
|
}, null, options);
|
|
1960
1572
|
})();
|
|
1961
1573
|
}
|
|
1962
|
-
|
|
1963
1574
|
all_git_branches(callback, project_id, options) {
|
|
1964
1575
|
var _this193 = this;
|
|
1965
|
-
|
|
1966
1576
|
return _asyncToGenerator(function* () {
|
|
1967
1577
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
1968
1578
|
return _this193.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
1969
1579
|
})();
|
|
1970
1580
|
}
|
|
1971
|
-
|
|
1972
1581
|
git_branch(callback, project_id, options) {
|
|
1973
1582
|
var _this194 = this;
|
|
1974
|
-
|
|
1975
1583
|
return _asyncToGenerator(function* () {
|
|
1976
1584
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
1977
1585
|
return _this194.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
1978
1586
|
})();
|
|
1979
1587
|
}
|
|
1980
|
-
|
|
1981
1588
|
update_git_branch(callback, project_id, body, options) {
|
|
1982
1589
|
var _this195 = this;
|
|
1983
|
-
|
|
1984
1590
|
return _asyncToGenerator(function* () {
|
|
1985
1591
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
1986
1592
|
return _this195.authStream(callback, 'PUT', "/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
1987
1593
|
})();
|
|
1988
1594
|
}
|
|
1989
|
-
|
|
1990
1595
|
create_git_branch(callback, project_id, body, options) {
|
|
1991
1596
|
var _this196 = this;
|
|
1992
|
-
|
|
1993
1597
|
return _asyncToGenerator(function* () {
|
|
1994
1598
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
1995
1599
|
return _this196.authStream(callback, 'POST', "/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
1996
1600
|
})();
|
|
1997
1601
|
}
|
|
1998
|
-
|
|
1999
1602
|
find_git_branch(callback, project_id, branch_name, options) {
|
|
2000
1603
|
var _this197 = this;
|
|
2001
|
-
|
|
2002
1604
|
return _asyncToGenerator(function* () {
|
|
2003
1605
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2004
1606
|
branch_name = (0, _sdkRtl.encodeParam)(branch_name);
|
|
2005
1607
|
return _this197.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2006
1608
|
})();
|
|
2007
1609
|
}
|
|
2008
|
-
|
|
2009
1610
|
delete_git_branch(callback, project_id, branch_name, options) {
|
|
2010
1611
|
var _this198 = this;
|
|
2011
|
-
|
|
2012
1612
|
return _asyncToGenerator(function* () {
|
|
2013
1613
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2014
1614
|
branch_name = (0, _sdkRtl.encodeParam)(branch_name);
|
|
2015
1615
|
return _this198.authStream(callback, 'DELETE', "/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2016
1616
|
})();
|
|
2017
1617
|
}
|
|
2018
|
-
|
|
2019
1618
|
deploy_ref_to_production(callback, request, options) {
|
|
2020
1619
|
var _this199 = this;
|
|
2021
|
-
|
|
2022
1620
|
return _asyncToGenerator(function* () {
|
|
2023
1621
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2024
1622
|
return _this199.authStream(callback, 'POST', "/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
@@ -2027,55 +1625,43 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2027
1625
|
}, null, options);
|
|
2028
1626
|
})();
|
|
2029
1627
|
}
|
|
2030
|
-
|
|
2031
1628
|
deploy_to_production(callback, project_id, options) {
|
|
2032
1629
|
var _this200 = this;
|
|
2033
|
-
|
|
2034
1630
|
return _asyncToGenerator(function* () {
|
|
2035
1631
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2036
1632
|
return _this200.authStream(callback, 'POST', "/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
2037
1633
|
})();
|
|
2038
1634
|
}
|
|
2039
|
-
|
|
2040
1635
|
reset_project_to_production(callback, project_id, options) {
|
|
2041
1636
|
var _this201 = this;
|
|
2042
|
-
|
|
2043
1637
|
return _asyncToGenerator(function* () {
|
|
2044
1638
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2045
1639
|
return _this201.authStream(callback, 'POST', "/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
2046
1640
|
})();
|
|
2047
1641
|
}
|
|
2048
|
-
|
|
2049
1642
|
reset_project_to_remote(callback, project_id, options) {
|
|
2050
1643
|
var _this202 = this;
|
|
2051
|
-
|
|
2052
1644
|
return _asyncToGenerator(function* () {
|
|
2053
1645
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2054
1646
|
return _this202.authStream(callback, 'POST', "/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
2055
1647
|
})();
|
|
2056
1648
|
}
|
|
2057
|
-
|
|
2058
1649
|
all_projects(callback, fields, options) {
|
|
2059
1650
|
var _this203 = this;
|
|
2060
|
-
|
|
2061
1651
|
return _asyncToGenerator(function* () {
|
|
2062
1652
|
return _this203.authStream(callback, 'GET', '/projects', {
|
|
2063
1653
|
fields
|
|
2064
1654
|
}, null, options);
|
|
2065
1655
|
})();
|
|
2066
1656
|
}
|
|
2067
|
-
|
|
2068
1657
|
create_project(callback, body, options) {
|
|
2069
1658
|
var _this204 = this;
|
|
2070
|
-
|
|
2071
1659
|
return _asyncToGenerator(function* () {
|
|
2072
1660
|
return _this204.authStream(callback, 'POST', '/projects', null, body, options);
|
|
2073
1661
|
})();
|
|
2074
1662
|
}
|
|
2075
|
-
|
|
2076
1663
|
project(callback, project_id, fields, options) {
|
|
2077
1664
|
var _this205 = this;
|
|
2078
|
-
|
|
2079
1665
|
return _asyncToGenerator(function* () {
|
|
2080
1666
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2081
1667
|
return _this205.authStream(callback, 'GET', "/projects/".concat(project_id), {
|
|
@@ -2083,10 +1669,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2083
1669
|
}, null, options);
|
|
2084
1670
|
})();
|
|
2085
1671
|
}
|
|
2086
|
-
|
|
2087
1672
|
update_project(callback, project_id, body, fields, options) {
|
|
2088
1673
|
var _this206 = this;
|
|
2089
|
-
|
|
2090
1674
|
return _asyncToGenerator(function* () {
|
|
2091
1675
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2092
1676
|
return _this206.authStream(callback, 'PATCH', "/projects/".concat(project_id), {
|
|
@@ -2094,37 +1678,29 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2094
1678
|
}, body, options);
|
|
2095
1679
|
})();
|
|
2096
1680
|
}
|
|
2097
|
-
|
|
2098
1681
|
manifest(callback, project_id, options) {
|
|
2099
1682
|
var _this207 = this;
|
|
2100
|
-
|
|
2101
1683
|
return _asyncToGenerator(function* () {
|
|
2102
1684
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2103
1685
|
return _this207.authStream(callback, 'GET', "/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
2104
1686
|
})();
|
|
2105
1687
|
}
|
|
2106
|
-
|
|
2107
1688
|
git_deploy_key(callback, project_id, options) {
|
|
2108
1689
|
var _this208 = this;
|
|
2109
|
-
|
|
2110
1690
|
return _asyncToGenerator(function* () {
|
|
2111
1691
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2112
1692
|
return _this208.authStream(callback, 'GET', "/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2113
1693
|
})();
|
|
2114
1694
|
}
|
|
2115
|
-
|
|
2116
1695
|
create_git_deploy_key(callback, project_id, options) {
|
|
2117
1696
|
var _this209 = this;
|
|
2118
|
-
|
|
2119
1697
|
return _asyncToGenerator(function* () {
|
|
2120
1698
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2121
1699
|
return _this209.authStream(callback, 'POST', "/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2122
1700
|
})();
|
|
2123
1701
|
}
|
|
2124
|
-
|
|
2125
1702
|
project_validation_results(callback, project_id, fields, options) {
|
|
2126
1703
|
var _this210 = this;
|
|
2127
|
-
|
|
2128
1704
|
return _asyncToGenerator(function* () {
|
|
2129
1705
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2130
1706
|
return _this210.authStream(callback, 'GET', "/projects/".concat(project_id, "/validate"), {
|
|
@@ -2132,10 +1708,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2132
1708
|
}, null, options);
|
|
2133
1709
|
})();
|
|
2134
1710
|
}
|
|
2135
|
-
|
|
2136
1711
|
validate_project(callback, project_id, fields, options) {
|
|
2137
1712
|
var _this211 = this;
|
|
2138
|
-
|
|
2139
1713
|
return _asyncToGenerator(function* () {
|
|
2140
1714
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2141
1715
|
return _this211.authStream(callback, 'POST', "/projects/".concat(project_id, "/validate"), {
|
|
@@ -2143,10 +1717,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2143
1717
|
}, null, options);
|
|
2144
1718
|
})();
|
|
2145
1719
|
}
|
|
2146
|
-
|
|
2147
1720
|
project_workspace(callback, project_id, fields, options) {
|
|
2148
1721
|
var _this212 = this;
|
|
2149
|
-
|
|
2150
1722
|
return _asyncToGenerator(function* () {
|
|
2151
1723
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2152
1724
|
return _this212.authStream(callback, 'GET', "/projects/".concat(project_id, "/current_workspace"), {
|
|
@@ -2154,10 +1726,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2154
1726
|
}, null, options);
|
|
2155
1727
|
})();
|
|
2156
1728
|
}
|
|
2157
|
-
|
|
2158
1729
|
all_project_files(callback, project_id, fields, options) {
|
|
2159
1730
|
var _this213 = this;
|
|
2160
|
-
|
|
2161
1731
|
return _asyncToGenerator(function* () {
|
|
2162
1732
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2163
1733
|
return _this213.authStream(callback, 'GET', "/projects/".concat(project_id, "/files"), {
|
|
@@ -2165,10 +1735,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2165
1735
|
}, null, options);
|
|
2166
1736
|
})();
|
|
2167
1737
|
}
|
|
2168
|
-
|
|
2169
1738
|
project_file(callback, project_id, file_id, fields, options) {
|
|
2170
1739
|
var _this214 = this;
|
|
2171
|
-
|
|
2172
1740
|
return _asyncToGenerator(function* () {
|
|
2173
1741
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2174
1742
|
return _this214.authStream(callback, 'GET', "/projects/".concat(project_id, "/files/file"), {
|
|
@@ -2177,10 +1745,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2177
1745
|
}, null, options);
|
|
2178
1746
|
})();
|
|
2179
1747
|
}
|
|
2180
|
-
|
|
2181
1748
|
all_git_connection_tests(callback, project_id, remote_url, options) {
|
|
2182
1749
|
var _this215 = this;
|
|
2183
|
-
|
|
2184
1750
|
return _asyncToGenerator(function* () {
|
|
2185
1751
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2186
1752
|
return _this215.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_connection_tests"), {
|
|
@@ -2188,10 +1754,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2188
1754
|
}, null, options);
|
|
2189
1755
|
})();
|
|
2190
1756
|
}
|
|
2191
|
-
|
|
2192
1757
|
run_git_connection_test(callback, request, options) {
|
|
2193
1758
|
var _this216 = this;
|
|
2194
|
-
|
|
2195
1759
|
return _asyncToGenerator(function* () {
|
|
2196
1760
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2197
1761
|
request.test_id = (0, _sdkRtl.encodeParam)(request.test_id);
|
|
@@ -2201,10 +1765,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2201
1765
|
}, null, options);
|
|
2202
1766
|
})();
|
|
2203
1767
|
}
|
|
2204
|
-
|
|
2205
1768
|
all_lookml_tests(callback, project_id, file_id, options) {
|
|
2206
1769
|
var _this217 = this;
|
|
2207
|
-
|
|
2208
1770
|
return _asyncToGenerator(function* () {
|
|
2209
1771
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2210
1772
|
return _this217.authStream(callback, 'GET', "/projects/".concat(project_id, "/lookml_tests"), {
|
|
@@ -2212,10 +1774,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2212
1774
|
}, null, options);
|
|
2213
1775
|
})();
|
|
2214
1776
|
}
|
|
2215
|
-
|
|
2216
1777
|
run_lookml_test(callback, request, options) {
|
|
2217
1778
|
var _this218 = this;
|
|
2218
|
-
|
|
2219
1779
|
return _asyncToGenerator(function* () {
|
|
2220
1780
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2221
1781
|
return _this218.authStream(callback, 'GET', "/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
@@ -2225,10 +1785,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2225
1785
|
}, null, options);
|
|
2226
1786
|
})();
|
|
2227
1787
|
}
|
|
2228
|
-
|
|
2229
1788
|
tag_ref(callback, request, options) {
|
|
2230
1789
|
var _this219 = this;
|
|
2231
|
-
|
|
2232
1790
|
return _asyncToGenerator(function* () {
|
|
2233
1791
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2234
1792
|
return _this219.authStream(callback, 'POST', "/projects/".concat(request.project_id, "/tag"), {
|
|
@@ -2238,39 +1796,31 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2238
1796
|
}, request.body, options);
|
|
2239
1797
|
})();
|
|
2240
1798
|
}
|
|
2241
|
-
|
|
2242
1799
|
update_repository_credential(callback, root_project_id, credential_id, body, options) {
|
|
2243
1800
|
var _this220 = this;
|
|
2244
|
-
|
|
2245
1801
|
return _asyncToGenerator(function* () {
|
|
2246
1802
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
2247
1803
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
2248
1804
|
return _this220.authStream(callback, 'PUT', "/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
2249
1805
|
})();
|
|
2250
1806
|
}
|
|
2251
|
-
|
|
2252
1807
|
delete_repository_credential(callback, root_project_id, credential_id, options) {
|
|
2253
1808
|
var _this221 = this;
|
|
2254
|
-
|
|
2255
1809
|
return _asyncToGenerator(function* () {
|
|
2256
1810
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
2257
1811
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
2258
1812
|
return _this221.authStream(callback, 'DELETE', "/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
2259
1813
|
})();
|
|
2260
1814
|
}
|
|
2261
|
-
|
|
2262
1815
|
get_all_repository_credentials(callback, root_project_id, options) {
|
|
2263
1816
|
var _this222 = this;
|
|
2264
|
-
|
|
2265
1817
|
return _asyncToGenerator(function* () {
|
|
2266
1818
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
2267
1819
|
return _this222.authStream(callback, 'GET', "/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
2268
1820
|
})();
|
|
2269
1821
|
}
|
|
2270
|
-
|
|
2271
1822
|
create_query_task(callback, request, options) {
|
|
2272
1823
|
var _this223 = this;
|
|
2273
|
-
|
|
2274
1824
|
return _asyncToGenerator(function* () {
|
|
2275
1825
|
return _this223.authStream(callback, 'POST', '/query_tasks', {
|
|
2276
1826
|
limit: request.limit,
|
|
@@ -2289,20 +1839,16 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2289
1839
|
}, request.body, options);
|
|
2290
1840
|
})();
|
|
2291
1841
|
}
|
|
2292
|
-
|
|
2293
1842
|
query_task_multi_results(callback, query_task_ids, options) {
|
|
2294
1843
|
var _this224 = this;
|
|
2295
|
-
|
|
2296
1844
|
return _asyncToGenerator(function* () {
|
|
2297
1845
|
return _this224.authStream(callback, 'GET', '/query_tasks/multi_results', {
|
|
2298
1846
|
query_task_ids
|
|
2299
1847
|
}, null, options);
|
|
2300
1848
|
})();
|
|
2301
1849
|
}
|
|
2302
|
-
|
|
2303
1850
|
query_task(callback, query_task_id, fields, options) {
|
|
2304
1851
|
var _this225 = this;
|
|
2305
|
-
|
|
2306
1852
|
return _asyncToGenerator(function* () {
|
|
2307
1853
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
2308
1854
|
return _this225.authStream(callback, 'GET', "/query_tasks/".concat(query_task_id), {
|
|
@@ -2310,29 +1856,23 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2310
1856
|
}, null, options);
|
|
2311
1857
|
})();
|
|
2312
1858
|
}
|
|
2313
|
-
|
|
2314
1859
|
query_task_results(callback, query_task_id, options) {
|
|
2315
1860
|
var _this226 = this;
|
|
2316
|
-
|
|
2317
1861
|
return _asyncToGenerator(function* () {
|
|
2318
1862
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
2319
1863
|
return _this226.authStream(callback, 'GET', "/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
2320
1864
|
})();
|
|
2321
1865
|
}
|
|
2322
|
-
|
|
2323
1866
|
query(callback, query_id, fields, options) {
|
|
2324
1867
|
var _this227 = this;
|
|
2325
|
-
|
|
2326
1868
|
return _asyncToGenerator(function* () {
|
|
2327
1869
|
return _this227.authStream(callback, 'GET', "/queries/".concat(query_id), {
|
|
2328
1870
|
fields
|
|
2329
1871
|
}, null, options);
|
|
2330
1872
|
})();
|
|
2331
1873
|
}
|
|
2332
|
-
|
|
2333
1874
|
query_for_slug(callback, slug, fields, options) {
|
|
2334
1875
|
var _this228 = this;
|
|
2335
|
-
|
|
2336
1876
|
return _asyncToGenerator(function* () {
|
|
2337
1877
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
2338
1878
|
return _this228.authStream(callback, 'GET', "/queries/slug/".concat(slug), {
|
|
@@ -2340,20 +1880,16 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2340
1880
|
}, null, options);
|
|
2341
1881
|
})();
|
|
2342
1882
|
}
|
|
2343
|
-
|
|
2344
1883
|
create_query(callback, body, fields, options) {
|
|
2345
1884
|
var _this229 = this;
|
|
2346
|
-
|
|
2347
1885
|
return _asyncToGenerator(function* () {
|
|
2348
1886
|
return _this229.authStream(callback, 'POST', '/queries', {
|
|
2349
1887
|
fields
|
|
2350
1888
|
}, body, options);
|
|
2351
1889
|
})();
|
|
2352
1890
|
}
|
|
2353
|
-
|
|
2354
1891
|
run_query(callback, request, options) {
|
|
2355
1892
|
var _this230 = this;
|
|
2356
|
-
|
|
2357
1893
|
return _asyncToGenerator(function* () {
|
|
2358
1894
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
2359
1895
|
return _this230.authStream(callback, 'GET', "/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
@@ -2372,10 +1908,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2372
1908
|
}, null, options);
|
|
2373
1909
|
})();
|
|
2374
1910
|
}
|
|
2375
|
-
|
|
2376
1911
|
run_inline_query(callback, request, options) {
|
|
2377
1912
|
var _this231 = this;
|
|
2378
|
-
|
|
2379
1913
|
return _asyncToGenerator(function* () {
|
|
2380
1914
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
2381
1915
|
return _this231.authStream(callback, 'POST', "/queries/run/".concat(request.result_format), {
|
|
@@ -2394,10 +1928,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2394
1928
|
}, request.body, options);
|
|
2395
1929
|
})();
|
|
2396
1930
|
}
|
|
2397
|
-
|
|
2398
1931
|
run_url_encoded_query(callback, model_name, view_name, result_format, options) {
|
|
2399
1932
|
var _this232 = this;
|
|
2400
|
-
|
|
2401
1933
|
return _asyncToGenerator(function* () {
|
|
2402
1934
|
model_name = (0, _sdkRtl.encodeParam)(model_name);
|
|
2403
1935
|
view_name = (0, _sdkRtl.encodeParam)(view_name);
|
|
@@ -2405,10 +1937,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2405
1937
|
return _this232.authStream(callback, 'GET', "/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
2406
1938
|
})();
|
|
2407
1939
|
}
|
|
2408
|
-
|
|
2409
1940
|
merge_query(callback, merge_query_id, fields, options) {
|
|
2410
1941
|
var _this233 = this;
|
|
2411
|
-
|
|
2412
1942
|
return _asyncToGenerator(function* () {
|
|
2413
1943
|
merge_query_id = (0, _sdkRtl.encodeParam)(merge_query_id);
|
|
2414
1944
|
return _this233.authStream(callback, 'GET', "/merge_queries/".concat(merge_query_id), {
|
|
@@ -2416,54 +1946,42 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2416
1946
|
}, null, options);
|
|
2417
1947
|
})();
|
|
2418
1948
|
}
|
|
2419
|
-
|
|
2420
1949
|
create_merge_query(callback, body, fields, options) {
|
|
2421
1950
|
var _this234 = this;
|
|
2422
|
-
|
|
2423
1951
|
return _asyncToGenerator(function* () {
|
|
2424
1952
|
return _this234.authStream(callback, 'POST', '/merge_queries', {
|
|
2425
1953
|
fields
|
|
2426
1954
|
}, body, options);
|
|
2427
1955
|
})();
|
|
2428
1956
|
}
|
|
2429
|
-
|
|
2430
1957
|
all_running_queries(callback, options) {
|
|
2431
1958
|
var _this235 = this;
|
|
2432
|
-
|
|
2433
1959
|
return _asyncToGenerator(function* () {
|
|
2434
1960
|
return _this235.authStream(callback, 'GET', '/running_queries', null, null, options);
|
|
2435
1961
|
})();
|
|
2436
1962
|
}
|
|
2437
|
-
|
|
2438
1963
|
kill_query(callback, query_task_id, options) {
|
|
2439
1964
|
var _this236 = this;
|
|
2440
|
-
|
|
2441
1965
|
return _asyncToGenerator(function* () {
|
|
2442
1966
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
2443
1967
|
return _this236.authStream(callback, 'DELETE', "/running_queries/".concat(query_task_id), null, null, options);
|
|
2444
1968
|
})();
|
|
2445
1969
|
}
|
|
2446
|
-
|
|
2447
1970
|
sql_query(callback, slug, options) {
|
|
2448
1971
|
var _this237 = this;
|
|
2449
|
-
|
|
2450
1972
|
return _asyncToGenerator(function* () {
|
|
2451
1973
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
2452
1974
|
return _this237.authStream(callback, 'GET', "/sql_queries/".concat(slug), null, null, options);
|
|
2453
1975
|
})();
|
|
2454
1976
|
}
|
|
2455
|
-
|
|
2456
1977
|
create_sql_query(callback, body, options) {
|
|
2457
1978
|
var _this238 = this;
|
|
2458
|
-
|
|
2459
1979
|
return _asyncToGenerator(function* () {
|
|
2460
1980
|
return _this238.authStream(callback, 'POST', '/sql_queries', null, body, options);
|
|
2461
1981
|
})();
|
|
2462
1982
|
}
|
|
2463
|
-
|
|
2464
1983
|
run_sql_query(callback, slug, result_format, download, options) {
|
|
2465
1984
|
var _this239 = this;
|
|
2466
|
-
|
|
2467
1985
|
return _asyncToGenerator(function* () {
|
|
2468
1986
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
2469
1987
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
@@ -2472,10 +1990,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2472
1990
|
}, null, options);
|
|
2473
1991
|
})();
|
|
2474
1992
|
}
|
|
2475
|
-
|
|
2476
1993
|
create_lookml_dashboard_render_task(callback, request, options) {
|
|
2477
1994
|
var _this240 = this;
|
|
2478
|
-
|
|
2479
1995
|
return _asyncToGenerator(function* () {
|
|
2480
1996
|
request.dashboard_id = (0, _sdkRtl.encodeParam)(request.dashboard_id);
|
|
2481
1997
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
@@ -2488,10 +2004,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2488
2004
|
}, request.body, options);
|
|
2489
2005
|
})();
|
|
2490
2006
|
}
|
|
2491
|
-
|
|
2492
2007
|
create_look_render_task(callback, look_id, result_format, width, height, fields, options) {
|
|
2493
2008
|
var _this241 = this;
|
|
2494
|
-
|
|
2495
2009
|
return _asyncToGenerator(function* () {
|
|
2496
2010
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
2497
2011
|
return _this241.authStream(callback, 'POST', "/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
@@ -2501,10 +2015,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2501
2015
|
}, null, options);
|
|
2502
2016
|
})();
|
|
2503
2017
|
}
|
|
2504
|
-
|
|
2505
2018
|
create_query_render_task(callback, query_id, result_format, width, height, fields, options) {
|
|
2506
2019
|
var _this242 = this;
|
|
2507
|
-
|
|
2508
2020
|
return _asyncToGenerator(function* () {
|
|
2509
2021
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
2510
2022
|
return _this242.authStream(callback, 'POST', "/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
@@ -2514,10 +2026,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2514
2026
|
}, null, options);
|
|
2515
2027
|
})();
|
|
2516
2028
|
}
|
|
2517
|
-
|
|
2518
2029
|
create_dashboard_render_task(callback, request, options) {
|
|
2519
2030
|
var _this243 = this;
|
|
2520
|
-
|
|
2521
2031
|
return _asyncToGenerator(function* () {
|
|
2522
2032
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
2523
2033
|
return _this243.authStream(callback, 'POST', "/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
@@ -2529,10 +2039,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2529
2039
|
}, request.body, options);
|
|
2530
2040
|
})();
|
|
2531
2041
|
}
|
|
2532
|
-
|
|
2533
2042
|
render_task(callback, render_task_id, fields, options) {
|
|
2534
2043
|
var _this244 = this;
|
|
2535
|
-
|
|
2536
2044
|
return _asyncToGenerator(function* () {
|
|
2537
2045
|
render_task_id = (0, _sdkRtl.encodeParam)(render_task_id);
|
|
2538
2046
|
return _this244.authStream(callback, 'GET', "/render_tasks/".concat(render_task_id), {
|
|
@@ -2540,19 +2048,15 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2540
2048
|
}, null, options);
|
|
2541
2049
|
})();
|
|
2542
2050
|
}
|
|
2543
|
-
|
|
2544
2051
|
render_task_results(callback, render_task_id, options) {
|
|
2545
2052
|
var _this245 = this;
|
|
2546
|
-
|
|
2547
2053
|
return _asyncToGenerator(function* () {
|
|
2548
2054
|
render_task_id = (0, _sdkRtl.encodeParam)(render_task_id);
|
|
2549
2055
|
return _this245.authStream(callback, 'GET', "/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
2550
2056
|
})();
|
|
2551
2057
|
}
|
|
2552
|
-
|
|
2553
2058
|
search_model_sets(callback, request, options) {
|
|
2554
2059
|
var _this246 = this;
|
|
2555
|
-
|
|
2556
2060
|
return _asyncToGenerator(function* () {
|
|
2557
2061
|
return _this246.authStream(callback, 'GET', '/model_sets/search', {
|
|
2558
2062
|
fields: request.fields,
|
|
@@ -2567,62 +2071,48 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2567
2071
|
}, null, options);
|
|
2568
2072
|
})();
|
|
2569
2073
|
}
|
|
2570
|
-
|
|
2571
2074
|
model_set(callback, model_set_id, fields, options) {
|
|
2572
2075
|
var _this247 = this;
|
|
2573
|
-
|
|
2574
2076
|
return _asyncToGenerator(function* () {
|
|
2575
2077
|
return _this247.authStream(callback, 'GET', "/model_sets/".concat(model_set_id), {
|
|
2576
2078
|
fields
|
|
2577
2079
|
}, null, options);
|
|
2578
2080
|
})();
|
|
2579
2081
|
}
|
|
2580
|
-
|
|
2581
2082
|
update_model_set(callback, model_set_id, body, options) {
|
|
2582
2083
|
var _this248 = this;
|
|
2583
|
-
|
|
2584
2084
|
return _asyncToGenerator(function* () {
|
|
2585
2085
|
return _this248.authStream(callback, 'PATCH', "/model_sets/".concat(model_set_id), null, body, options);
|
|
2586
2086
|
})();
|
|
2587
2087
|
}
|
|
2588
|
-
|
|
2589
2088
|
delete_model_set(callback, model_set_id, options) {
|
|
2590
2089
|
var _this249 = this;
|
|
2591
|
-
|
|
2592
2090
|
return _asyncToGenerator(function* () {
|
|
2593
2091
|
return _this249.authStream(callback, 'DELETE', "/model_sets/".concat(model_set_id), null, null, options);
|
|
2594
2092
|
})();
|
|
2595
2093
|
}
|
|
2596
|
-
|
|
2597
2094
|
all_model_sets(callback, fields, options) {
|
|
2598
2095
|
var _this250 = this;
|
|
2599
|
-
|
|
2600
2096
|
return _asyncToGenerator(function* () {
|
|
2601
2097
|
return _this250.authStream(callback, 'GET', '/model_sets', {
|
|
2602
2098
|
fields
|
|
2603
2099
|
}, null, options);
|
|
2604
2100
|
})();
|
|
2605
2101
|
}
|
|
2606
|
-
|
|
2607
2102
|
create_model_set(callback, body, options) {
|
|
2608
2103
|
var _this251 = this;
|
|
2609
|
-
|
|
2610
2104
|
return _asyncToGenerator(function* () {
|
|
2611
2105
|
return _this251.authStream(callback, 'POST', '/model_sets', null, body, options);
|
|
2612
2106
|
})();
|
|
2613
2107
|
}
|
|
2614
|
-
|
|
2615
2108
|
all_permissions(callback, options) {
|
|
2616
2109
|
var _this252 = this;
|
|
2617
|
-
|
|
2618
2110
|
return _asyncToGenerator(function* () {
|
|
2619
2111
|
return _this252.authStream(callback, 'GET', '/permissions', null, null, options);
|
|
2620
2112
|
})();
|
|
2621
2113
|
}
|
|
2622
|
-
|
|
2623
2114
|
search_permission_sets(callback, request, options) {
|
|
2624
2115
|
var _this253 = this;
|
|
2625
|
-
|
|
2626
2116
|
return _asyncToGenerator(function* () {
|
|
2627
2117
|
return _this253.authStream(callback, 'GET', '/permission_sets/search', {
|
|
2628
2118
|
fields: request.fields,
|
|
@@ -2637,54 +2127,42 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2637
2127
|
}, null, options);
|
|
2638
2128
|
})();
|
|
2639
2129
|
}
|
|
2640
|
-
|
|
2641
2130
|
permission_set(callback, permission_set_id, fields, options) {
|
|
2642
2131
|
var _this254 = this;
|
|
2643
|
-
|
|
2644
2132
|
return _asyncToGenerator(function* () {
|
|
2645
2133
|
return _this254.authStream(callback, 'GET', "/permission_sets/".concat(permission_set_id), {
|
|
2646
2134
|
fields
|
|
2647
2135
|
}, null, options);
|
|
2648
2136
|
})();
|
|
2649
2137
|
}
|
|
2650
|
-
|
|
2651
2138
|
update_permission_set(callback, permission_set_id, body, options) {
|
|
2652
2139
|
var _this255 = this;
|
|
2653
|
-
|
|
2654
2140
|
return _asyncToGenerator(function* () {
|
|
2655
2141
|
return _this255.authStream(callback, 'PATCH', "/permission_sets/".concat(permission_set_id), null, body, options);
|
|
2656
2142
|
})();
|
|
2657
2143
|
}
|
|
2658
|
-
|
|
2659
2144
|
delete_permission_set(callback, permission_set_id, options) {
|
|
2660
2145
|
var _this256 = this;
|
|
2661
|
-
|
|
2662
2146
|
return _asyncToGenerator(function* () {
|
|
2663
2147
|
return _this256.authStream(callback, 'DELETE', "/permission_sets/".concat(permission_set_id), null, null, options);
|
|
2664
2148
|
})();
|
|
2665
2149
|
}
|
|
2666
|
-
|
|
2667
2150
|
all_permission_sets(callback, fields, options) {
|
|
2668
2151
|
var _this257 = this;
|
|
2669
|
-
|
|
2670
2152
|
return _asyncToGenerator(function* () {
|
|
2671
2153
|
return _this257.authStream(callback, 'GET', '/permission_sets', {
|
|
2672
2154
|
fields
|
|
2673
2155
|
}, null, options);
|
|
2674
2156
|
})();
|
|
2675
2157
|
}
|
|
2676
|
-
|
|
2677
2158
|
create_permission_set(callback, body, options) {
|
|
2678
2159
|
var _this258 = this;
|
|
2679
|
-
|
|
2680
2160
|
return _asyncToGenerator(function* () {
|
|
2681
2161
|
return _this258.authStream(callback, 'POST', '/permission_sets', null, body, options);
|
|
2682
2162
|
})();
|
|
2683
2163
|
}
|
|
2684
|
-
|
|
2685
2164
|
all_roles(callback, request, options) {
|
|
2686
2165
|
var _this259 = this;
|
|
2687
|
-
|
|
2688
2166
|
return _asyncToGenerator(function* () {
|
|
2689
2167
|
return _this259.authStream(callback, 'GET', '/roles', {
|
|
2690
2168
|
fields: request.fields,
|
|
@@ -2692,18 +2170,14 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2692
2170
|
}, null, options);
|
|
2693
2171
|
})();
|
|
2694
2172
|
}
|
|
2695
|
-
|
|
2696
2173
|
create_role(callback, body, options) {
|
|
2697
2174
|
var _this260 = this;
|
|
2698
|
-
|
|
2699
2175
|
return _asyncToGenerator(function* () {
|
|
2700
2176
|
return _this260.authStream(callback, 'POST', '/roles', null, body, options);
|
|
2701
2177
|
})();
|
|
2702
2178
|
}
|
|
2703
|
-
|
|
2704
2179
|
search_roles(callback, request, options) {
|
|
2705
2180
|
var _this261 = this;
|
|
2706
|
-
|
|
2707
2181
|
return _asyncToGenerator(function* () {
|
|
2708
2182
|
return _this261.authStream(callback, 'GET', '/roles/search', {
|
|
2709
2183
|
fields: request.fields,
|
|
@@ -2717,52 +2191,40 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2717
2191
|
}, null, options);
|
|
2718
2192
|
})();
|
|
2719
2193
|
}
|
|
2720
|
-
|
|
2721
2194
|
role(callback, role_id, options) {
|
|
2722
2195
|
var _this262 = this;
|
|
2723
|
-
|
|
2724
2196
|
return _asyncToGenerator(function* () {
|
|
2725
2197
|
return _this262.authStream(callback, 'GET', "/roles/".concat(role_id), null, null, options);
|
|
2726
2198
|
})();
|
|
2727
2199
|
}
|
|
2728
|
-
|
|
2729
2200
|
update_role(callback, role_id, body, options) {
|
|
2730
2201
|
var _this263 = this;
|
|
2731
|
-
|
|
2732
2202
|
return _asyncToGenerator(function* () {
|
|
2733
2203
|
return _this263.authStream(callback, 'PATCH', "/roles/".concat(role_id), null, body, options);
|
|
2734
2204
|
})();
|
|
2735
2205
|
}
|
|
2736
|
-
|
|
2737
2206
|
delete_role(callback, role_id, options) {
|
|
2738
2207
|
var _this264 = this;
|
|
2739
|
-
|
|
2740
2208
|
return _asyncToGenerator(function* () {
|
|
2741
2209
|
return _this264.authStream(callback, 'DELETE', "/roles/".concat(role_id), null, null, options);
|
|
2742
2210
|
})();
|
|
2743
2211
|
}
|
|
2744
|
-
|
|
2745
2212
|
role_groups(callback, role_id, fields, options) {
|
|
2746
2213
|
var _this265 = this;
|
|
2747
|
-
|
|
2748
2214
|
return _asyncToGenerator(function* () {
|
|
2749
2215
|
return _this265.authStream(callback, 'GET', "/roles/".concat(role_id, "/groups"), {
|
|
2750
2216
|
fields
|
|
2751
2217
|
}, null, options);
|
|
2752
2218
|
})();
|
|
2753
2219
|
}
|
|
2754
|
-
|
|
2755
2220
|
set_role_groups(callback, role_id, body, options) {
|
|
2756
2221
|
var _this266 = this;
|
|
2757
|
-
|
|
2758
2222
|
return _asyncToGenerator(function* () {
|
|
2759
2223
|
return _this266.authStream(callback, 'PUT', "/roles/".concat(role_id, "/groups"), null, body, options);
|
|
2760
2224
|
})();
|
|
2761
2225
|
}
|
|
2762
|
-
|
|
2763
2226
|
role_users(callback, request, options) {
|
|
2764
2227
|
var _this267 = this;
|
|
2765
|
-
|
|
2766
2228
|
return _asyncToGenerator(function* () {
|
|
2767
2229
|
return _this267.authStream(callback, 'GET', "/roles/".concat(request.role_id, "/users"), {
|
|
2768
2230
|
fields: request.fields,
|
|
@@ -2770,54 +2232,42 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2770
2232
|
}, null, options);
|
|
2771
2233
|
})();
|
|
2772
2234
|
}
|
|
2773
|
-
|
|
2774
2235
|
set_role_users(callback, role_id, body, options) {
|
|
2775
2236
|
var _this268 = this;
|
|
2776
|
-
|
|
2777
2237
|
return _asyncToGenerator(function* () {
|
|
2778
2238
|
return _this268.authStream(callback, 'PUT', "/roles/".concat(role_id, "/users"), null, body, options);
|
|
2779
2239
|
})();
|
|
2780
2240
|
}
|
|
2781
|
-
|
|
2782
2241
|
scheduled_plans_for_space(callback, space_id, fields, options) {
|
|
2783
2242
|
var _this269 = this;
|
|
2784
|
-
|
|
2785
2243
|
return _asyncToGenerator(function* () {
|
|
2786
2244
|
return _this269.authStream(callback, 'GET', "/scheduled_plans/space/".concat(space_id), {
|
|
2787
2245
|
fields
|
|
2788
2246
|
}, null, options);
|
|
2789
2247
|
})();
|
|
2790
2248
|
}
|
|
2791
|
-
|
|
2792
2249
|
scheduled_plan(callback, scheduled_plan_id, fields, options) {
|
|
2793
2250
|
var _this270 = this;
|
|
2794
|
-
|
|
2795
2251
|
return _asyncToGenerator(function* () {
|
|
2796
2252
|
return _this270.authStream(callback, 'GET', "/scheduled_plans/".concat(scheduled_plan_id), {
|
|
2797
2253
|
fields
|
|
2798
2254
|
}, null, options);
|
|
2799
2255
|
})();
|
|
2800
2256
|
}
|
|
2801
|
-
|
|
2802
2257
|
update_scheduled_plan(callback, scheduled_plan_id, body, options) {
|
|
2803
2258
|
var _this271 = this;
|
|
2804
|
-
|
|
2805
2259
|
return _asyncToGenerator(function* () {
|
|
2806
2260
|
return _this271.authStream(callback, 'PATCH', "/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
2807
2261
|
})();
|
|
2808
2262
|
}
|
|
2809
|
-
|
|
2810
2263
|
delete_scheduled_plan(callback, scheduled_plan_id, options) {
|
|
2811
2264
|
var _this272 = this;
|
|
2812
|
-
|
|
2813
2265
|
return _asyncToGenerator(function* () {
|
|
2814
2266
|
return _this272.authStream(callback, 'DELETE', "/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
2815
2267
|
})();
|
|
2816
2268
|
}
|
|
2817
|
-
|
|
2818
2269
|
all_scheduled_plans(callback, request, options) {
|
|
2819
2270
|
var _this273 = this;
|
|
2820
|
-
|
|
2821
2271
|
return _asyncToGenerator(function* () {
|
|
2822
2272
|
return _this273.authStream(callback, 'GET', '/scheduled_plans', {
|
|
2823
2273
|
user_id: request.user_id,
|
|
@@ -2826,26 +2276,20 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2826
2276
|
}, null, options);
|
|
2827
2277
|
})();
|
|
2828
2278
|
}
|
|
2829
|
-
|
|
2830
2279
|
create_scheduled_plan(callback, body, options) {
|
|
2831
2280
|
var _this274 = this;
|
|
2832
|
-
|
|
2833
2281
|
return _asyncToGenerator(function* () {
|
|
2834
2282
|
return _this274.authStream(callback, 'POST', '/scheduled_plans', null, body, options);
|
|
2835
2283
|
})();
|
|
2836
2284
|
}
|
|
2837
|
-
|
|
2838
2285
|
scheduled_plan_run_once(callback, body, options) {
|
|
2839
2286
|
var _this275 = this;
|
|
2840
|
-
|
|
2841
2287
|
return _asyncToGenerator(function* () {
|
|
2842
2288
|
return _this275.authStream(callback, 'POST', '/scheduled_plans/run_once', null, body, options);
|
|
2843
2289
|
})();
|
|
2844
2290
|
}
|
|
2845
|
-
|
|
2846
2291
|
scheduled_plans_for_look(callback, request, options) {
|
|
2847
2292
|
var _this276 = this;
|
|
2848
|
-
|
|
2849
2293
|
return _asyncToGenerator(function* () {
|
|
2850
2294
|
return _this276.authStream(callback, 'GET', "/scheduled_plans/look/".concat(request.look_id), {
|
|
2851
2295
|
user_id: request.user_id,
|
|
@@ -2854,10 +2298,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2854
2298
|
}, null, options);
|
|
2855
2299
|
})();
|
|
2856
2300
|
}
|
|
2857
|
-
|
|
2858
2301
|
scheduled_plans_for_dashboard(callback, request, options) {
|
|
2859
2302
|
var _this277 = this;
|
|
2860
|
-
|
|
2861
2303
|
return _asyncToGenerator(function* () {
|
|
2862
2304
|
return _this277.authStream(callback, 'GET', "/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
2863
2305
|
user_id: request.user_id,
|
|
@@ -2866,10 +2308,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2866
2308
|
}, null, options);
|
|
2867
2309
|
})();
|
|
2868
2310
|
}
|
|
2869
|
-
|
|
2870
2311
|
scheduled_plans_for_lookml_dashboard(callback, request, options) {
|
|
2871
2312
|
var _this278 = this;
|
|
2872
|
-
|
|
2873
2313
|
return _asyncToGenerator(function* () {
|
|
2874
2314
|
request.lookml_dashboard_id = (0, _sdkRtl.encodeParam)(request.lookml_dashboard_id);
|
|
2875
2315
|
return _this278.authStream(callback, 'GET', "/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
@@ -2879,34 +2319,26 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2879
2319
|
}, null, options);
|
|
2880
2320
|
})();
|
|
2881
2321
|
}
|
|
2882
|
-
|
|
2883
2322
|
scheduled_plan_run_once_by_id(callback, scheduled_plan_id, body, options) {
|
|
2884
2323
|
var _this279 = this;
|
|
2885
|
-
|
|
2886
2324
|
return _asyncToGenerator(function* () {
|
|
2887
2325
|
return _this279.authStream(callback, 'POST', "/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
2888
2326
|
})();
|
|
2889
2327
|
}
|
|
2890
|
-
|
|
2891
2328
|
session(callback, options) {
|
|
2892
2329
|
var _this280 = this;
|
|
2893
|
-
|
|
2894
2330
|
return _asyncToGenerator(function* () {
|
|
2895
2331
|
return _this280.authStream(callback, 'GET', '/session', null, null, options);
|
|
2896
2332
|
})();
|
|
2897
2333
|
}
|
|
2898
|
-
|
|
2899
2334
|
update_session(callback, body, options) {
|
|
2900
2335
|
var _this281 = this;
|
|
2901
|
-
|
|
2902
2336
|
return _asyncToGenerator(function* () {
|
|
2903
2337
|
return _this281.authStream(callback, 'PATCH', '/session', null, body, options);
|
|
2904
2338
|
})();
|
|
2905
2339
|
}
|
|
2906
|
-
|
|
2907
2340
|
search_spaces(callback, request, options) {
|
|
2908
2341
|
var _this282 = this;
|
|
2909
|
-
|
|
2910
2342
|
return _asyncToGenerator(function* () {
|
|
2911
2343
|
return _this282.authStream(callback, 'GET', '/spaces/search', {
|
|
2912
2344
|
fields: request.fields,
|
|
@@ -2924,10 +2356,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2924
2356
|
}, null, options);
|
|
2925
2357
|
})();
|
|
2926
2358
|
}
|
|
2927
|
-
|
|
2928
2359
|
space(callback, space_id, fields, options) {
|
|
2929
2360
|
var _this283 = this;
|
|
2930
|
-
|
|
2931
2361
|
return _asyncToGenerator(function* () {
|
|
2932
2362
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
2933
2363
|
return _this283.authStream(callback, 'GET', "/spaces/".concat(space_id), {
|
|
@@ -2935,46 +2365,36 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2935
2365
|
}, null, options);
|
|
2936
2366
|
})();
|
|
2937
2367
|
}
|
|
2938
|
-
|
|
2939
2368
|
update_space(callback, space_id, body, options) {
|
|
2940
2369
|
var _this284 = this;
|
|
2941
|
-
|
|
2942
2370
|
return _asyncToGenerator(function* () {
|
|
2943
2371
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
2944
2372
|
return _this284.authStream(callback, 'PATCH', "/spaces/".concat(space_id), null, body, options);
|
|
2945
2373
|
})();
|
|
2946
2374
|
}
|
|
2947
|
-
|
|
2948
2375
|
delete_space(callback, space_id, options) {
|
|
2949
2376
|
var _this285 = this;
|
|
2950
|
-
|
|
2951
2377
|
return _asyncToGenerator(function* () {
|
|
2952
2378
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
2953
2379
|
return _this285.authStream(callback, 'DELETE', "/spaces/".concat(space_id), null, null, options);
|
|
2954
2380
|
})();
|
|
2955
2381
|
}
|
|
2956
|
-
|
|
2957
2382
|
all_spaces(callback, fields, options) {
|
|
2958
2383
|
var _this286 = this;
|
|
2959
|
-
|
|
2960
2384
|
return _asyncToGenerator(function* () {
|
|
2961
2385
|
return _this286.authStream(callback, 'GET', '/spaces', {
|
|
2962
2386
|
fields
|
|
2963
2387
|
}, null, options);
|
|
2964
2388
|
})();
|
|
2965
2389
|
}
|
|
2966
|
-
|
|
2967
2390
|
create_space(callback, body, options) {
|
|
2968
2391
|
var _this287 = this;
|
|
2969
|
-
|
|
2970
2392
|
return _asyncToGenerator(function* () {
|
|
2971
2393
|
return _this287.authStream(callback, 'POST', '/spaces', null, body, options);
|
|
2972
2394
|
})();
|
|
2973
2395
|
}
|
|
2974
|
-
|
|
2975
2396
|
space_children(callback, request, options) {
|
|
2976
2397
|
var _this288 = this;
|
|
2977
|
-
|
|
2978
2398
|
return _asyncToGenerator(function* () {
|
|
2979
2399
|
request.space_id = (0, _sdkRtl.encodeParam)(request.space_id);
|
|
2980
2400
|
return _this288.authStream(callback, 'GET', "/spaces/".concat(request.space_id, "/children"), {
|
|
@@ -2985,10 +2405,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2985
2405
|
}, null, options);
|
|
2986
2406
|
})();
|
|
2987
2407
|
}
|
|
2988
|
-
|
|
2989
2408
|
space_children_search(callback, request, options) {
|
|
2990
2409
|
var _this289 = this;
|
|
2991
|
-
|
|
2992
2410
|
return _asyncToGenerator(function* () {
|
|
2993
2411
|
request.space_id = (0, _sdkRtl.encodeParam)(request.space_id);
|
|
2994
2412
|
return _this289.authStream(callback, 'GET', "/spaces/".concat(request.space_id, "/children/search"), {
|
|
@@ -2998,10 +2416,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
2998
2416
|
}, null, options);
|
|
2999
2417
|
})();
|
|
3000
2418
|
}
|
|
3001
|
-
|
|
3002
2419
|
space_parent(callback, space_id, fields, options) {
|
|
3003
2420
|
var _this290 = this;
|
|
3004
|
-
|
|
3005
2421
|
return _asyncToGenerator(function* () {
|
|
3006
2422
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
3007
2423
|
return _this290.authStream(callback, 'GET', "/spaces/".concat(space_id, "/parent"), {
|
|
@@ -3009,10 +2425,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3009
2425
|
}, null, options);
|
|
3010
2426
|
})();
|
|
3011
2427
|
}
|
|
3012
|
-
|
|
3013
2428
|
space_ancestors(callback, space_id, fields, options) {
|
|
3014
2429
|
var _this291 = this;
|
|
3015
|
-
|
|
3016
2430
|
return _asyncToGenerator(function* () {
|
|
3017
2431
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
3018
2432
|
return _this291.authStream(callback, 'GET', "/spaces/".concat(space_id, "/ancestors"), {
|
|
@@ -3020,10 +2434,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3020
2434
|
}, null, options);
|
|
3021
2435
|
})();
|
|
3022
2436
|
}
|
|
3023
|
-
|
|
3024
2437
|
space_looks(callback, space_id, fields, options) {
|
|
3025
2438
|
var _this292 = this;
|
|
3026
|
-
|
|
3027
2439
|
return _asyncToGenerator(function* () {
|
|
3028
2440
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
3029
2441
|
return _this292.authStream(callback, 'GET', "/spaces/".concat(space_id, "/looks"), {
|
|
@@ -3031,10 +2443,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3031
2443
|
}, null, options);
|
|
3032
2444
|
})();
|
|
3033
2445
|
}
|
|
3034
|
-
|
|
3035
2446
|
space_dashboards(callback, space_id, fields, options) {
|
|
3036
2447
|
var _this293 = this;
|
|
3037
|
-
|
|
3038
2448
|
return _asyncToGenerator(function* () {
|
|
3039
2449
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
3040
2450
|
return _this293.authStream(callback, 'GET', "/spaces/".concat(space_id, "/dashboards"), {
|
|
@@ -3042,28 +2452,22 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3042
2452
|
}, null, options);
|
|
3043
2453
|
})();
|
|
3044
2454
|
}
|
|
3045
|
-
|
|
3046
2455
|
all_themes(callback, fields, options) {
|
|
3047
2456
|
var _this294 = this;
|
|
3048
|
-
|
|
3049
2457
|
return _asyncToGenerator(function* () {
|
|
3050
2458
|
return _this294.authStream(callback, 'GET', '/themes', {
|
|
3051
2459
|
fields
|
|
3052
2460
|
}, null, options);
|
|
3053
2461
|
})();
|
|
3054
2462
|
}
|
|
3055
|
-
|
|
3056
2463
|
create_theme(callback, body, options) {
|
|
3057
2464
|
var _this295 = this;
|
|
3058
|
-
|
|
3059
2465
|
return _asyncToGenerator(function* () {
|
|
3060
2466
|
return _this295.authStream(callback, 'POST', '/themes', null, body, options);
|
|
3061
2467
|
})();
|
|
3062
2468
|
}
|
|
3063
|
-
|
|
3064
2469
|
search_themes(callback, request, options) {
|
|
3065
2470
|
var _this296 = this;
|
|
3066
|
-
|
|
3067
2471
|
return _asyncToGenerator(function* () {
|
|
3068
2472
|
return _this296.authStream(callback, 'GET', '/themes/search', {
|
|
3069
2473
|
id: request.id,
|
|
@@ -3078,30 +2482,24 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3078
2482
|
}, null, options);
|
|
3079
2483
|
})();
|
|
3080
2484
|
}
|
|
3081
|
-
|
|
3082
2485
|
default_theme(callback, ts, options) {
|
|
3083
2486
|
var _this297 = this;
|
|
3084
|
-
|
|
3085
2487
|
return _asyncToGenerator(function* () {
|
|
3086
2488
|
return _this297.authStream(callback, 'GET', '/themes/default', {
|
|
3087
2489
|
ts
|
|
3088
2490
|
}, null, options);
|
|
3089
2491
|
})();
|
|
3090
2492
|
}
|
|
3091
|
-
|
|
3092
2493
|
set_default_theme(callback, name, options) {
|
|
3093
2494
|
var _this298 = this;
|
|
3094
|
-
|
|
3095
2495
|
return _asyncToGenerator(function* () {
|
|
3096
2496
|
return _this298.authStream(callback, 'PUT', '/themes/default', {
|
|
3097
2497
|
name
|
|
3098
2498
|
}, null, options);
|
|
3099
2499
|
})();
|
|
3100
2500
|
}
|
|
3101
|
-
|
|
3102
2501
|
active_themes(callback, request, options) {
|
|
3103
2502
|
var _this299 = this;
|
|
3104
|
-
|
|
3105
2503
|
return _asyncToGenerator(function* () {
|
|
3106
2504
|
return _this299.authStream(callback, 'GET', '/themes/active', {
|
|
3107
2505
|
name: request.name,
|
|
@@ -3110,10 +2508,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3110
2508
|
}, null, options);
|
|
3111
2509
|
})();
|
|
3112
2510
|
}
|
|
3113
|
-
|
|
3114
2511
|
theme_or_default(callback, name, ts, options) {
|
|
3115
2512
|
var _this300 = this;
|
|
3116
|
-
|
|
3117
2513
|
return _asyncToGenerator(function* () {
|
|
3118
2514
|
return _this300.authStream(callback, 'GET', '/themes/theme_or_default', {
|
|
3119
2515
|
name,
|
|
@@ -3121,18 +2517,14 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3121
2517
|
}, null, options);
|
|
3122
2518
|
})();
|
|
3123
2519
|
}
|
|
3124
|
-
|
|
3125
2520
|
validate_theme(callback, body, options) {
|
|
3126
2521
|
var _this301 = this;
|
|
3127
|
-
|
|
3128
2522
|
return _asyncToGenerator(function* () {
|
|
3129
2523
|
return _this301.authStream(callback, 'POST', '/themes/validate', null, body, options);
|
|
3130
2524
|
})();
|
|
3131
2525
|
}
|
|
3132
|
-
|
|
3133
2526
|
theme(callback, theme_id, fields, options) {
|
|
3134
2527
|
var _this302 = this;
|
|
3135
|
-
|
|
3136
2528
|
return _asyncToGenerator(function* () {
|
|
3137
2529
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
3138
2530
|
return _this302.authStream(callback, 'GET', "/themes/".concat(theme_id), {
|
|
@@ -3140,38 +2532,30 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3140
2532
|
}, null, options);
|
|
3141
2533
|
})();
|
|
3142
2534
|
}
|
|
3143
|
-
|
|
3144
2535
|
update_theme(callback, theme_id, body, options) {
|
|
3145
2536
|
var _this303 = this;
|
|
3146
|
-
|
|
3147
2537
|
return _asyncToGenerator(function* () {
|
|
3148
2538
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
3149
2539
|
return _this303.authStream(callback, 'PATCH', "/themes/".concat(theme_id), null, body, options);
|
|
3150
2540
|
})();
|
|
3151
2541
|
}
|
|
3152
|
-
|
|
3153
2542
|
delete_theme(callback, theme_id, options) {
|
|
3154
2543
|
var _this304 = this;
|
|
3155
|
-
|
|
3156
2544
|
return _asyncToGenerator(function* () {
|
|
3157
2545
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
3158
2546
|
return _this304.authStream(callback, 'DELETE', "/themes/".concat(theme_id), null, null, options);
|
|
3159
2547
|
})();
|
|
3160
2548
|
}
|
|
3161
|
-
|
|
3162
2549
|
me(callback, fields, options) {
|
|
3163
2550
|
var _this305 = this;
|
|
3164
|
-
|
|
3165
2551
|
return _asyncToGenerator(function* () {
|
|
3166
2552
|
return _this305.authStream(callback, 'GET', '/user', {
|
|
3167
2553
|
fields
|
|
3168
2554
|
}, null, options);
|
|
3169
2555
|
})();
|
|
3170
2556
|
}
|
|
3171
|
-
|
|
3172
2557
|
all_users(callback, request, options) {
|
|
3173
2558
|
var _this306 = this;
|
|
3174
|
-
|
|
3175
2559
|
return _asyncToGenerator(function* () {
|
|
3176
2560
|
return _this306.authStream(callback, 'GET', '/users', {
|
|
3177
2561
|
fields: request.fields,
|
|
@@ -3182,20 +2566,16 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3182
2566
|
}, null, options);
|
|
3183
2567
|
})();
|
|
3184
2568
|
}
|
|
3185
|
-
|
|
3186
2569
|
create_user(callback, body, fields, options) {
|
|
3187
2570
|
var _this307 = this;
|
|
3188
|
-
|
|
3189
2571
|
return _asyncToGenerator(function* () {
|
|
3190
2572
|
return _this307.authStream(callback, 'POST', '/users', {
|
|
3191
2573
|
fields
|
|
3192
2574
|
}, body, options);
|
|
3193
2575
|
})();
|
|
3194
2576
|
}
|
|
3195
|
-
|
|
3196
2577
|
search_users(callback, request, options) {
|
|
3197
2578
|
var _this308 = this;
|
|
3198
|
-
|
|
3199
2579
|
return _asyncToGenerator(function* () {
|
|
3200
2580
|
return _this308.authStream(callback, 'GET', '/users/search', {
|
|
3201
2581
|
fields: request.fields,
|
|
@@ -3215,10 +2595,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3215
2595
|
}, null, options);
|
|
3216
2596
|
})();
|
|
3217
2597
|
}
|
|
3218
|
-
|
|
3219
2598
|
search_users_names(callback, request, options) {
|
|
3220
2599
|
var _this309 = this;
|
|
3221
|
-
|
|
3222
2600
|
return _asyncToGenerator(function* () {
|
|
3223
2601
|
request.pattern = (0, _sdkRtl.encodeParam)(request.pattern);
|
|
3224
2602
|
return _this309.authStream(callback, 'GET', "/users/search/names/".concat(request.pattern), {
|
|
@@ -3235,38 +2613,30 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3235
2613
|
}, null, options);
|
|
3236
2614
|
})();
|
|
3237
2615
|
}
|
|
3238
|
-
|
|
3239
2616
|
user(callback, user_id, fields, options) {
|
|
3240
2617
|
var _this310 = this;
|
|
3241
|
-
|
|
3242
2618
|
return _asyncToGenerator(function* () {
|
|
3243
2619
|
return _this310.authStream(callback, 'GET', "/users/".concat(user_id), {
|
|
3244
2620
|
fields
|
|
3245
2621
|
}, null, options);
|
|
3246
2622
|
})();
|
|
3247
2623
|
}
|
|
3248
|
-
|
|
3249
2624
|
update_user(callback, user_id, body, fields, options) {
|
|
3250
2625
|
var _this311 = this;
|
|
3251
|
-
|
|
3252
2626
|
return _asyncToGenerator(function* () {
|
|
3253
2627
|
return _this311.authStream(callback, 'PATCH', "/users/".concat(user_id), {
|
|
3254
2628
|
fields
|
|
3255
2629
|
}, body, options);
|
|
3256
2630
|
})();
|
|
3257
2631
|
}
|
|
3258
|
-
|
|
3259
2632
|
delete_user(callback, user_id, options) {
|
|
3260
2633
|
var _this312 = this;
|
|
3261
|
-
|
|
3262
2634
|
return _asyncToGenerator(function* () {
|
|
3263
2635
|
return _this312.authStream(callback, 'DELETE', "/users/".concat(user_id), null, null, options);
|
|
3264
2636
|
})();
|
|
3265
2637
|
}
|
|
3266
|
-
|
|
3267
2638
|
user_for_credential(callback, credential_type, credential_id, fields, options) {
|
|
3268
2639
|
var _this313 = this;
|
|
3269
|
-
|
|
3270
2640
|
return _asyncToGenerator(function* () {
|
|
3271
2641
|
credential_type = (0, _sdkRtl.encodeParam)(credential_type);
|
|
3272
2642
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
@@ -3275,260 +2645,204 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3275
2645
|
}, null, options);
|
|
3276
2646
|
})();
|
|
3277
2647
|
}
|
|
3278
|
-
|
|
3279
2648
|
user_credentials_email(callback, user_id, fields, options) {
|
|
3280
2649
|
var _this314 = this;
|
|
3281
|
-
|
|
3282
2650
|
return _asyncToGenerator(function* () {
|
|
3283
2651
|
return _this314.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_email"), {
|
|
3284
2652
|
fields
|
|
3285
2653
|
}, null, options);
|
|
3286
2654
|
})();
|
|
3287
2655
|
}
|
|
3288
|
-
|
|
3289
2656
|
create_user_credentials_email(callback, user_id, body, fields, options) {
|
|
3290
2657
|
var _this315 = this;
|
|
3291
|
-
|
|
3292
2658
|
return _asyncToGenerator(function* () {
|
|
3293
2659
|
return _this315.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_email"), {
|
|
3294
2660
|
fields
|
|
3295
2661
|
}, body, options);
|
|
3296
2662
|
})();
|
|
3297
2663
|
}
|
|
3298
|
-
|
|
3299
2664
|
update_user_credentials_email(callback, user_id, body, fields, options) {
|
|
3300
2665
|
var _this316 = this;
|
|
3301
|
-
|
|
3302
2666
|
return _asyncToGenerator(function* () {
|
|
3303
2667
|
return _this316.authStream(callback, 'PATCH', "/users/".concat(user_id, "/credentials_email"), {
|
|
3304
2668
|
fields
|
|
3305
2669
|
}, body, options);
|
|
3306
2670
|
})();
|
|
3307
2671
|
}
|
|
3308
|
-
|
|
3309
2672
|
delete_user_credentials_email(callback, user_id, options) {
|
|
3310
2673
|
var _this317 = this;
|
|
3311
|
-
|
|
3312
2674
|
return _asyncToGenerator(function* () {
|
|
3313
2675
|
return _this317.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
3314
2676
|
})();
|
|
3315
2677
|
}
|
|
3316
|
-
|
|
3317
2678
|
user_credentials_totp(callback, user_id, fields, options) {
|
|
3318
2679
|
var _this318 = this;
|
|
3319
|
-
|
|
3320
2680
|
return _asyncToGenerator(function* () {
|
|
3321
2681
|
return _this318.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_totp"), {
|
|
3322
2682
|
fields
|
|
3323
2683
|
}, null, options);
|
|
3324
2684
|
})();
|
|
3325
2685
|
}
|
|
3326
|
-
|
|
3327
2686
|
create_user_credentials_totp(callback, user_id, body, fields, options) {
|
|
3328
2687
|
var _this319 = this;
|
|
3329
|
-
|
|
3330
2688
|
return _asyncToGenerator(function* () {
|
|
3331
2689
|
return _this319.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_totp"), {
|
|
3332
2690
|
fields
|
|
3333
2691
|
}, body, options);
|
|
3334
2692
|
})();
|
|
3335
2693
|
}
|
|
3336
|
-
|
|
3337
2694
|
delete_user_credentials_totp(callback, user_id, options) {
|
|
3338
2695
|
var _this320 = this;
|
|
3339
|
-
|
|
3340
2696
|
return _asyncToGenerator(function* () {
|
|
3341
2697
|
return _this320.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
3342
2698
|
})();
|
|
3343
2699
|
}
|
|
3344
|
-
|
|
3345
2700
|
user_credentials_ldap(callback, user_id, fields, options) {
|
|
3346
2701
|
var _this321 = this;
|
|
3347
|
-
|
|
3348
2702
|
return _asyncToGenerator(function* () {
|
|
3349
2703
|
return _this321.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_ldap"), {
|
|
3350
2704
|
fields
|
|
3351
2705
|
}, null, options);
|
|
3352
2706
|
})();
|
|
3353
2707
|
}
|
|
3354
|
-
|
|
3355
2708
|
delete_user_credentials_ldap(callback, user_id, options) {
|
|
3356
2709
|
var _this322 = this;
|
|
3357
|
-
|
|
3358
2710
|
return _asyncToGenerator(function* () {
|
|
3359
2711
|
return _this322.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
3360
2712
|
})();
|
|
3361
2713
|
}
|
|
3362
|
-
|
|
3363
2714
|
user_credentials_google(callback, user_id, fields, options) {
|
|
3364
2715
|
var _this323 = this;
|
|
3365
|
-
|
|
3366
2716
|
return _asyncToGenerator(function* () {
|
|
3367
2717
|
return _this323.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_google"), {
|
|
3368
2718
|
fields
|
|
3369
2719
|
}, null, options);
|
|
3370
2720
|
})();
|
|
3371
2721
|
}
|
|
3372
|
-
|
|
3373
2722
|
delete_user_credentials_google(callback, user_id, options) {
|
|
3374
2723
|
var _this324 = this;
|
|
3375
|
-
|
|
3376
2724
|
return _asyncToGenerator(function* () {
|
|
3377
2725
|
return _this324.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
3378
2726
|
})();
|
|
3379
2727
|
}
|
|
3380
|
-
|
|
3381
2728
|
user_credentials_saml(callback, user_id, fields, options) {
|
|
3382
2729
|
var _this325 = this;
|
|
3383
|
-
|
|
3384
2730
|
return _asyncToGenerator(function* () {
|
|
3385
2731
|
return _this325.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_saml"), {
|
|
3386
2732
|
fields
|
|
3387
2733
|
}, null, options);
|
|
3388
2734
|
})();
|
|
3389
2735
|
}
|
|
3390
|
-
|
|
3391
2736
|
delete_user_credentials_saml(callback, user_id, options) {
|
|
3392
2737
|
var _this326 = this;
|
|
3393
|
-
|
|
3394
2738
|
return _asyncToGenerator(function* () {
|
|
3395
2739
|
return _this326.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
3396
2740
|
})();
|
|
3397
2741
|
}
|
|
3398
|
-
|
|
3399
2742
|
user_credentials_oidc(callback, user_id, fields, options) {
|
|
3400
2743
|
var _this327 = this;
|
|
3401
|
-
|
|
3402
2744
|
return _asyncToGenerator(function* () {
|
|
3403
2745
|
return _this327.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_oidc"), {
|
|
3404
2746
|
fields
|
|
3405
2747
|
}, null, options);
|
|
3406
2748
|
})();
|
|
3407
2749
|
}
|
|
3408
|
-
|
|
3409
2750
|
delete_user_credentials_oidc(callback, user_id, options) {
|
|
3410
2751
|
var _this328 = this;
|
|
3411
|
-
|
|
3412
2752
|
return _asyncToGenerator(function* () {
|
|
3413
2753
|
return _this328.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
3414
2754
|
})();
|
|
3415
2755
|
}
|
|
3416
|
-
|
|
3417
2756
|
user_credentials_api3(callback, user_id, credentials_api3_id, fields, options) {
|
|
3418
2757
|
var _this329 = this;
|
|
3419
|
-
|
|
3420
2758
|
return _asyncToGenerator(function* () {
|
|
3421
2759
|
return _this329.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
3422
2760
|
fields
|
|
3423
2761
|
}, null, options);
|
|
3424
2762
|
})();
|
|
3425
2763
|
}
|
|
3426
|
-
|
|
3427
2764
|
delete_user_credentials_api3(callback, user_id, credentials_api3_id, options) {
|
|
3428
2765
|
var _this330 = this;
|
|
3429
|
-
|
|
3430
2766
|
return _asyncToGenerator(function* () {
|
|
3431
2767
|
return _this330.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
3432
2768
|
})();
|
|
3433
2769
|
}
|
|
3434
|
-
|
|
3435
2770
|
all_user_credentials_api3s(callback, user_id, fields, options) {
|
|
3436
2771
|
var _this331 = this;
|
|
3437
|
-
|
|
3438
2772
|
return _asyncToGenerator(function* () {
|
|
3439
2773
|
return _this331.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_api3"), {
|
|
3440
2774
|
fields
|
|
3441
2775
|
}, null, options);
|
|
3442
2776
|
})();
|
|
3443
2777
|
}
|
|
3444
|
-
|
|
3445
2778
|
create_user_credentials_api3(callback, user_id, body, fields, options) {
|
|
3446
2779
|
var _this332 = this;
|
|
3447
|
-
|
|
3448
2780
|
return _asyncToGenerator(function* () {
|
|
3449
2781
|
return _this332.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_api3"), {
|
|
3450
2782
|
fields
|
|
3451
2783
|
}, body, options);
|
|
3452
2784
|
})();
|
|
3453
2785
|
}
|
|
3454
|
-
|
|
3455
2786
|
user_credentials_embed(callback, user_id, credentials_embed_id, fields, options) {
|
|
3456
2787
|
var _this333 = this;
|
|
3457
|
-
|
|
3458
2788
|
return _asyncToGenerator(function* () {
|
|
3459
2789
|
return _this333.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
3460
2790
|
fields
|
|
3461
2791
|
}, null, options);
|
|
3462
2792
|
})();
|
|
3463
2793
|
}
|
|
3464
|
-
|
|
3465
2794
|
delete_user_credentials_embed(callback, user_id, credentials_embed_id, options) {
|
|
3466
2795
|
var _this334 = this;
|
|
3467
|
-
|
|
3468
2796
|
return _asyncToGenerator(function* () {
|
|
3469
2797
|
return _this334.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
3470
2798
|
})();
|
|
3471
2799
|
}
|
|
3472
|
-
|
|
3473
2800
|
all_user_credentials_embeds(callback, user_id, fields, options) {
|
|
3474
2801
|
var _this335 = this;
|
|
3475
|
-
|
|
3476
2802
|
return _asyncToGenerator(function* () {
|
|
3477
2803
|
return _this335.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_embed"), {
|
|
3478
2804
|
fields
|
|
3479
2805
|
}, null, options);
|
|
3480
2806
|
})();
|
|
3481
2807
|
}
|
|
3482
|
-
|
|
3483
2808
|
user_credentials_looker_openid(callback, user_id, fields, options) {
|
|
3484
2809
|
var _this336 = this;
|
|
3485
|
-
|
|
3486
2810
|
return _asyncToGenerator(function* () {
|
|
3487
2811
|
return _this336.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
3488
2812
|
fields
|
|
3489
2813
|
}, null, options);
|
|
3490
2814
|
})();
|
|
3491
2815
|
}
|
|
3492
|
-
|
|
3493
2816
|
delete_user_credentials_looker_openid(callback, user_id, options) {
|
|
3494
2817
|
var _this337 = this;
|
|
3495
|
-
|
|
3496
2818
|
return _asyncToGenerator(function* () {
|
|
3497
2819
|
return _this337.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
3498
2820
|
})();
|
|
3499
2821
|
}
|
|
3500
|
-
|
|
3501
2822
|
user_session(callback, user_id, session_id, fields, options) {
|
|
3502
2823
|
var _this338 = this;
|
|
3503
|
-
|
|
3504
2824
|
return _asyncToGenerator(function* () {
|
|
3505
2825
|
return _this338.authStream(callback, 'GET', "/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
3506
2826
|
fields
|
|
3507
2827
|
}, null, options);
|
|
3508
2828
|
})();
|
|
3509
2829
|
}
|
|
3510
|
-
|
|
3511
2830
|
delete_user_session(callback, user_id, session_id, options) {
|
|
3512
2831
|
var _this339 = this;
|
|
3513
|
-
|
|
3514
2832
|
return _asyncToGenerator(function* () {
|
|
3515
2833
|
return _this339.authStream(callback, 'DELETE', "/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
3516
2834
|
})();
|
|
3517
2835
|
}
|
|
3518
|
-
|
|
3519
2836
|
all_user_sessions(callback, user_id, fields, options) {
|
|
3520
2837
|
var _this340 = this;
|
|
3521
|
-
|
|
3522
2838
|
return _asyncToGenerator(function* () {
|
|
3523
2839
|
return _this340.authStream(callback, 'GET', "/users/".concat(user_id, "/sessions"), {
|
|
3524
2840
|
fields
|
|
3525
2841
|
}, null, options);
|
|
3526
2842
|
})();
|
|
3527
2843
|
}
|
|
3528
|
-
|
|
3529
2844
|
create_user_credentials_email_password_reset(callback, request, options) {
|
|
3530
2845
|
var _this341 = this;
|
|
3531
|
-
|
|
3532
2846
|
return _asyncToGenerator(function* () {
|
|
3533
2847
|
return _this341.authStream(callback, 'POST', "/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
3534
2848
|
expires: request.expires,
|
|
@@ -3536,10 +2850,8 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3536
2850
|
}, null, options);
|
|
3537
2851
|
})();
|
|
3538
2852
|
}
|
|
3539
|
-
|
|
3540
2853
|
user_roles(callback, request, options) {
|
|
3541
2854
|
var _this342 = this;
|
|
3542
|
-
|
|
3543
2855
|
return _asyncToGenerator(function* () {
|
|
3544
2856
|
return _this342.authStream(callback, 'GET', "/users/".concat(request.user_id, "/roles"), {
|
|
3545
2857
|
fields: request.fields,
|
|
@@ -3547,20 +2859,16 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3547
2859
|
}, null, options);
|
|
3548
2860
|
})();
|
|
3549
2861
|
}
|
|
3550
|
-
|
|
3551
2862
|
set_user_roles(callback, user_id, body, fields, options) {
|
|
3552
2863
|
var _this343 = this;
|
|
3553
|
-
|
|
3554
2864
|
return _asyncToGenerator(function* () {
|
|
3555
2865
|
return _this343.authStream(callback, 'PUT', "/users/".concat(user_id, "/roles"), {
|
|
3556
2866
|
fields
|
|
3557
2867
|
}, body, options);
|
|
3558
2868
|
})();
|
|
3559
2869
|
}
|
|
3560
|
-
|
|
3561
2870
|
user_attribute_user_values(callback, request, options) {
|
|
3562
2871
|
var _this344 = this;
|
|
3563
|
-
|
|
3564
2872
|
return _asyncToGenerator(function* () {
|
|
3565
2873
|
return _this344.authStream(callback, 'GET', "/users/".concat(request.user_id, "/attribute_values"), {
|
|
3566
2874
|
fields: request.fields,
|
|
@@ -3570,26 +2878,20 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3570
2878
|
}, null, options);
|
|
3571
2879
|
})();
|
|
3572
2880
|
}
|
|
3573
|
-
|
|
3574
2881
|
set_user_attribute_user_value(callback, user_id, user_attribute_id, body, options) {
|
|
3575
2882
|
var _this345 = this;
|
|
3576
|
-
|
|
3577
2883
|
return _asyncToGenerator(function* () {
|
|
3578
2884
|
return _this345.authStream(callback, 'PATCH', "/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
3579
2885
|
})();
|
|
3580
2886
|
}
|
|
3581
|
-
|
|
3582
2887
|
delete_user_attribute_user_value(callback, user_id, user_attribute_id, options) {
|
|
3583
2888
|
var _this346 = this;
|
|
3584
|
-
|
|
3585
2889
|
return _asyncToGenerator(function* () {
|
|
3586
2890
|
return _this346.authStream(callback, 'DELETE', "/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
3587
2891
|
})();
|
|
3588
2892
|
}
|
|
3589
|
-
|
|
3590
2893
|
all_user_attributes(callback, request, options) {
|
|
3591
2894
|
var _this347 = this;
|
|
3592
|
-
|
|
3593
2895
|
return _asyncToGenerator(function* () {
|
|
3594
2896
|
return _this347.authStream(callback, 'GET', '/user_attributes', {
|
|
3595
2897
|
fields: request.fields,
|
|
@@ -3597,83 +2899,64 @@ class Looker31SDKStream extends _sdkRtl.APIMethods {
|
|
|
3597
2899
|
}, null, options);
|
|
3598
2900
|
})();
|
|
3599
2901
|
}
|
|
3600
|
-
|
|
3601
2902
|
create_user_attribute(callback, body, fields, options) {
|
|
3602
2903
|
var _this348 = this;
|
|
3603
|
-
|
|
3604
2904
|
return _asyncToGenerator(function* () {
|
|
3605
2905
|
return _this348.authStream(callback, 'POST', '/user_attributes', {
|
|
3606
2906
|
fields
|
|
3607
2907
|
}, body, options);
|
|
3608
2908
|
})();
|
|
3609
2909
|
}
|
|
3610
|
-
|
|
3611
2910
|
user_attribute(callback, user_attribute_id, fields, options) {
|
|
3612
2911
|
var _this349 = this;
|
|
3613
|
-
|
|
3614
2912
|
return _asyncToGenerator(function* () {
|
|
3615
2913
|
return _this349.authStream(callback, 'GET', "/user_attributes/".concat(user_attribute_id), {
|
|
3616
2914
|
fields
|
|
3617
2915
|
}, null, options);
|
|
3618
2916
|
})();
|
|
3619
2917
|
}
|
|
3620
|
-
|
|
3621
2918
|
update_user_attribute(callback, user_attribute_id, body, fields, options) {
|
|
3622
2919
|
var _this350 = this;
|
|
3623
|
-
|
|
3624
2920
|
return _asyncToGenerator(function* () {
|
|
3625
2921
|
return _this350.authStream(callback, 'PATCH', "/user_attributes/".concat(user_attribute_id), {
|
|
3626
2922
|
fields
|
|
3627
2923
|
}, body, options);
|
|
3628
2924
|
})();
|
|
3629
2925
|
}
|
|
3630
|
-
|
|
3631
2926
|
delete_user_attribute(callback, user_attribute_id, options) {
|
|
3632
2927
|
var _this351 = this;
|
|
3633
|
-
|
|
3634
2928
|
return _asyncToGenerator(function* () {
|
|
3635
2929
|
return _this351.authStream(callback, 'DELETE', "/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
3636
2930
|
})();
|
|
3637
2931
|
}
|
|
3638
|
-
|
|
3639
2932
|
all_user_attribute_group_values(callback, user_attribute_id, fields, options) {
|
|
3640
2933
|
var _this352 = this;
|
|
3641
|
-
|
|
3642
2934
|
return _asyncToGenerator(function* () {
|
|
3643
2935
|
return _this352.authStream(callback, 'GET', "/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
3644
2936
|
fields
|
|
3645
2937
|
}, null, options);
|
|
3646
2938
|
})();
|
|
3647
2939
|
}
|
|
3648
|
-
|
|
3649
2940
|
set_user_attribute_group_values(callback, user_attribute_id, body, options) {
|
|
3650
2941
|
var _this353 = this;
|
|
3651
|
-
|
|
3652
2942
|
return _asyncToGenerator(function* () {
|
|
3653
2943
|
return _this353.authStream(callback, 'POST', "/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
3654
2944
|
})();
|
|
3655
2945
|
}
|
|
3656
|
-
|
|
3657
2946
|
all_workspaces(callback, options) {
|
|
3658
2947
|
var _this354 = this;
|
|
3659
|
-
|
|
3660
2948
|
return _asyncToGenerator(function* () {
|
|
3661
2949
|
return _this354.authStream(callback, 'GET', '/workspaces', null, null, options);
|
|
3662
2950
|
})();
|
|
3663
2951
|
}
|
|
3664
|
-
|
|
3665
2952
|
workspace(callback, workspace_id, options) {
|
|
3666
2953
|
var _this355 = this;
|
|
3667
|
-
|
|
3668
2954
|
return _asyncToGenerator(function* () {
|
|
3669
2955
|
workspace_id = (0, _sdkRtl.encodeParam)(workspace_id);
|
|
3670
2956
|
return _this355.authStream(callback, 'GET', "/workspaces/".concat(workspace_id), null, null, options);
|
|
3671
2957
|
})();
|
|
3672
2958
|
}
|
|
3673
|
-
|
|
3674
2959
|
}
|
|
3675
|
-
|
|
3676
2960
|
exports.Looker31SDKStream = Looker31SDKStream;
|
|
3677
|
-
|
|
3678
2961
|
_defineProperty(Looker31SDKStream, "ApiVersion", '3.1');
|
|
3679
2962
|
//# sourceMappingURL=streams.js.map
|