@looker/sdk 22.4.2 → 22.6.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 +15 -1
- package/lib/3.1/models.js.map +1 -1
- package/lib/4.0/funcs.d.ts +2 -1
- package/lib/4.0/funcs.js +1223 -1211
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +2 -1
- package/lib/4.0/methods.js +812 -804
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +2 -1
- package/lib/4.0/models.d.ts +12 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +2 -1
- package/lib/4.0/streams.js +812 -804
- package/lib/4.0/streams.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1215 -1206
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +812 -804
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +812 -804
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +3 -3
package/lib/esm/4.0/streams.js
CHANGED
|
@@ -87,11 +87,19 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
87
87
|
})();
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
alert_notifications(callback, options) {
|
|
91
91
|
var _this8 = this;
|
|
92
92
|
|
|
93
93
|
return _asyncToGenerator(function* () {
|
|
94
|
-
return _this8.authStream(callback, '
|
|
94
|
+
return _this8.authStream(callback, 'GET', '/alert_notifications', null, null, options);
|
|
95
|
+
})();
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
login(callback, request, options) {
|
|
99
|
+
var _this9 = this;
|
|
100
|
+
|
|
101
|
+
return _asyncToGenerator(function* () {
|
|
102
|
+
return _this9.authStream(callback, 'POST', '/login', {
|
|
95
103
|
client_id: request.client_id,
|
|
96
104
|
client_secret: request.client_secret
|
|
97
105
|
}, null, options);
|
|
@@ -99,396 +107,396 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
99
107
|
}
|
|
100
108
|
|
|
101
109
|
login_user(callback, user_id, associative, options) {
|
|
102
|
-
var
|
|
110
|
+
var _this10 = this;
|
|
103
111
|
|
|
104
112
|
return _asyncToGenerator(function* () {
|
|
105
113
|
user_id = encodeParam(user_id);
|
|
106
|
-
return
|
|
114
|
+
return _this10.authStream(callback, 'POST', "/login/".concat(user_id), {
|
|
107
115
|
associative
|
|
108
116
|
}, null, options);
|
|
109
117
|
})();
|
|
110
118
|
}
|
|
111
119
|
|
|
112
120
|
logout(callback, options) {
|
|
113
|
-
var
|
|
121
|
+
var _this11 = this;
|
|
114
122
|
|
|
115
123
|
return _asyncToGenerator(function* () {
|
|
116
|
-
return
|
|
124
|
+
return _this11.authStream(callback, 'DELETE', '/logout', null, null, options);
|
|
117
125
|
})();
|
|
118
126
|
}
|
|
119
127
|
|
|
120
128
|
create_embed_secret(callback, body, options) {
|
|
121
|
-
var
|
|
129
|
+
var _this12 = this;
|
|
122
130
|
|
|
123
131
|
return _asyncToGenerator(function* () {
|
|
124
|
-
return
|
|
132
|
+
return _this12.authStream(callback, 'POST', '/embed_config/secrets', null, body, options);
|
|
125
133
|
})();
|
|
126
134
|
}
|
|
127
135
|
|
|
128
136
|
delete_embed_secret(callback, embed_secret_id, options) {
|
|
129
|
-
var
|
|
137
|
+
var _this13 = this;
|
|
130
138
|
|
|
131
139
|
return _asyncToGenerator(function* () {
|
|
132
140
|
embed_secret_id = encodeParam(embed_secret_id);
|
|
133
|
-
return
|
|
141
|
+
return _this13.authStream(callback, 'DELETE', "/embed_config/secrets/".concat(embed_secret_id), null, null, options);
|
|
134
142
|
})();
|
|
135
143
|
}
|
|
136
144
|
|
|
137
145
|
create_sso_embed_url(callback, body, options) {
|
|
138
|
-
var
|
|
146
|
+
var _this14 = this;
|
|
139
147
|
|
|
140
148
|
return _asyncToGenerator(function* () {
|
|
141
|
-
return
|
|
149
|
+
return _this14.authStream(callback, 'POST', '/embed/sso_url', null, body, options);
|
|
142
150
|
})();
|
|
143
151
|
}
|
|
144
152
|
|
|
145
153
|
create_embed_url_as_me(callback, body, options) {
|
|
146
|
-
var
|
|
154
|
+
var _this15 = this;
|
|
147
155
|
|
|
148
156
|
return _asyncToGenerator(function* () {
|
|
149
|
-
return
|
|
157
|
+
return _this15.authStream(callback, 'POST', '/embed/token_url/me', null, body, options);
|
|
150
158
|
})();
|
|
151
159
|
}
|
|
152
160
|
|
|
153
161
|
ldap_config(callback, options) {
|
|
154
|
-
var
|
|
162
|
+
var _this16 = this;
|
|
155
163
|
|
|
156
164
|
return _asyncToGenerator(function* () {
|
|
157
|
-
return
|
|
165
|
+
return _this16.authStream(callback, 'GET', '/ldap_config', null, null, options);
|
|
158
166
|
})();
|
|
159
167
|
}
|
|
160
168
|
|
|
161
169
|
update_ldap_config(callback, body, options) {
|
|
162
|
-
var
|
|
170
|
+
var _this17 = this;
|
|
163
171
|
|
|
164
172
|
return _asyncToGenerator(function* () {
|
|
165
|
-
return
|
|
173
|
+
return _this17.authStream(callback, 'PATCH', '/ldap_config', null, body, options);
|
|
166
174
|
})();
|
|
167
175
|
}
|
|
168
176
|
|
|
169
177
|
test_ldap_config_connection(callback, body, options) {
|
|
170
|
-
var
|
|
178
|
+
var _this18 = this;
|
|
171
179
|
|
|
172
180
|
return _asyncToGenerator(function* () {
|
|
173
|
-
return
|
|
181
|
+
return _this18.authStream(callback, 'PUT', '/ldap_config/test_connection', null, body, options);
|
|
174
182
|
})();
|
|
175
183
|
}
|
|
176
184
|
|
|
177
185
|
test_ldap_config_auth(callback, body, options) {
|
|
178
|
-
var
|
|
186
|
+
var _this19 = this;
|
|
179
187
|
|
|
180
188
|
return _asyncToGenerator(function* () {
|
|
181
|
-
return
|
|
189
|
+
return _this19.authStream(callback, 'PUT', '/ldap_config/test_auth', null, body, options);
|
|
182
190
|
})();
|
|
183
191
|
}
|
|
184
192
|
|
|
185
193
|
test_ldap_config_user_info(callback, body, options) {
|
|
186
|
-
var
|
|
194
|
+
var _this20 = this;
|
|
187
195
|
|
|
188
196
|
return _asyncToGenerator(function* () {
|
|
189
|
-
return
|
|
197
|
+
return _this20.authStream(callback, 'PUT', '/ldap_config/test_user_info', null, body, options);
|
|
190
198
|
})();
|
|
191
199
|
}
|
|
192
200
|
|
|
193
201
|
test_ldap_config_user_auth(callback, body, options) {
|
|
194
|
-
var
|
|
202
|
+
var _this21 = this;
|
|
195
203
|
|
|
196
204
|
return _asyncToGenerator(function* () {
|
|
197
|
-
return
|
|
205
|
+
return _this21.authStream(callback, 'PUT', '/ldap_config/test_user_auth', null, body, options);
|
|
198
206
|
})();
|
|
199
207
|
}
|
|
200
208
|
|
|
201
209
|
all_oauth_client_apps(callback, fields, options) {
|
|
202
|
-
var
|
|
210
|
+
var _this22 = this;
|
|
203
211
|
|
|
204
212
|
return _asyncToGenerator(function* () {
|
|
205
|
-
return
|
|
213
|
+
return _this22.authStream(callback, 'GET', '/oauth_client_apps', {
|
|
206
214
|
fields
|
|
207
215
|
}, null, options);
|
|
208
216
|
})();
|
|
209
217
|
}
|
|
210
218
|
|
|
211
219
|
oauth_client_app(callback, client_guid, fields, options) {
|
|
212
|
-
var
|
|
220
|
+
var _this23 = this;
|
|
213
221
|
|
|
214
222
|
return _asyncToGenerator(function* () {
|
|
215
223
|
client_guid = encodeParam(client_guid);
|
|
216
|
-
return
|
|
224
|
+
return _this23.authStream(callback, 'GET', "/oauth_client_apps/".concat(client_guid), {
|
|
217
225
|
fields
|
|
218
226
|
}, null, options);
|
|
219
227
|
})();
|
|
220
228
|
}
|
|
221
229
|
|
|
222
230
|
register_oauth_client_app(callback, client_guid, body, fields, options) {
|
|
223
|
-
var
|
|
231
|
+
var _this24 = this;
|
|
224
232
|
|
|
225
233
|
return _asyncToGenerator(function* () {
|
|
226
234
|
client_guid = encodeParam(client_guid);
|
|
227
|
-
return
|
|
235
|
+
return _this24.authStream(callback, 'POST', "/oauth_client_apps/".concat(client_guid), {
|
|
228
236
|
fields
|
|
229
237
|
}, body, options);
|
|
230
238
|
})();
|
|
231
239
|
}
|
|
232
240
|
|
|
233
241
|
update_oauth_client_app(callback, client_guid, body, fields, options) {
|
|
234
|
-
var
|
|
242
|
+
var _this25 = this;
|
|
235
243
|
|
|
236
244
|
return _asyncToGenerator(function* () {
|
|
237
245
|
client_guid = encodeParam(client_guid);
|
|
238
|
-
return
|
|
246
|
+
return _this25.authStream(callback, 'PATCH', "/oauth_client_apps/".concat(client_guid), {
|
|
239
247
|
fields
|
|
240
248
|
}, body, options);
|
|
241
249
|
})();
|
|
242
250
|
}
|
|
243
251
|
|
|
244
252
|
delete_oauth_client_app(callback, client_guid, options) {
|
|
245
|
-
var
|
|
253
|
+
var _this26 = this;
|
|
246
254
|
|
|
247
255
|
return _asyncToGenerator(function* () {
|
|
248
256
|
client_guid = encodeParam(client_guid);
|
|
249
|
-
return
|
|
257
|
+
return _this26.authStream(callback, 'DELETE', "/oauth_client_apps/".concat(client_guid), null, null, options);
|
|
250
258
|
})();
|
|
251
259
|
}
|
|
252
260
|
|
|
253
261
|
invalidate_tokens(callback, client_guid, options) {
|
|
254
|
-
var
|
|
262
|
+
var _this27 = this;
|
|
255
263
|
|
|
256
264
|
return _asyncToGenerator(function* () {
|
|
257
265
|
client_guid = encodeParam(client_guid);
|
|
258
|
-
return
|
|
266
|
+
return _this27.authStream(callback, 'DELETE', "/oauth_client_apps/".concat(client_guid, "/tokens"), null, null, options);
|
|
259
267
|
})();
|
|
260
268
|
}
|
|
261
269
|
|
|
262
270
|
activate_app_user(callback, client_guid, user_id, fields, options) {
|
|
263
|
-
var
|
|
271
|
+
var _this28 = this;
|
|
264
272
|
|
|
265
273
|
return _asyncToGenerator(function* () {
|
|
266
274
|
client_guid = encodeParam(client_guid);
|
|
267
275
|
user_id = encodeParam(user_id);
|
|
268
|
-
return
|
|
276
|
+
return _this28.authStream(callback, 'POST', "/oauth_client_apps/".concat(client_guid, "/users/").concat(user_id), {
|
|
269
277
|
fields
|
|
270
278
|
}, null, options);
|
|
271
279
|
})();
|
|
272
280
|
}
|
|
273
281
|
|
|
274
282
|
deactivate_app_user(callback, client_guid, user_id, fields, options) {
|
|
275
|
-
var
|
|
283
|
+
var _this29 = this;
|
|
276
284
|
|
|
277
285
|
return _asyncToGenerator(function* () {
|
|
278
286
|
client_guid = encodeParam(client_guid);
|
|
279
287
|
user_id = encodeParam(user_id);
|
|
280
|
-
return
|
|
288
|
+
return _this29.authStream(callback, 'DELETE', "/oauth_client_apps/".concat(client_guid, "/users/").concat(user_id), {
|
|
281
289
|
fields
|
|
282
290
|
}, null, options);
|
|
283
291
|
})();
|
|
284
292
|
}
|
|
285
293
|
|
|
286
294
|
oidc_config(callback, options) {
|
|
287
|
-
var
|
|
295
|
+
var _this30 = this;
|
|
288
296
|
|
|
289
297
|
return _asyncToGenerator(function* () {
|
|
290
|
-
return
|
|
298
|
+
return _this30.authStream(callback, 'GET', '/oidc_config', null, null, options);
|
|
291
299
|
})();
|
|
292
300
|
}
|
|
293
301
|
|
|
294
302
|
update_oidc_config(callback, body, options) {
|
|
295
|
-
var
|
|
303
|
+
var _this31 = this;
|
|
296
304
|
|
|
297
305
|
return _asyncToGenerator(function* () {
|
|
298
|
-
return
|
|
306
|
+
return _this31.authStream(callback, 'PATCH', '/oidc_config', null, body, options);
|
|
299
307
|
})();
|
|
300
308
|
}
|
|
301
309
|
|
|
302
310
|
oidc_test_config(callback, test_slug, options) {
|
|
303
|
-
var
|
|
311
|
+
var _this32 = this;
|
|
304
312
|
|
|
305
313
|
return _asyncToGenerator(function* () {
|
|
306
314
|
test_slug = encodeParam(test_slug);
|
|
307
|
-
return
|
|
315
|
+
return _this32.authStream(callback, 'GET', "/oidc_test_configs/".concat(test_slug), null, null, options);
|
|
308
316
|
})();
|
|
309
317
|
}
|
|
310
318
|
|
|
311
319
|
delete_oidc_test_config(callback, test_slug, options) {
|
|
312
|
-
var
|
|
320
|
+
var _this33 = this;
|
|
313
321
|
|
|
314
322
|
return _asyncToGenerator(function* () {
|
|
315
323
|
test_slug = encodeParam(test_slug);
|
|
316
|
-
return
|
|
324
|
+
return _this33.authStream(callback, 'DELETE', "/oidc_test_configs/".concat(test_slug), null, null, options);
|
|
317
325
|
})();
|
|
318
326
|
}
|
|
319
327
|
|
|
320
328
|
create_oidc_test_config(callback, body, options) {
|
|
321
|
-
var
|
|
329
|
+
var _this34 = this;
|
|
322
330
|
|
|
323
331
|
return _asyncToGenerator(function* () {
|
|
324
|
-
return
|
|
332
|
+
return _this34.authStream(callback, 'POST', '/oidc_test_configs', null, body, options);
|
|
325
333
|
})();
|
|
326
334
|
}
|
|
327
335
|
|
|
328
336
|
password_config(callback, options) {
|
|
329
|
-
var
|
|
337
|
+
var _this35 = this;
|
|
330
338
|
|
|
331
339
|
return _asyncToGenerator(function* () {
|
|
332
|
-
return
|
|
340
|
+
return _this35.authStream(callback, 'GET', '/password_config', null, null, options);
|
|
333
341
|
})();
|
|
334
342
|
}
|
|
335
343
|
|
|
336
344
|
update_password_config(callback, body, options) {
|
|
337
|
-
var
|
|
345
|
+
var _this36 = this;
|
|
338
346
|
|
|
339
347
|
return _asyncToGenerator(function* () {
|
|
340
|
-
return
|
|
348
|
+
return _this36.authStream(callback, 'PATCH', '/password_config', null, body, options);
|
|
341
349
|
})();
|
|
342
350
|
}
|
|
343
351
|
|
|
344
352
|
force_password_reset_at_next_login_for_all_users(callback, options) {
|
|
345
|
-
var
|
|
353
|
+
var _this37 = this;
|
|
346
354
|
|
|
347
355
|
return _asyncToGenerator(function* () {
|
|
348
|
-
return
|
|
356
|
+
return _this37.authStream(callback, 'PUT', '/password_config/force_password_reset_at_next_login_for_all_users', null, null, options);
|
|
349
357
|
})();
|
|
350
358
|
}
|
|
351
359
|
|
|
352
360
|
saml_config(callback, options) {
|
|
353
|
-
var
|
|
361
|
+
var _this38 = this;
|
|
354
362
|
|
|
355
363
|
return _asyncToGenerator(function* () {
|
|
356
|
-
return
|
|
364
|
+
return _this38.authStream(callback, 'GET', '/saml_config', null, null, options);
|
|
357
365
|
})();
|
|
358
366
|
}
|
|
359
367
|
|
|
360
368
|
update_saml_config(callback, body, options) {
|
|
361
|
-
var
|
|
369
|
+
var _this39 = this;
|
|
362
370
|
|
|
363
371
|
return _asyncToGenerator(function* () {
|
|
364
|
-
return
|
|
372
|
+
return _this39.authStream(callback, 'PATCH', '/saml_config', null, body, options);
|
|
365
373
|
})();
|
|
366
374
|
}
|
|
367
375
|
|
|
368
376
|
saml_test_config(callback, test_slug, options) {
|
|
369
|
-
var
|
|
377
|
+
var _this40 = this;
|
|
370
378
|
|
|
371
379
|
return _asyncToGenerator(function* () {
|
|
372
380
|
test_slug = encodeParam(test_slug);
|
|
373
|
-
return
|
|
381
|
+
return _this40.authStream(callback, 'GET', "/saml_test_configs/".concat(test_slug), null, null, options);
|
|
374
382
|
})();
|
|
375
383
|
}
|
|
376
384
|
|
|
377
385
|
delete_saml_test_config(callback, test_slug, options) {
|
|
378
|
-
var
|
|
386
|
+
var _this41 = this;
|
|
379
387
|
|
|
380
388
|
return _asyncToGenerator(function* () {
|
|
381
389
|
test_slug = encodeParam(test_slug);
|
|
382
|
-
return
|
|
390
|
+
return _this41.authStream(callback, 'DELETE', "/saml_test_configs/".concat(test_slug), null, null, options);
|
|
383
391
|
})();
|
|
384
392
|
}
|
|
385
393
|
|
|
386
394
|
create_saml_test_config(callback, body, options) {
|
|
387
|
-
var
|
|
395
|
+
var _this42 = this;
|
|
388
396
|
|
|
389
397
|
return _asyncToGenerator(function* () {
|
|
390
|
-
return
|
|
398
|
+
return _this42.authStream(callback, 'POST', '/saml_test_configs', null, body, options);
|
|
391
399
|
})();
|
|
392
400
|
}
|
|
393
401
|
|
|
394
402
|
parse_saml_idp_metadata(callback, body, options) {
|
|
395
|
-
var
|
|
403
|
+
var _this43 = this;
|
|
396
404
|
|
|
397
405
|
return _asyncToGenerator(function* () {
|
|
398
|
-
return
|
|
406
|
+
return _this43.authStream(callback, 'POST', '/parse_saml_idp_metadata', null, body, options);
|
|
399
407
|
})();
|
|
400
408
|
}
|
|
401
409
|
|
|
402
410
|
fetch_and_parse_saml_idp_metadata(callback, body, options) {
|
|
403
|
-
var
|
|
411
|
+
var _this44 = this;
|
|
404
412
|
|
|
405
413
|
return _asyncToGenerator(function* () {
|
|
406
|
-
return
|
|
414
|
+
return _this44.authStream(callback, 'POST', '/fetch_and_parse_saml_idp_metadata', null, body, options);
|
|
407
415
|
})();
|
|
408
416
|
}
|
|
409
417
|
|
|
410
418
|
session_config(callback, options) {
|
|
411
|
-
var
|
|
419
|
+
var _this45 = this;
|
|
412
420
|
|
|
413
421
|
return _asyncToGenerator(function* () {
|
|
414
|
-
return
|
|
422
|
+
return _this45.authStream(callback, 'GET', '/session_config', null, null, options);
|
|
415
423
|
})();
|
|
416
424
|
}
|
|
417
425
|
|
|
418
426
|
update_session_config(callback, body, options) {
|
|
419
|
-
var
|
|
427
|
+
var _this46 = this;
|
|
420
428
|
|
|
421
429
|
return _asyncToGenerator(function* () {
|
|
422
|
-
return
|
|
430
|
+
return _this46.authStream(callback, 'PATCH', '/session_config', null, body, options);
|
|
423
431
|
})();
|
|
424
432
|
}
|
|
425
433
|
|
|
426
434
|
get_support_access_allowlist_entries(callback, fields, options) {
|
|
427
|
-
var
|
|
435
|
+
var _this47 = this;
|
|
428
436
|
|
|
429
437
|
return _asyncToGenerator(function* () {
|
|
430
|
-
return
|
|
438
|
+
return _this47.authStream(callback, 'GET', '/support_access/allowlist', {
|
|
431
439
|
fields
|
|
432
440
|
}, null, options);
|
|
433
441
|
})();
|
|
434
442
|
}
|
|
435
443
|
|
|
436
444
|
add_support_access_allowlist_entries(callback, body, options) {
|
|
437
|
-
var
|
|
445
|
+
var _this48 = this;
|
|
438
446
|
|
|
439
447
|
return _asyncToGenerator(function* () {
|
|
440
|
-
return
|
|
448
|
+
return _this48.authStream(callback, 'POST', '/support_access/allowlist', null, body, options);
|
|
441
449
|
})();
|
|
442
450
|
}
|
|
443
451
|
|
|
444
452
|
delete_support_access_allowlist_entry(callback, entry_id, options) {
|
|
445
|
-
var
|
|
453
|
+
var _this49 = this;
|
|
446
454
|
|
|
447
455
|
return _asyncToGenerator(function* () {
|
|
448
456
|
entry_id = encodeParam(entry_id);
|
|
449
|
-
return
|
|
457
|
+
return _this49.authStream(callback, 'DELETE', "/support_access/allowlist/".concat(entry_id), null, null, options);
|
|
450
458
|
})();
|
|
451
459
|
}
|
|
452
460
|
|
|
453
461
|
enable_support_access(callback, body, options) {
|
|
454
|
-
var
|
|
462
|
+
var _this50 = this;
|
|
455
463
|
|
|
456
464
|
return _asyncToGenerator(function* () {
|
|
457
|
-
return
|
|
465
|
+
return _this50.authStream(callback, 'PUT', '/support_access/enable', null, body, options);
|
|
458
466
|
})();
|
|
459
467
|
}
|
|
460
468
|
|
|
461
469
|
disable_support_access(callback, options) {
|
|
462
|
-
var
|
|
470
|
+
var _this51 = this;
|
|
463
471
|
|
|
464
472
|
return _asyncToGenerator(function* () {
|
|
465
|
-
return
|
|
473
|
+
return _this51.authStream(callback, 'PUT', '/support_access/disable', null, null, options);
|
|
466
474
|
})();
|
|
467
475
|
}
|
|
468
476
|
|
|
469
477
|
support_access_status(callback, options) {
|
|
470
|
-
var
|
|
478
|
+
var _this52 = this;
|
|
471
479
|
|
|
472
480
|
return _asyncToGenerator(function* () {
|
|
473
|
-
return
|
|
481
|
+
return _this52.authStream(callback, 'GET', '/support_access/status', null, null, options);
|
|
474
482
|
})();
|
|
475
483
|
}
|
|
476
484
|
|
|
477
485
|
all_user_login_lockouts(callback, fields, options) {
|
|
478
|
-
var
|
|
486
|
+
var _this53 = this;
|
|
479
487
|
|
|
480
488
|
return _asyncToGenerator(function* () {
|
|
481
|
-
return
|
|
489
|
+
return _this53.authStream(callback, 'GET', '/user_login_lockouts', {
|
|
482
490
|
fields
|
|
483
491
|
}, null, options);
|
|
484
492
|
})();
|
|
485
493
|
}
|
|
486
494
|
|
|
487
495
|
search_user_login_lockouts(callback, request, options) {
|
|
488
|
-
var
|
|
496
|
+
var _this54 = this;
|
|
489
497
|
|
|
490
498
|
return _asyncToGenerator(function* () {
|
|
491
|
-
return
|
|
499
|
+
return _this54.authStream(callback, 'GET', '/user_login_lockouts/search', {
|
|
492
500
|
fields: request.fields,
|
|
493
501
|
page: request.page,
|
|
494
502
|
per_page: request.per_page,
|
|
@@ -505,39 +513,39 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
505
513
|
}
|
|
506
514
|
|
|
507
515
|
delete_user_login_lockout(callback, key, options) {
|
|
508
|
-
var
|
|
516
|
+
var _this55 = this;
|
|
509
517
|
|
|
510
518
|
return _asyncToGenerator(function* () {
|
|
511
519
|
key = encodeParam(key);
|
|
512
|
-
return
|
|
520
|
+
return _this55.authStream(callback, 'DELETE', "/user_login_lockout/".concat(key), null, null, options);
|
|
513
521
|
})();
|
|
514
522
|
}
|
|
515
523
|
|
|
516
524
|
all_boards(callback, fields, options) {
|
|
517
|
-
var
|
|
525
|
+
var _this56 = this;
|
|
518
526
|
|
|
519
527
|
return _asyncToGenerator(function* () {
|
|
520
|
-
return
|
|
528
|
+
return _this56.authStream(callback, 'GET', '/boards', {
|
|
521
529
|
fields
|
|
522
530
|
}, null, options);
|
|
523
531
|
})();
|
|
524
532
|
}
|
|
525
533
|
|
|
526
534
|
create_board(callback, body, fields, options) {
|
|
527
|
-
var
|
|
535
|
+
var _this57 = this;
|
|
528
536
|
|
|
529
537
|
return _asyncToGenerator(function* () {
|
|
530
|
-
return
|
|
538
|
+
return _this57.authStream(callback, 'POST', '/boards', {
|
|
531
539
|
fields
|
|
532
540
|
}, body, options);
|
|
533
541
|
})();
|
|
534
542
|
}
|
|
535
543
|
|
|
536
544
|
search_boards(callback, request, options) {
|
|
537
|
-
var
|
|
545
|
+
var _this58 = this;
|
|
538
546
|
|
|
539
547
|
return _asyncToGenerator(function* () {
|
|
540
|
-
return
|
|
548
|
+
return _this58.authStream(callback, 'GET', '/boards/search', {
|
|
541
549
|
title: request.title,
|
|
542
550
|
created_at: request.created_at,
|
|
543
551
|
first_name: request.first_name,
|
|
@@ -556,41 +564,41 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
556
564
|
}
|
|
557
565
|
|
|
558
566
|
board(callback, board_id, fields, options) {
|
|
559
|
-
var
|
|
567
|
+
var _this59 = this;
|
|
560
568
|
|
|
561
569
|
return _asyncToGenerator(function* () {
|
|
562
570
|
board_id = encodeParam(board_id);
|
|
563
|
-
return
|
|
571
|
+
return _this59.authStream(callback, 'GET', "/boards/".concat(board_id), {
|
|
564
572
|
fields
|
|
565
573
|
}, null, options);
|
|
566
574
|
})();
|
|
567
575
|
}
|
|
568
576
|
|
|
569
577
|
update_board(callback, board_id, body, fields, options) {
|
|
570
|
-
var
|
|
578
|
+
var _this60 = this;
|
|
571
579
|
|
|
572
580
|
return _asyncToGenerator(function* () {
|
|
573
581
|
board_id = encodeParam(board_id);
|
|
574
|
-
return
|
|
582
|
+
return _this60.authStream(callback, 'PATCH', "/boards/".concat(board_id), {
|
|
575
583
|
fields
|
|
576
584
|
}, body, options);
|
|
577
585
|
})();
|
|
578
586
|
}
|
|
579
587
|
|
|
580
588
|
delete_board(callback, board_id, options) {
|
|
581
|
-
var
|
|
589
|
+
var _this61 = this;
|
|
582
590
|
|
|
583
591
|
return _asyncToGenerator(function* () {
|
|
584
592
|
board_id = encodeParam(board_id);
|
|
585
|
-
return
|
|
593
|
+
return _this61.authStream(callback, 'DELETE', "/boards/".concat(board_id), null, null, options);
|
|
586
594
|
})();
|
|
587
595
|
}
|
|
588
596
|
|
|
589
597
|
all_board_items(callback, request, options) {
|
|
590
|
-
var
|
|
598
|
+
var _this62 = this;
|
|
591
599
|
|
|
592
600
|
return _asyncToGenerator(function* () {
|
|
593
|
-
return
|
|
601
|
+
return _this62.authStream(callback, 'GET', '/board_items', {
|
|
594
602
|
fields: request.fields,
|
|
595
603
|
sorts: request.sorts,
|
|
596
604
|
board_section_id: request.board_section_id
|
|
@@ -599,51 +607,51 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
599
607
|
}
|
|
600
608
|
|
|
601
609
|
create_board_item(callback, body, fields, options) {
|
|
602
|
-
var
|
|
610
|
+
var _this63 = this;
|
|
603
611
|
|
|
604
612
|
return _asyncToGenerator(function* () {
|
|
605
|
-
return
|
|
613
|
+
return _this63.authStream(callback, 'POST', '/board_items', {
|
|
606
614
|
fields
|
|
607
615
|
}, body, options);
|
|
608
616
|
})();
|
|
609
617
|
}
|
|
610
618
|
|
|
611
619
|
board_item(callback, board_item_id, fields, options) {
|
|
612
|
-
var
|
|
620
|
+
var _this64 = this;
|
|
613
621
|
|
|
614
622
|
return _asyncToGenerator(function* () {
|
|
615
623
|
board_item_id = encodeParam(board_item_id);
|
|
616
|
-
return
|
|
624
|
+
return _this64.authStream(callback, 'GET', "/board_items/".concat(board_item_id), {
|
|
617
625
|
fields
|
|
618
626
|
}, null, options);
|
|
619
627
|
})();
|
|
620
628
|
}
|
|
621
629
|
|
|
622
630
|
update_board_item(callback, board_item_id, body, fields, options) {
|
|
623
|
-
var
|
|
631
|
+
var _this65 = this;
|
|
624
632
|
|
|
625
633
|
return _asyncToGenerator(function* () {
|
|
626
634
|
board_item_id = encodeParam(board_item_id);
|
|
627
|
-
return
|
|
635
|
+
return _this65.authStream(callback, 'PATCH', "/board_items/".concat(board_item_id), {
|
|
628
636
|
fields
|
|
629
637
|
}, body, options);
|
|
630
638
|
})();
|
|
631
639
|
}
|
|
632
640
|
|
|
633
641
|
delete_board_item(callback, board_item_id, options) {
|
|
634
|
-
var
|
|
642
|
+
var _this66 = this;
|
|
635
643
|
|
|
636
644
|
return _asyncToGenerator(function* () {
|
|
637
645
|
board_item_id = encodeParam(board_item_id);
|
|
638
|
-
return
|
|
646
|
+
return _this66.authStream(callback, 'DELETE', "/board_items/".concat(board_item_id), null, null, options);
|
|
639
647
|
})();
|
|
640
648
|
}
|
|
641
649
|
|
|
642
650
|
all_board_sections(callback, request, options) {
|
|
643
|
-
var
|
|
651
|
+
var _this67 = this;
|
|
644
652
|
|
|
645
653
|
return _asyncToGenerator(function* () {
|
|
646
|
-
return
|
|
654
|
+
return _this67.authStream(callback, 'GET', '/board_sections', {
|
|
647
655
|
fields: request.fields,
|
|
648
656
|
sorts: request.sorts
|
|
649
657
|
}, null, options);
|
|
@@ -651,456 +659,456 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
651
659
|
}
|
|
652
660
|
|
|
653
661
|
create_board_section(callback, body, fields, options) {
|
|
654
|
-
var
|
|
662
|
+
var _this68 = this;
|
|
655
663
|
|
|
656
664
|
return _asyncToGenerator(function* () {
|
|
657
|
-
return
|
|
665
|
+
return _this68.authStream(callback, 'POST', '/board_sections', {
|
|
658
666
|
fields
|
|
659
667
|
}, body, options);
|
|
660
668
|
})();
|
|
661
669
|
}
|
|
662
670
|
|
|
663
671
|
board_section(callback, board_section_id, fields, options) {
|
|
664
|
-
var
|
|
672
|
+
var _this69 = this;
|
|
665
673
|
|
|
666
674
|
return _asyncToGenerator(function* () {
|
|
667
675
|
board_section_id = encodeParam(board_section_id);
|
|
668
|
-
return
|
|
676
|
+
return _this69.authStream(callback, 'GET', "/board_sections/".concat(board_section_id), {
|
|
669
677
|
fields
|
|
670
678
|
}, null, options);
|
|
671
679
|
})();
|
|
672
680
|
}
|
|
673
681
|
|
|
674
682
|
update_board_section(callback, board_section_id, body, fields, options) {
|
|
675
|
-
var
|
|
683
|
+
var _this70 = this;
|
|
676
684
|
|
|
677
685
|
return _asyncToGenerator(function* () {
|
|
678
686
|
board_section_id = encodeParam(board_section_id);
|
|
679
|
-
return
|
|
687
|
+
return _this70.authStream(callback, 'PATCH', "/board_sections/".concat(board_section_id), {
|
|
680
688
|
fields
|
|
681
689
|
}, body, options);
|
|
682
690
|
})();
|
|
683
691
|
}
|
|
684
692
|
|
|
685
693
|
delete_board_section(callback, board_section_id, options) {
|
|
686
|
-
var
|
|
694
|
+
var _this71 = this;
|
|
687
695
|
|
|
688
696
|
return _asyncToGenerator(function* () {
|
|
689
697
|
board_section_id = encodeParam(board_section_id);
|
|
690
|
-
return
|
|
698
|
+
return _this71.authStream(callback, 'DELETE', "/board_sections/".concat(board_section_id), null, null, options);
|
|
691
699
|
})();
|
|
692
700
|
}
|
|
693
701
|
|
|
694
702
|
all_color_collections(callback, fields, options) {
|
|
695
|
-
var
|
|
703
|
+
var _this72 = this;
|
|
696
704
|
|
|
697
705
|
return _asyncToGenerator(function* () {
|
|
698
|
-
return
|
|
706
|
+
return _this72.authStream(callback, 'GET', '/color_collections', {
|
|
699
707
|
fields
|
|
700
708
|
}, null, options);
|
|
701
709
|
})();
|
|
702
710
|
}
|
|
703
711
|
|
|
704
712
|
create_color_collection(callback, body, options) {
|
|
705
|
-
var
|
|
713
|
+
var _this73 = this;
|
|
706
714
|
|
|
707
715
|
return _asyncToGenerator(function* () {
|
|
708
|
-
return
|
|
716
|
+
return _this73.authStream(callback, 'POST', '/color_collections', null, body, options);
|
|
709
717
|
})();
|
|
710
718
|
}
|
|
711
719
|
|
|
712
720
|
color_collections_custom(callback, fields, options) {
|
|
713
|
-
var
|
|
721
|
+
var _this74 = this;
|
|
714
722
|
|
|
715
723
|
return _asyncToGenerator(function* () {
|
|
716
|
-
return
|
|
724
|
+
return _this74.authStream(callback, 'GET', '/color_collections/custom', {
|
|
717
725
|
fields
|
|
718
726
|
}, null, options);
|
|
719
727
|
})();
|
|
720
728
|
}
|
|
721
729
|
|
|
722
730
|
color_collections_standard(callback, fields, options) {
|
|
723
|
-
var
|
|
731
|
+
var _this75 = this;
|
|
724
732
|
|
|
725
733
|
return _asyncToGenerator(function* () {
|
|
726
|
-
return
|
|
734
|
+
return _this75.authStream(callback, 'GET', '/color_collections/standard', {
|
|
727
735
|
fields
|
|
728
736
|
}, null, options);
|
|
729
737
|
})();
|
|
730
738
|
}
|
|
731
739
|
|
|
732
740
|
default_color_collection(callback, options) {
|
|
733
|
-
var
|
|
741
|
+
var _this76 = this;
|
|
734
742
|
|
|
735
743
|
return _asyncToGenerator(function* () {
|
|
736
|
-
return
|
|
744
|
+
return _this76.authStream(callback, 'GET', '/color_collections/default', null, null, options);
|
|
737
745
|
})();
|
|
738
746
|
}
|
|
739
747
|
|
|
740
748
|
set_default_color_collection(callback, collection_id, options) {
|
|
741
|
-
var
|
|
749
|
+
var _this77 = this;
|
|
742
750
|
|
|
743
751
|
return _asyncToGenerator(function* () {
|
|
744
|
-
return
|
|
752
|
+
return _this77.authStream(callback, 'PUT', '/color_collections/default', {
|
|
745
753
|
collection_id
|
|
746
754
|
}, null, options);
|
|
747
755
|
})();
|
|
748
756
|
}
|
|
749
757
|
|
|
750
758
|
color_collection(callback, collection_id, fields, options) {
|
|
751
|
-
var
|
|
759
|
+
var _this78 = this;
|
|
752
760
|
|
|
753
761
|
return _asyncToGenerator(function* () {
|
|
754
762
|
collection_id = encodeParam(collection_id);
|
|
755
|
-
return
|
|
763
|
+
return _this78.authStream(callback, 'GET', "/color_collections/".concat(collection_id), {
|
|
756
764
|
fields
|
|
757
765
|
}, null, options);
|
|
758
766
|
})();
|
|
759
767
|
}
|
|
760
768
|
|
|
761
769
|
update_color_collection(callback, collection_id, body, options) {
|
|
762
|
-
var
|
|
770
|
+
var _this79 = this;
|
|
763
771
|
|
|
764
772
|
return _asyncToGenerator(function* () {
|
|
765
773
|
collection_id = encodeParam(collection_id);
|
|
766
|
-
return
|
|
774
|
+
return _this79.authStream(callback, 'PATCH', "/color_collections/".concat(collection_id), null, body, options);
|
|
767
775
|
})();
|
|
768
776
|
}
|
|
769
777
|
|
|
770
778
|
delete_color_collection(callback, collection_id, options) {
|
|
771
|
-
var
|
|
779
|
+
var _this80 = this;
|
|
772
780
|
|
|
773
781
|
return _asyncToGenerator(function* () {
|
|
774
782
|
collection_id = encodeParam(collection_id);
|
|
775
|
-
return
|
|
783
|
+
return _this80.authStream(callback, 'DELETE', "/color_collections/".concat(collection_id), null, null, options);
|
|
776
784
|
})();
|
|
777
785
|
}
|
|
778
786
|
|
|
779
787
|
cloud_storage_configuration(callback, options) {
|
|
780
|
-
var
|
|
788
|
+
var _this81 = this;
|
|
781
789
|
|
|
782
790
|
return _asyncToGenerator(function* () {
|
|
783
|
-
return
|
|
791
|
+
return _this81.authStream(callback, 'GET', '/cloud_storage', null, null, options);
|
|
784
792
|
})();
|
|
785
793
|
}
|
|
786
794
|
|
|
787
795
|
update_cloud_storage_configuration(callback, body, options) {
|
|
788
|
-
var
|
|
796
|
+
var _this82 = this;
|
|
789
797
|
|
|
790
798
|
return _asyncToGenerator(function* () {
|
|
791
|
-
return
|
|
799
|
+
return _this82.authStream(callback, 'PATCH', '/cloud_storage', null, body, options);
|
|
792
800
|
})();
|
|
793
801
|
}
|
|
794
802
|
|
|
795
803
|
custom_welcome_email(callback, options) {
|
|
796
|
-
var
|
|
804
|
+
var _this83 = this;
|
|
797
805
|
|
|
798
806
|
return _asyncToGenerator(function* () {
|
|
799
|
-
return
|
|
807
|
+
return _this83.authStream(callback, 'GET', '/custom_welcome_email', null, null, options);
|
|
800
808
|
})();
|
|
801
809
|
}
|
|
802
810
|
|
|
803
811
|
update_custom_welcome_email(callback, body, send_test_welcome_email, options) {
|
|
804
|
-
var
|
|
812
|
+
var _this84 = this;
|
|
805
813
|
|
|
806
814
|
return _asyncToGenerator(function* () {
|
|
807
|
-
return
|
|
815
|
+
return _this84.authStream(callback, 'PATCH', '/custom_welcome_email', {
|
|
808
816
|
send_test_welcome_email
|
|
809
817
|
}, body, options);
|
|
810
818
|
})();
|
|
811
819
|
}
|
|
812
820
|
|
|
813
821
|
update_custom_welcome_email_test(callback, body, options) {
|
|
814
|
-
var
|
|
822
|
+
var _this85 = this;
|
|
815
823
|
|
|
816
824
|
return _asyncToGenerator(function* () {
|
|
817
|
-
return
|
|
825
|
+
return _this85.authStream(callback, 'PUT', '/custom_welcome_email_test', null, body, options);
|
|
818
826
|
})();
|
|
819
827
|
}
|
|
820
828
|
|
|
821
829
|
digest_emails_enabled(callback, options) {
|
|
822
|
-
var
|
|
830
|
+
var _this86 = this;
|
|
823
831
|
|
|
824
832
|
return _asyncToGenerator(function* () {
|
|
825
|
-
return
|
|
833
|
+
return _this86.authStream(callback, 'GET', '/digest_emails_enabled', null, null, options);
|
|
826
834
|
})();
|
|
827
835
|
}
|
|
828
836
|
|
|
829
837
|
update_digest_emails_enabled(callback, body, options) {
|
|
830
|
-
var
|
|
838
|
+
var _this87 = this;
|
|
831
839
|
|
|
832
840
|
return _asyncToGenerator(function* () {
|
|
833
|
-
return
|
|
841
|
+
return _this87.authStream(callback, 'PATCH', '/digest_emails_enabled', null, body, options);
|
|
834
842
|
})();
|
|
835
843
|
}
|
|
836
844
|
|
|
837
845
|
create_digest_email_send(callback, options) {
|
|
838
|
-
var
|
|
846
|
+
var _this88 = this;
|
|
839
847
|
|
|
840
848
|
return _asyncToGenerator(function* () {
|
|
841
|
-
return
|
|
849
|
+
return _this88.authStream(callback, 'POST', '/digest_email_send', null, null, options);
|
|
842
850
|
})();
|
|
843
851
|
}
|
|
844
852
|
|
|
845
853
|
public_egress_ip_addresses(callback, options) {
|
|
846
|
-
var
|
|
854
|
+
var _this89 = this;
|
|
847
855
|
|
|
848
856
|
return _asyncToGenerator(function* () {
|
|
849
|
-
return
|
|
857
|
+
return _this89.authStream(callback, 'GET', '/public_egress_ip_addresses', null, null, options);
|
|
850
858
|
})();
|
|
851
859
|
}
|
|
852
860
|
|
|
853
861
|
internal_help_resources_content(callback, options) {
|
|
854
|
-
var
|
|
862
|
+
var _this90 = this;
|
|
855
863
|
|
|
856
864
|
return _asyncToGenerator(function* () {
|
|
857
|
-
return
|
|
865
|
+
return _this90.authStream(callback, 'GET', '/internal_help_resources_content', null, null, options);
|
|
858
866
|
})();
|
|
859
867
|
}
|
|
860
868
|
|
|
861
869
|
update_internal_help_resources_content(callback, body, options) {
|
|
862
|
-
var
|
|
870
|
+
var _this91 = this;
|
|
863
871
|
|
|
864
872
|
return _asyncToGenerator(function* () {
|
|
865
|
-
return
|
|
873
|
+
return _this91.authStream(callback, 'PATCH', '/internal_help_resources_content', null, body, options);
|
|
866
874
|
})();
|
|
867
875
|
}
|
|
868
876
|
|
|
869
877
|
internal_help_resources(callback, options) {
|
|
870
|
-
var
|
|
878
|
+
var _this92 = this;
|
|
871
879
|
|
|
872
880
|
return _asyncToGenerator(function* () {
|
|
873
|
-
return
|
|
881
|
+
return _this92.authStream(callback, 'GET', '/internal_help_resources_enabled', null, null, options);
|
|
874
882
|
})();
|
|
875
883
|
}
|
|
876
884
|
|
|
877
885
|
update_internal_help_resources(callback, body, options) {
|
|
878
|
-
var
|
|
886
|
+
var _this93 = this;
|
|
879
887
|
|
|
880
888
|
return _asyncToGenerator(function* () {
|
|
881
|
-
return
|
|
889
|
+
return _this93.authStream(callback, 'PATCH', '/internal_help_resources', null, body, options);
|
|
882
890
|
})();
|
|
883
891
|
}
|
|
884
892
|
|
|
885
893
|
all_legacy_features(callback, options) {
|
|
886
|
-
var
|
|
894
|
+
var _this94 = this;
|
|
887
895
|
|
|
888
896
|
return _asyncToGenerator(function* () {
|
|
889
|
-
return
|
|
897
|
+
return _this94.authStream(callback, 'GET', '/legacy_features', null, null, options);
|
|
890
898
|
})();
|
|
891
899
|
}
|
|
892
900
|
|
|
893
901
|
legacy_feature(callback, legacy_feature_id, options) {
|
|
894
|
-
var
|
|
902
|
+
var _this95 = this;
|
|
895
903
|
|
|
896
904
|
return _asyncToGenerator(function* () {
|
|
897
905
|
legacy_feature_id = encodeParam(legacy_feature_id);
|
|
898
|
-
return
|
|
906
|
+
return _this95.authStream(callback, 'GET', "/legacy_features/".concat(legacy_feature_id), null, null, options);
|
|
899
907
|
})();
|
|
900
908
|
}
|
|
901
909
|
|
|
902
910
|
update_legacy_feature(callback, legacy_feature_id, body, options) {
|
|
903
|
-
var
|
|
911
|
+
var _this96 = this;
|
|
904
912
|
|
|
905
913
|
return _asyncToGenerator(function* () {
|
|
906
914
|
legacy_feature_id = encodeParam(legacy_feature_id);
|
|
907
|
-
return
|
|
915
|
+
return _this96.authStream(callback, 'PATCH', "/legacy_features/".concat(legacy_feature_id), null, body, options);
|
|
908
916
|
})();
|
|
909
917
|
}
|
|
910
918
|
|
|
911
919
|
all_locales(callback, options) {
|
|
912
|
-
var
|
|
920
|
+
var _this97 = this;
|
|
913
921
|
|
|
914
922
|
return _asyncToGenerator(function* () {
|
|
915
|
-
return
|
|
923
|
+
return _this97.authStream(callback, 'GET', '/locales', null, null, options);
|
|
916
924
|
})();
|
|
917
925
|
}
|
|
918
926
|
|
|
919
927
|
mobile_settings(callback, options) {
|
|
920
|
-
var
|
|
928
|
+
var _this98 = this;
|
|
921
929
|
|
|
922
930
|
return _asyncToGenerator(function* () {
|
|
923
|
-
return
|
|
931
|
+
return _this98.authStream(callback, 'GET', '/mobile/settings', null, null, options);
|
|
924
932
|
})();
|
|
925
933
|
}
|
|
926
934
|
|
|
927
935
|
get_setting(callback, fields, options) {
|
|
928
|
-
var
|
|
936
|
+
var _this99 = this;
|
|
929
937
|
|
|
930
938
|
return _asyncToGenerator(function* () {
|
|
931
|
-
return
|
|
939
|
+
return _this99.authStream(callback, 'GET', '/setting', {
|
|
932
940
|
fields
|
|
933
941
|
}, null, options);
|
|
934
942
|
})();
|
|
935
943
|
}
|
|
936
944
|
|
|
937
945
|
set_setting(callback, body, fields, options) {
|
|
938
|
-
var
|
|
946
|
+
var _this100 = this;
|
|
939
947
|
|
|
940
948
|
return _asyncToGenerator(function* () {
|
|
941
|
-
return
|
|
949
|
+
return _this100.authStream(callback, 'PATCH', '/setting', {
|
|
942
950
|
fields
|
|
943
951
|
}, body, options);
|
|
944
952
|
})();
|
|
945
953
|
}
|
|
946
954
|
|
|
947
955
|
set_smtp_settings(callback, body, options) {
|
|
948
|
-
var
|
|
956
|
+
var _this101 = this;
|
|
949
957
|
|
|
950
958
|
return _asyncToGenerator(function* () {
|
|
951
|
-
return
|
|
959
|
+
return _this101.authStream(callback, 'POST', '/smtp_settings', null, body, options);
|
|
952
960
|
})();
|
|
953
961
|
}
|
|
954
962
|
|
|
955
963
|
smtp_status(callback, fields, options) {
|
|
956
|
-
var
|
|
964
|
+
var _this102 = this;
|
|
957
965
|
|
|
958
966
|
return _asyncToGenerator(function* () {
|
|
959
|
-
return
|
|
967
|
+
return _this102.authStream(callback, 'GET', '/smtp_status', {
|
|
960
968
|
fields
|
|
961
969
|
}, null, options);
|
|
962
970
|
})();
|
|
963
971
|
}
|
|
964
972
|
|
|
965
973
|
all_timezones(callback, options) {
|
|
966
|
-
var
|
|
974
|
+
var _this103 = this;
|
|
967
975
|
|
|
968
976
|
return _asyncToGenerator(function* () {
|
|
969
|
-
return
|
|
977
|
+
return _this103.authStream(callback, 'GET', '/timezones', null, null, options);
|
|
970
978
|
})();
|
|
971
979
|
}
|
|
972
980
|
|
|
973
981
|
versions(callback, fields, options) {
|
|
974
|
-
var
|
|
982
|
+
var _this104 = this;
|
|
975
983
|
|
|
976
984
|
return _asyncToGenerator(function* () {
|
|
977
|
-
return
|
|
985
|
+
return _this104.authStream(callback, 'GET', '/versions', {
|
|
978
986
|
fields
|
|
979
987
|
}, null, options);
|
|
980
988
|
})();
|
|
981
989
|
}
|
|
982
990
|
|
|
983
991
|
api_spec(callback, api_version, specification, options) {
|
|
984
|
-
var
|
|
992
|
+
var _this105 = this;
|
|
985
993
|
|
|
986
994
|
return _asyncToGenerator(function* () {
|
|
987
995
|
api_version = encodeParam(api_version);
|
|
988
996
|
specification = encodeParam(specification);
|
|
989
|
-
return
|
|
997
|
+
return _this105.authStream(callback, 'GET', "/api_spec/".concat(api_version, "/").concat(specification), null, null, options);
|
|
990
998
|
})();
|
|
991
999
|
}
|
|
992
1000
|
|
|
993
1001
|
whitelabel_configuration(callback, fields, options) {
|
|
994
|
-
var
|
|
1002
|
+
var _this106 = this;
|
|
995
1003
|
|
|
996
1004
|
return _asyncToGenerator(function* () {
|
|
997
|
-
return
|
|
1005
|
+
return _this106.authStream(callback, 'GET', '/whitelabel_configuration', {
|
|
998
1006
|
fields
|
|
999
1007
|
}, null, options);
|
|
1000
1008
|
})();
|
|
1001
1009
|
}
|
|
1002
1010
|
|
|
1003
1011
|
update_whitelabel_configuration(callback, body, options) {
|
|
1004
|
-
var
|
|
1012
|
+
var _this107 = this;
|
|
1005
1013
|
|
|
1006
1014
|
return _asyncToGenerator(function* () {
|
|
1007
|
-
return
|
|
1015
|
+
return _this107.authStream(callback, 'PUT', '/whitelabel_configuration', null, body, options);
|
|
1008
1016
|
})();
|
|
1009
1017
|
}
|
|
1010
1018
|
|
|
1011
1019
|
all_connections(callback, fields, options) {
|
|
1012
|
-
var
|
|
1020
|
+
var _this108 = this;
|
|
1013
1021
|
|
|
1014
1022
|
return _asyncToGenerator(function* () {
|
|
1015
|
-
return
|
|
1023
|
+
return _this108.authStream(callback, 'GET', '/connections', {
|
|
1016
1024
|
fields
|
|
1017
1025
|
}, null, options);
|
|
1018
1026
|
})();
|
|
1019
1027
|
}
|
|
1020
1028
|
|
|
1021
1029
|
create_connection(callback, body, options) {
|
|
1022
|
-
var
|
|
1030
|
+
var _this109 = this;
|
|
1023
1031
|
|
|
1024
1032
|
return _asyncToGenerator(function* () {
|
|
1025
|
-
return
|
|
1033
|
+
return _this109.authStream(callback, 'POST', '/connections', null, body, options);
|
|
1026
1034
|
})();
|
|
1027
1035
|
}
|
|
1028
1036
|
|
|
1029
1037
|
connection(callback, connection_name, fields, options) {
|
|
1030
|
-
var
|
|
1038
|
+
var _this110 = this;
|
|
1031
1039
|
|
|
1032
1040
|
return _asyncToGenerator(function* () {
|
|
1033
1041
|
connection_name = encodeParam(connection_name);
|
|
1034
|
-
return
|
|
1042
|
+
return _this110.authStream(callback, 'GET', "/connections/".concat(connection_name), {
|
|
1035
1043
|
fields
|
|
1036
1044
|
}, null, options);
|
|
1037
1045
|
})();
|
|
1038
1046
|
}
|
|
1039
1047
|
|
|
1040
1048
|
update_connection(callback, connection_name, body, options) {
|
|
1041
|
-
var
|
|
1049
|
+
var _this111 = this;
|
|
1042
1050
|
|
|
1043
1051
|
return _asyncToGenerator(function* () {
|
|
1044
1052
|
connection_name = encodeParam(connection_name);
|
|
1045
|
-
return
|
|
1053
|
+
return _this111.authStream(callback, 'PATCH', "/connections/".concat(connection_name), null, body, options);
|
|
1046
1054
|
})();
|
|
1047
1055
|
}
|
|
1048
1056
|
|
|
1049
1057
|
delete_connection(callback, connection_name, options) {
|
|
1050
|
-
var
|
|
1058
|
+
var _this112 = this;
|
|
1051
1059
|
|
|
1052
1060
|
return _asyncToGenerator(function* () {
|
|
1053
1061
|
connection_name = encodeParam(connection_name);
|
|
1054
|
-
return
|
|
1062
|
+
return _this112.authStream(callback, 'DELETE', "/connections/".concat(connection_name), null, null, options);
|
|
1055
1063
|
})();
|
|
1056
1064
|
}
|
|
1057
1065
|
|
|
1058
1066
|
delete_connection_override(callback, connection_name, override_context, options) {
|
|
1059
|
-
var
|
|
1067
|
+
var _this113 = this;
|
|
1060
1068
|
|
|
1061
1069
|
return _asyncToGenerator(function* () {
|
|
1062
1070
|
connection_name = encodeParam(connection_name);
|
|
1063
1071
|
override_context = encodeParam(override_context);
|
|
1064
|
-
return
|
|
1072
|
+
return _this113.authStream(callback, 'DELETE', "/connections/".concat(connection_name, "/connection_override/").concat(override_context), null, null, options);
|
|
1065
1073
|
})();
|
|
1066
1074
|
}
|
|
1067
1075
|
|
|
1068
1076
|
test_connection(callback, connection_name, tests, options) {
|
|
1069
|
-
var
|
|
1077
|
+
var _this114 = this;
|
|
1070
1078
|
|
|
1071
1079
|
return _asyncToGenerator(function* () {
|
|
1072
1080
|
connection_name = encodeParam(connection_name);
|
|
1073
|
-
return
|
|
1081
|
+
return _this114.authStream(callback, 'PUT', "/connections/".concat(connection_name, "/test"), {
|
|
1074
1082
|
tests
|
|
1075
1083
|
}, null, options);
|
|
1076
1084
|
})();
|
|
1077
1085
|
}
|
|
1078
1086
|
|
|
1079
1087
|
test_connection_config(callback, body, tests, options) {
|
|
1080
|
-
var
|
|
1088
|
+
var _this115 = this;
|
|
1081
1089
|
|
|
1082
1090
|
return _asyncToGenerator(function* () {
|
|
1083
|
-
return
|
|
1091
|
+
return _this115.authStream(callback, 'PUT', '/connections/test', {
|
|
1084
1092
|
tests
|
|
1085
1093
|
}, body, options);
|
|
1086
1094
|
})();
|
|
1087
1095
|
}
|
|
1088
1096
|
|
|
1089
1097
|
all_dialect_infos(callback, fields, options) {
|
|
1090
|
-
var
|
|
1098
|
+
var _this116 = this;
|
|
1091
1099
|
|
|
1092
1100
|
return _asyncToGenerator(function* () {
|
|
1093
|
-
return
|
|
1101
|
+
return _this116.authStream(callback, 'GET', '/dialect_info', {
|
|
1094
1102
|
fields
|
|
1095
1103
|
}, null, options);
|
|
1096
1104
|
})();
|
|
1097
1105
|
}
|
|
1098
1106
|
|
|
1099
1107
|
all_external_oauth_applications(callback, request, options) {
|
|
1100
|
-
var
|
|
1108
|
+
var _this117 = this;
|
|
1101
1109
|
|
|
1102
1110
|
return _asyncToGenerator(function* () {
|
|
1103
|
-
return
|
|
1111
|
+
return _this117.authStream(callback, 'GET', '/external_oauth_applications', {
|
|
1104
1112
|
name: request.name,
|
|
1105
1113
|
client_id: request.client_id
|
|
1106
1114
|
}, null, options);
|
|
@@ -1108,142 +1116,142 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1108
1116
|
}
|
|
1109
1117
|
|
|
1110
1118
|
create_external_oauth_application(callback, body, options) {
|
|
1111
|
-
var
|
|
1119
|
+
var _this118 = this;
|
|
1112
1120
|
|
|
1113
1121
|
return _asyncToGenerator(function* () {
|
|
1114
|
-
return
|
|
1122
|
+
return _this118.authStream(callback, 'POST', '/external_oauth_applications', null, body, options);
|
|
1115
1123
|
})();
|
|
1116
1124
|
}
|
|
1117
1125
|
|
|
1118
1126
|
create_oauth_application_user_state(callback, body, options) {
|
|
1119
|
-
var
|
|
1127
|
+
var _this119 = this;
|
|
1120
1128
|
|
|
1121
1129
|
return _asyncToGenerator(function* () {
|
|
1122
|
-
return
|
|
1130
|
+
return _this119.authStream(callback, 'POST', '/external_oauth_applications/user_state', null, body, options);
|
|
1123
1131
|
})();
|
|
1124
1132
|
}
|
|
1125
1133
|
|
|
1126
1134
|
all_ssh_servers(callback, fields, options) {
|
|
1127
|
-
var
|
|
1135
|
+
var _this120 = this;
|
|
1128
1136
|
|
|
1129
1137
|
return _asyncToGenerator(function* () {
|
|
1130
|
-
return
|
|
1138
|
+
return _this120.authStream(callback, 'GET', '/ssh_servers', {
|
|
1131
1139
|
fields
|
|
1132
1140
|
}, null, options);
|
|
1133
1141
|
})();
|
|
1134
1142
|
}
|
|
1135
1143
|
|
|
1136
1144
|
create_ssh_server(callback, body, options) {
|
|
1137
|
-
var
|
|
1145
|
+
var _this121 = this;
|
|
1138
1146
|
|
|
1139
1147
|
return _asyncToGenerator(function* () {
|
|
1140
|
-
return
|
|
1148
|
+
return _this121.authStream(callback, 'POST', '/ssh_servers', null, body, options);
|
|
1141
1149
|
})();
|
|
1142
1150
|
}
|
|
1143
1151
|
|
|
1144
1152
|
ssh_server(callback, ssh_server_id, options) {
|
|
1145
|
-
var
|
|
1153
|
+
var _this122 = this;
|
|
1146
1154
|
|
|
1147
1155
|
return _asyncToGenerator(function* () {
|
|
1148
1156
|
ssh_server_id = encodeParam(ssh_server_id);
|
|
1149
|
-
return
|
|
1157
|
+
return _this122.authStream(callback, 'GET', "/ssh_server/".concat(ssh_server_id), null, null, options);
|
|
1150
1158
|
})();
|
|
1151
1159
|
}
|
|
1152
1160
|
|
|
1153
1161
|
update_ssh_server(callback, ssh_server_id, body, options) {
|
|
1154
|
-
var
|
|
1162
|
+
var _this123 = this;
|
|
1155
1163
|
|
|
1156
1164
|
return _asyncToGenerator(function* () {
|
|
1157
1165
|
ssh_server_id = encodeParam(ssh_server_id);
|
|
1158
|
-
return
|
|
1166
|
+
return _this123.authStream(callback, 'PATCH', "/ssh_server/".concat(ssh_server_id), null, body, options);
|
|
1159
1167
|
})();
|
|
1160
1168
|
}
|
|
1161
1169
|
|
|
1162
1170
|
delete_ssh_server(callback, ssh_server_id, options) {
|
|
1163
|
-
var
|
|
1171
|
+
var _this124 = this;
|
|
1164
1172
|
|
|
1165
1173
|
return _asyncToGenerator(function* () {
|
|
1166
1174
|
ssh_server_id = encodeParam(ssh_server_id);
|
|
1167
|
-
return
|
|
1175
|
+
return _this124.authStream(callback, 'DELETE', "/ssh_server/".concat(ssh_server_id), null, null, options);
|
|
1168
1176
|
})();
|
|
1169
1177
|
}
|
|
1170
1178
|
|
|
1171
1179
|
test_ssh_server(callback, ssh_server_id, options) {
|
|
1172
|
-
var
|
|
1180
|
+
var _this125 = this;
|
|
1173
1181
|
|
|
1174
1182
|
return _asyncToGenerator(function* () {
|
|
1175
1183
|
ssh_server_id = encodeParam(ssh_server_id);
|
|
1176
|
-
return
|
|
1184
|
+
return _this125.authStream(callback, 'GET', "/ssh_server/".concat(ssh_server_id, "/test"), null, null, options);
|
|
1177
1185
|
})();
|
|
1178
1186
|
}
|
|
1179
1187
|
|
|
1180
1188
|
all_ssh_tunnels(callback, fields, options) {
|
|
1181
|
-
var
|
|
1189
|
+
var _this126 = this;
|
|
1182
1190
|
|
|
1183
1191
|
return _asyncToGenerator(function* () {
|
|
1184
|
-
return
|
|
1192
|
+
return _this126.authStream(callback, 'GET', '/ssh_tunnels', {
|
|
1185
1193
|
fields
|
|
1186
1194
|
}, null, options);
|
|
1187
1195
|
})();
|
|
1188
1196
|
}
|
|
1189
1197
|
|
|
1190
1198
|
create_ssh_tunnel(callback, body, options) {
|
|
1191
|
-
var
|
|
1199
|
+
var _this127 = this;
|
|
1192
1200
|
|
|
1193
1201
|
return _asyncToGenerator(function* () {
|
|
1194
|
-
return
|
|
1202
|
+
return _this127.authStream(callback, 'POST', '/ssh_tunnels', null, body, options);
|
|
1195
1203
|
})();
|
|
1196
1204
|
}
|
|
1197
1205
|
|
|
1198
1206
|
ssh_tunnel(callback, ssh_tunnel_id, options) {
|
|
1199
|
-
var
|
|
1207
|
+
var _this128 = this;
|
|
1200
1208
|
|
|
1201
1209
|
return _asyncToGenerator(function* () {
|
|
1202
1210
|
ssh_tunnel_id = encodeParam(ssh_tunnel_id);
|
|
1203
|
-
return
|
|
1211
|
+
return _this128.authStream(callback, 'GET', "/ssh_tunnel/".concat(ssh_tunnel_id), null, null, options);
|
|
1204
1212
|
})();
|
|
1205
1213
|
}
|
|
1206
1214
|
|
|
1207
1215
|
update_ssh_tunnel(callback, ssh_tunnel_id, body, options) {
|
|
1208
|
-
var
|
|
1216
|
+
var _this129 = this;
|
|
1209
1217
|
|
|
1210
1218
|
return _asyncToGenerator(function* () {
|
|
1211
1219
|
ssh_tunnel_id = encodeParam(ssh_tunnel_id);
|
|
1212
|
-
return
|
|
1220
|
+
return _this129.authStream(callback, 'PATCH', "/ssh_tunnel/".concat(ssh_tunnel_id), null, body, options);
|
|
1213
1221
|
})();
|
|
1214
1222
|
}
|
|
1215
1223
|
|
|
1216
1224
|
delete_ssh_tunnel(callback, ssh_tunnel_id, options) {
|
|
1217
|
-
var
|
|
1225
|
+
var _this130 = this;
|
|
1218
1226
|
|
|
1219
1227
|
return _asyncToGenerator(function* () {
|
|
1220
1228
|
ssh_tunnel_id = encodeParam(ssh_tunnel_id);
|
|
1221
|
-
return
|
|
1229
|
+
return _this130.authStream(callback, 'DELETE', "/ssh_tunnel/".concat(ssh_tunnel_id), null, null, options);
|
|
1222
1230
|
})();
|
|
1223
1231
|
}
|
|
1224
1232
|
|
|
1225
1233
|
test_ssh_tunnel(callback, ssh_tunnel_id, options) {
|
|
1226
|
-
var
|
|
1234
|
+
var _this131 = this;
|
|
1227
1235
|
|
|
1228
1236
|
return _asyncToGenerator(function* () {
|
|
1229
1237
|
ssh_tunnel_id = encodeParam(ssh_tunnel_id);
|
|
1230
|
-
return
|
|
1238
|
+
return _this131.authStream(callback, 'GET', "/ssh_tunnel/".concat(ssh_tunnel_id, "/test"), null, null, options);
|
|
1231
1239
|
})();
|
|
1232
1240
|
}
|
|
1233
1241
|
|
|
1234
1242
|
ssh_public_key(callback, options) {
|
|
1235
|
-
var
|
|
1243
|
+
var _this132 = this;
|
|
1236
1244
|
|
|
1237
1245
|
return _asyncToGenerator(function* () {
|
|
1238
|
-
return
|
|
1246
|
+
return _this132.authStream(callback, 'GET', '/ssh_public_key', null, null, options);
|
|
1239
1247
|
})();
|
|
1240
1248
|
}
|
|
1241
1249
|
|
|
1242
1250
|
search_content_favorites(callback, request, options) {
|
|
1243
|
-
var
|
|
1251
|
+
var _this133 = this;
|
|
1244
1252
|
|
|
1245
1253
|
return _asyncToGenerator(function* () {
|
|
1246
|
-
return
|
|
1254
|
+
return _this133.authStream(callback, 'GET', '/content_favorite/search', {
|
|
1247
1255
|
id: request.id,
|
|
1248
1256
|
user_id: request.user_id,
|
|
1249
1257
|
content_metadata_id: request.content_metadata_id,
|
|
@@ -1260,38 +1268,38 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1260
1268
|
}
|
|
1261
1269
|
|
|
1262
1270
|
content_favorite(callback, content_favorite_id, fields, options) {
|
|
1263
|
-
var
|
|
1271
|
+
var _this134 = this;
|
|
1264
1272
|
|
|
1265
1273
|
return _asyncToGenerator(function* () {
|
|
1266
1274
|
content_favorite_id = encodeParam(content_favorite_id);
|
|
1267
|
-
return
|
|
1275
|
+
return _this134.authStream(callback, 'GET', "/content_favorite/".concat(content_favorite_id), {
|
|
1268
1276
|
fields
|
|
1269
1277
|
}, null, options);
|
|
1270
1278
|
})();
|
|
1271
1279
|
}
|
|
1272
1280
|
|
|
1273
1281
|
delete_content_favorite(callback, content_favorite_id, options) {
|
|
1274
|
-
var
|
|
1282
|
+
var _this135 = this;
|
|
1275
1283
|
|
|
1276
1284
|
return _asyncToGenerator(function* () {
|
|
1277
1285
|
content_favorite_id = encodeParam(content_favorite_id);
|
|
1278
|
-
return
|
|
1286
|
+
return _this135.authStream(callback, 'DELETE', "/content_favorite/".concat(content_favorite_id), null, null, options);
|
|
1279
1287
|
})();
|
|
1280
1288
|
}
|
|
1281
1289
|
|
|
1282
1290
|
create_content_favorite(callback, body, options) {
|
|
1283
|
-
var
|
|
1291
|
+
var _this136 = this;
|
|
1284
1292
|
|
|
1285
1293
|
return _asyncToGenerator(function* () {
|
|
1286
|
-
return
|
|
1294
|
+
return _this136.authStream(callback, 'POST', '/content_favorite', null, body, options);
|
|
1287
1295
|
})();
|
|
1288
1296
|
}
|
|
1289
1297
|
|
|
1290
1298
|
all_content_metadatas(callback, parent_id, fields, options) {
|
|
1291
|
-
var
|
|
1299
|
+
var _this137 = this;
|
|
1292
1300
|
|
|
1293
1301
|
return _asyncToGenerator(function* () {
|
|
1294
|
-
return
|
|
1302
|
+
return _this137.authStream(callback, 'GET', '/content_metadata', {
|
|
1295
1303
|
parent_id,
|
|
1296
1304
|
fields
|
|
1297
1305
|
}, null, options);
|
|
@@ -1299,30 +1307,30 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1299
1307
|
}
|
|
1300
1308
|
|
|
1301
1309
|
content_metadata(callback, content_metadata_id, fields, options) {
|
|
1302
|
-
var
|
|
1310
|
+
var _this138 = this;
|
|
1303
1311
|
|
|
1304
1312
|
return _asyncToGenerator(function* () {
|
|
1305
1313
|
content_metadata_id = encodeParam(content_metadata_id);
|
|
1306
|
-
return
|
|
1314
|
+
return _this138.authStream(callback, 'GET', "/content_metadata/".concat(content_metadata_id), {
|
|
1307
1315
|
fields
|
|
1308
1316
|
}, null, options);
|
|
1309
1317
|
})();
|
|
1310
1318
|
}
|
|
1311
1319
|
|
|
1312
1320
|
update_content_metadata(callback, content_metadata_id, body, options) {
|
|
1313
|
-
var
|
|
1321
|
+
var _this139 = this;
|
|
1314
1322
|
|
|
1315
1323
|
return _asyncToGenerator(function* () {
|
|
1316
1324
|
content_metadata_id = encodeParam(content_metadata_id);
|
|
1317
|
-
return
|
|
1325
|
+
return _this139.authStream(callback, 'PATCH', "/content_metadata/".concat(content_metadata_id), null, body, options);
|
|
1318
1326
|
})();
|
|
1319
1327
|
}
|
|
1320
1328
|
|
|
1321
1329
|
all_content_metadata_accesses(callback, content_metadata_id, fields, options) {
|
|
1322
|
-
var
|
|
1330
|
+
var _this140 = this;
|
|
1323
1331
|
|
|
1324
1332
|
return _asyncToGenerator(function* () {
|
|
1325
|
-
return
|
|
1333
|
+
return _this140.authStream(callback, 'GET', '/content_metadata_access', {
|
|
1326
1334
|
content_metadata_id,
|
|
1327
1335
|
fields
|
|
1328
1336
|
}, null, options);
|
|
@@ -1330,40 +1338,40 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1330
1338
|
}
|
|
1331
1339
|
|
|
1332
1340
|
create_content_metadata_access(callback, body, send_boards_notification_email, options) {
|
|
1333
|
-
var
|
|
1341
|
+
var _this141 = this;
|
|
1334
1342
|
|
|
1335
1343
|
return _asyncToGenerator(function* () {
|
|
1336
|
-
return
|
|
1344
|
+
return _this141.authStream(callback, 'POST', '/content_metadata_access', {
|
|
1337
1345
|
send_boards_notification_email
|
|
1338
1346
|
}, body, options);
|
|
1339
1347
|
})();
|
|
1340
1348
|
}
|
|
1341
1349
|
|
|
1342
1350
|
update_content_metadata_access(callback, content_metadata_access_id, body, options) {
|
|
1343
|
-
var
|
|
1351
|
+
var _this142 = this;
|
|
1344
1352
|
|
|
1345
1353
|
return _asyncToGenerator(function* () {
|
|
1346
1354
|
content_metadata_access_id = encodeParam(content_metadata_access_id);
|
|
1347
|
-
return
|
|
1355
|
+
return _this142.authStream(callback, 'PUT', "/content_metadata_access/".concat(content_metadata_access_id), null, body, options);
|
|
1348
1356
|
})();
|
|
1349
1357
|
}
|
|
1350
1358
|
|
|
1351
1359
|
delete_content_metadata_access(callback, content_metadata_access_id, options) {
|
|
1352
|
-
var
|
|
1360
|
+
var _this143 = this;
|
|
1353
1361
|
|
|
1354
1362
|
return _asyncToGenerator(function* () {
|
|
1355
1363
|
content_metadata_access_id = encodeParam(content_metadata_access_id);
|
|
1356
|
-
return
|
|
1364
|
+
return _this143.authStream(callback, 'DELETE', "/content_metadata_access/".concat(content_metadata_access_id), null, null, options);
|
|
1357
1365
|
})();
|
|
1358
1366
|
}
|
|
1359
1367
|
|
|
1360
1368
|
content_thumbnail(callback, request, options) {
|
|
1361
|
-
var
|
|
1369
|
+
var _this144 = this;
|
|
1362
1370
|
|
|
1363
1371
|
return _asyncToGenerator(function* () {
|
|
1364
1372
|
request.type = encodeParam(request.type);
|
|
1365
1373
|
request.resource_id = encodeParam(request.resource_id);
|
|
1366
|
-
return
|
|
1374
|
+
return _this144.authStream(callback, 'GET', "/content_thumbnail/".concat(request.type, "/").concat(request.resource_id), {
|
|
1367
1375
|
reload: request.reload,
|
|
1368
1376
|
format: request.format,
|
|
1369
1377
|
width: request.width,
|
|
@@ -1373,20 +1381,20 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1373
1381
|
}
|
|
1374
1382
|
|
|
1375
1383
|
content_validation(callback, fields, options) {
|
|
1376
|
-
var
|
|
1384
|
+
var _this145 = this;
|
|
1377
1385
|
|
|
1378
1386
|
return _asyncToGenerator(function* () {
|
|
1379
|
-
return
|
|
1387
|
+
return _this145.authStream(callback, 'GET', '/content_validation', {
|
|
1380
1388
|
fields
|
|
1381
1389
|
}, null, options);
|
|
1382
1390
|
})();
|
|
1383
1391
|
}
|
|
1384
1392
|
|
|
1385
1393
|
search_content_views(callback, request, options) {
|
|
1386
|
-
var
|
|
1394
|
+
var _this146 = this;
|
|
1387
1395
|
|
|
1388
1396
|
return _asyncToGenerator(function* () {
|
|
1389
|
-
return
|
|
1397
|
+
return _this146.authStream(callback, 'GET', '/content_view/search', {
|
|
1390
1398
|
view_count: request.view_count,
|
|
1391
1399
|
group_id: request.group_id,
|
|
1392
1400
|
look_id: request.look_id,
|
|
@@ -1405,40 +1413,40 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1405
1413
|
}
|
|
1406
1414
|
|
|
1407
1415
|
vector_thumbnail(callback, type, resource_id, reload, options) {
|
|
1408
|
-
var
|
|
1416
|
+
var _this147 = this;
|
|
1409
1417
|
|
|
1410
1418
|
return _asyncToGenerator(function* () {
|
|
1411
1419
|
type = encodeParam(type);
|
|
1412
1420
|
resource_id = encodeParam(resource_id);
|
|
1413
|
-
return
|
|
1421
|
+
return _this147.authStream(callback, 'GET', "/vector_thumbnail/".concat(type, "/").concat(resource_id), {
|
|
1414
1422
|
reload
|
|
1415
1423
|
}, null, options);
|
|
1416
1424
|
})();
|
|
1417
1425
|
}
|
|
1418
1426
|
|
|
1419
1427
|
all_dashboards(callback, fields, options) {
|
|
1420
|
-
var
|
|
1428
|
+
var _this148 = this;
|
|
1421
1429
|
|
|
1422
1430
|
return _asyncToGenerator(function* () {
|
|
1423
|
-
return
|
|
1431
|
+
return _this148.authStream(callback, 'GET', '/dashboards', {
|
|
1424
1432
|
fields
|
|
1425
1433
|
}, null, options);
|
|
1426
1434
|
})();
|
|
1427
1435
|
}
|
|
1428
1436
|
|
|
1429
1437
|
create_dashboard(callback, body, options) {
|
|
1430
|
-
var
|
|
1438
|
+
var _this149 = this;
|
|
1431
1439
|
|
|
1432
1440
|
return _asyncToGenerator(function* () {
|
|
1433
|
-
return
|
|
1441
|
+
return _this149.authStream(callback, 'POST', '/dashboards', null, body, options);
|
|
1434
1442
|
})();
|
|
1435
1443
|
}
|
|
1436
1444
|
|
|
1437
1445
|
search_dashboards(callback, request, options) {
|
|
1438
|
-
var
|
|
1446
|
+
var _this150 = this;
|
|
1439
1447
|
|
|
1440
1448
|
return _asyncToGenerator(function* () {
|
|
1441
|
-
return
|
|
1449
|
+
return _this150.authStream(callback, 'GET', '/dashboards/search', {
|
|
1442
1450
|
id: request.id,
|
|
1443
1451
|
slug: request.slug,
|
|
1444
1452
|
title: request.title,
|
|
@@ -1463,110 +1471,110 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1463
1471
|
}
|
|
1464
1472
|
|
|
1465
1473
|
import_lookml_dashboard(callback, lookml_dashboard_id, space_id, body, raw_locale, options) {
|
|
1466
|
-
var
|
|
1474
|
+
var _this151 = this;
|
|
1467
1475
|
|
|
1468
1476
|
return _asyncToGenerator(function* () {
|
|
1469
1477
|
lookml_dashboard_id = encodeParam(lookml_dashboard_id);
|
|
1470
1478
|
space_id = encodeParam(space_id);
|
|
1471
|
-
return
|
|
1479
|
+
return _this151.authStream(callback, 'POST', "/dashboards/".concat(lookml_dashboard_id, "/import/").concat(space_id), {
|
|
1472
1480
|
raw_locale
|
|
1473
1481
|
}, body, options);
|
|
1474
1482
|
})();
|
|
1475
1483
|
}
|
|
1476
1484
|
|
|
1477
1485
|
sync_lookml_dashboard(callback, lookml_dashboard_id, body, raw_locale, options) {
|
|
1478
|
-
var
|
|
1486
|
+
var _this152 = this;
|
|
1479
1487
|
|
|
1480
1488
|
return _asyncToGenerator(function* () {
|
|
1481
1489
|
lookml_dashboard_id = encodeParam(lookml_dashboard_id);
|
|
1482
|
-
return
|
|
1490
|
+
return _this152.authStream(callback, 'PATCH', "/dashboards/".concat(lookml_dashboard_id, "/sync"), {
|
|
1483
1491
|
raw_locale
|
|
1484
1492
|
}, body, options);
|
|
1485
1493
|
})();
|
|
1486
1494
|
}
|
|
1487
1495
|
|
|
1488
1496
|
dashboard(callback, dashboard_id, fields, options) {
|
|
1489
|
-
var
|
|
1497
|
+
var _this153 = this;
|
|
1490
1498
|
|
|
1491
1499
|
return _asyncToGenerator(function* () {
|
|
1492
1500
|
dashboard_id = encodeParam(dashboard_id);
|
|
1493
|
-
return
|
|
1501
|
+
return _this153.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id), {
|
|
1494
1502
|
fields
|
|
1495
1503
|
}, null, options);
|
|
1496
1504
|
})();
|
|
1497
1505
|
}
|
|
1498
1506
|
|
|
1499
1507
|
update_dashboard(callback, dashboard_id, body, options) {
|
|
1500
|
-
var
|
|
1508
|
+
var _this154 = this;
|
|
1501
1509
|
|
|
1502
1510
|
return _asyncToGenerator(function* () {
|
|
1503
1511
|
dashboard_id = encodeParam(dashboard_id);
|
|
1504
|
-
return
|
|
1512
|
+
return _this154.authStream(callback, 'PATCH', "/dashboards/".concat(dashboard_id), null, body, options);
|
|
1505
1513
|
})();
|
|
1506
1514
|
}
|
|
1507
1515
|
|
|
1508
1516
|
delete_dashboard(callback, dashboard_id, options) {
|
|
1509
|
-
var
|
|
1517
|
+
var _this155 = this;
|
|
1510
1518
|
|
|
1511
1519
|
return _asyncToGenerator(function* () {
|
|
1512
1520
|
dashboard_id = encodeParam(dashboard_id);
|
|
1513
|
-
return
|
|
1521
|
+
return _this155.authStream(callback, 'DELETE', "/dashboards/".concat(dashboard_id), null, null, options);
|
|
1514
1522
|
})();
|
|
1515
1523
|
}
|
|
1516
1524
|
|
|
1517
1525
|
dashboard_aggregate_table_lookml(callback, dashboard_id, options) {
|
|
1518
|
-
var
|
|
1526
|
+
var _this156 = this;
|
|
1519
1527
|
|
|
1520
1528
|
return _asyncToGenerator(function* () {
|
|
1521
1529
|
dashboard_id = encodeParam(dashboard_id);
|
|
1522
|
-
return
|
|
1530
|
+
return _this156.authStream(callback, 'GET', "/dashboards/aggregate_table_lookml/".concat(dashboard_id), null, null, options);
|
|
1523
1531
|
})();
|
|
1524
1532
|
}
|
|
1525
1533
|
|
|
1526
1534
|
dashboard_lookml(callback, dashboard_id, options) {
|
|
1527
|
-
var
|
|
1535
|
+
var _this157 = this;
|
|
1528
1536
|
|
|
1529
1537
|
return _asyncToGenerator(function* () {
|
|
1530
1538
|
dashboard_id = encodeParam(dashboard_id);
|
|
1531
|
-
return
|
|
1539
|
+
return _this157.authStream(callback, 'GET', "/dashboards/lookml/".concat(dashboard_id), null, null, options);
|
|
1532
1540
|
})();
|
|
1533
1541
|
}
|
|
1534
1542
|
|
|
1535
1543
|
move_dashboard(callback, dashboard_id, folder_id, options) {
|
|
1536
|
-
var
|
|
1544
|
+
var _this158 = this;
|
|
1537
1545
|
|
|
1538
1546
|
return _asyncToGenerator(function* () {
|
|
1539
1547
|
dashboard_id = encodeParam(dashboard_id);
|
|
1540
|
-
return
|
|
1548
|
+
return _this158.authStream(callback, 'PATCH', "/dashboards/".concat(dashboard_id, "/move"), {
|
|
1541
1549
|
folder_id
|
|
1542
1550
|
}, null, options);
|
|
1543
1551
|
})();
|
|
1544
1552
|
}
|
|
1545
1553
|
|
|
1546
1554
|
create_dashboard_from_lookml(callback, body, options) {
|
|
1547
|
-
var
|
|
1555
|
+
var _this159 = this;
|
|
1548
1556
|
|
|
1549
1557
|
return _asyncToGenerator(function* () {
|
|
1550
|
-
return
|
|
1558
|
+
return _this159.authStream(callback, 'POST', '/dashboards/from_lookml', null, body, options);
|
|
1551
1559
|
})();
|
|
1552
1560
|
}
|
|
1553
1561
|
|
|
1554
1562
|
copy_dashboard(callback, dashboard_id, folder_id, options) {
|
|
1555
|
-
var
|
|
1563
|
+
var _this160 = this;
|
|
1556
1564
|
|
|
1557
1565
|
return _asyncToGenerator(function* () {
|
|
1558
1566
|
dashboard_id = encodeParam(dashboard_id);
|
|
1559
|
-
return
|
|
1567
|
+
return _this160.authStream(callback, 'POST', "/dashboards/".concat(dashboard_id, "/copy"), {
|
|
1560
1568
|
folder_id
|
|
1561
1569
|
}, null, options);
|
|
1562
1570
|
})();
|
|
1563
1571
|
}
|
|
1564
1572
|
|
|
1565
1573
|
search_dashboard_elements(callback, request, options) {
|
|
1566
|
-
var
|
|
1574
|
+
var _this161 = this;
|
|
1567
1575
|
|
|
1568
1576
|
return _asyncToGenerator(function* () {
|
|
1569
|
-
return
|
|
1577
|
+
return _this161.authStream(callback, 'GET', '/dashboard_elements/search', {
|
|
1570
1578
|
dashboard_id: request.dashboard_id,
|
|
1571
1579
|
look_id: request.look_id,
|
|
1572
1580
|
title: request.title,
|
|
@@ -1579,52 +1587,52 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1579
1587
|
}
|
|
1580
1588
|
|
|
1581
1589
|
dashboard_element(callback, dashboard_element_id, fields, options) {
|
|
1582
|
-
var
|
|
1590
|
+
var _this162 = this;
|
|
1583
1591
|
|
|
1584
1592
|
return _asyncToGenerator(function* () {
|
|
1585
1593
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1586
|
-
return
|
|
1594
|
+
return _this162.authStream(callback, 'GET', "/dashboard_elements/".concat(dashboard_element_id), {
|
|
1587
1595
|
fields
|
|
1588
1596
|
}, null, options);
|
|
1589
1597
|
})();
|
|
1590
1598
|
}
|
|
1591
1599
|
|
|
1592
1600
|
update_dashboard_element(callback, dashboard_element_id, body, fields, options) {
|
|
1593
|
-
var
|
|
1601
|
+
var _this163 = this;
|
|
1594
1602
|
|
|
1595
1603
|
return _asyncToGenerator(function* () {
|
|
1596
1604
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1597
|
-
return
|
|
1605
|
+
return _this163.authStream(callback, 'PATCH', "/dashboard_elements/".concat(dashboard_element_id), {
|
|
1598
1606
|
fields
|
|
1599
1607
|
}, body, options);
|
|
1600
1608
|
})();
|
|
1601
1609
|
}
|
|
1602
1610
|
|
|
1603
1611
|
delete_dashboard_element(callback, dashboard_element_id, options) {
|
|
1604
|
-
var
|
|
1612
|
+
var _this164 = this;
|
|
1605
1613
|
|
|
1606
1614
|
return _asyncToGenerator(function* () {
|
|
1607
1615
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1608
|
-
return
|
|
1616
|
+
return _this164.authStream(callback, 'DELETE', "/dashboard_elements/".concat(dashboard_element_id), null, null, options);
|
|
1609
1617
|
})();
|
|
1610
1618
|
}
|
|
1611
1619
|
|
|
1612
1620
|
dashboard_dashboard_elements(callback, dashboard_id, fields, options) {
|
|
1613
|
-
var
|
|
1621
|
+
var _this165 = this;
|
|
1614
1622
|
|
|
1615
1623
|
return _asyncToGenerator(function* () {
|
|
1616
1624
|
dashboard_id = encodeParam(dashboard_id);
|
|
1617
|
-
return
|
|
1625
|
+
return _this165.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_elements"), {
|
|
1618
1626
|
fields
|
|
1619
1627
|
}, null, options);
|
|
1620
1628
|
})();
|
|
1621
1629
|
}
|
|
1622
1630
|
|
|
1623
1631
|
create_dashboard_element(callback, request, options) {
|
|
1624
|
-
var
|
|
1632
|
+
var _this166 = this;
|
|
1625
1633
|
|
|
1626
1634
|
return _asyncToGenerator(function* () {
|
|
1627
|
-
return
|
|
1635
|
+
return _this166.authStream(callback, 'POST', '/dashboard_elements', {
|
|
1628
1636
|
fields: request.fields,
|
|
1629
1637
|
apply_filters: request.apply_filters
|
|
1630
1638
|
}, request.body, options);
|
|
@@ -1632,190 +1640,190 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1632
1640
|
}
|
|
1633
1641
|
|
|
1634
1642
|
dashboard_filter(callback, dashboard_filter_id, fields, options) {
|
|
1635
|
-
var
|
|
1643
|
+
var _this167 = this;
|
|
1636
1644
|
|
|
1637
1645
|
return _asyncToGenerator(function* () {
|
|
1638
1646
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1639
|
-
return
|
|
1647
|
+
return _this167.authStream(callback, 'GET', "/dashboard_filters/".concat(dashboard_filter_id), {
|
|
1640
1648
|
fields
|
|
1641
1649
|
}, null, options);
|
|
1642
1650
|
})();
|
|
1643
1651
|
}
|
|
1644
1652
|
|
|
1645
1653
|
update_dashboard_filter(callback, dashboard_filter_id, body, fields, options) {
|
|
1646
|
-
var
|
|
1654
|
+
var _this168 = this;
|
|
1647
1655
|
|
|
1648
1656
|
return _asyncToGenerator(function* () {
|
|
1649
1657
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1650
|
-
return
|
|
1658
|
+
return _this168.authStream(callback, 'PATCH', "/dashboard_filters/".concat(dashboard_filter_id), {
|
|
1651
1659
|
fields
|
|
1652
1660
|
}, body, options);
|
|
1653
1661
|
})();
|
|
1654
1662
|
}
|
|
1655
1663
|
|
|
1656
1664
|
delete_dashboard_filter(callback, dashboard_filter_id, options) {
|
|
1657
|
-
var
|
|
1665
|
+
var _this169 = this;
|
|
1658
1666
|
|
|
1659
1667
|
return _asyncToGenerator(function* () {
|
|
1660
1668
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1661
|
-
return
|
|
1669
|
+
return _this169.authStream(callback, 'DELETE', "/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
|
|
1662
1670
|
})();
|
|
1663
1671
|
}
|
|
1664
1672
|
|
|
1665
1673
|
dashboard_dashboard_filters(callback, dashboard_id, fields, options) {
|
|
1666
|
-
var
|
|
1674
|
+
var _this170 = this;
|
|
1667
1675
|
|
|
1668
1676
|
return _asyncToGenerator(function* () {
|
|
1669
1677
|
dashboard_id = encodeParam(dashboard_id);
|
|
1670
|
-
return
|
|
1678
|
+
return _this170.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_filters"), {
|
|
1671
1679
|
fields
|
|
1672
1680
|
}, null, options);
|
|
1673
1681
|
})();
|
|
1674
1682
|
}
|
|
1675
1683
|
|
|
1676
1684
|
create_dashboard_filter(callback, body, fields, options) {
|
|
1677
|
-
var
|
|
1685
|
+
var _this171 = this;
|
|
1678
1686
|
|
|
1679
1687
|
return _asyncToGenerator(function* () {
|
|
1680
|
-
return
|
|
1688
|
+
return _this171.authStream(callback, 'POST', '/dashboard_filters', {
|
|
1681
1689
|
fields
|
|
1682
1690
|
}, body, options);
|
|
1683
1691
|
})();
|
|
1684
1692
|
}
|
|
1685
1693
|
|
|
1686
1694
|
dashboard_layout_component(callback, dashboard_layout_component_id, fields, options) {
|
|
1687
|
-
var
|
|
1695
|
+
var _this172 = this;
|
|
1688
1696
|
|
|
1689
1697
|
return _asyncToGenerator(function* () {
|
|
1690
1698
|
dashboard_layout_component_id = encodeParam(dashboard_layout_component_id);
|
|
1691
|
-
return
|
|
1699
|
+
return _this172.authStream(callback, 'GET', "/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
1692
1700
|
fields
|
|
1693
1701
|
}, null, options);
|
|
1694
1702
|
})();
|
|
1695
1703
|
}
|
|
1696
1704
|
|
|
1697
1705
|
update_dashboard_layout_component(callback, dashboard_layout_component_id, body, fields, options) {
|
|
1698
|
-
var
|
|
1706
|
+
var _this173 = this;
|
|
1699
1707
|
|
|
1700
1708
|
return _asyncToGenerator(function* () {
|
|
1701
1709
|
dashboard_layout_component_id = encodeParam(dashboard_layout_component_id);
|
|
1702
|
-
return
|
|
1710
|
+
return _this173.authStream(callback, 'PATCH', "/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
1703
1711
|
fields
|
|
1704
1712
|
}, body, options);
|
|
1705
1713
|
})();
|
|
1706
1714
|
}
|
|
1707
1715
|
|
|
1708
1716
|
dashboard_layout_dashboard_layout_components(callback, dashboard_layout_id, fields, options) {
|
|
1709
|
-
var
|
|
1717
|
+
var _this174 = this;
|
|
1710
1718
|
|
|
1711
1719
|
return _asyncToGenerator(function* () {
|
|
1712
1720
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1713
|
-
return
|
|
1721
|
+
return _this174.authStream(callback, 'GET', "/dashboard_layouts/".concat(dashboard_layout_id, "/dashboard_layout_components"), {
|
|
1714
1722
|
fields
|
|
1715
1723
|
}, null, options);
|
|
1716
1724
|
})();
|
|
1717
1725
|
}
|
|
1718
1726
|
|
|
1719
1727
|
dashboard_layout(callback, dashboard_layout_id, fields, options) {
|
|
1720
|
-
var
|
|
1728
|
+
var _this175 = this;
|
|
1721
1729
|
|
|
1722
1730
|
return _asyncToGenerator(function* () {
|
|
1723
1731
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1724
|
-
return
|
|
1732
|
+
return _this175.authStream(callback, 'GET', "/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
1725
1733
|
fields
|
|
1726
1734
|
}, null, options);
|
|
1727
1735
|
})();
|
|
1728
1736
|
}
|
|
1729
1737
|
|
|
1730
1738
|
update_dashboard_layout(callback, dashboard_layout_id, body, fields, options) {
|
|
1731
|
-
var
|
|
1739
|
+
var _this176 = this;
|
|
1732
1740
|
|
|
1733
1741
|
return _asyncToGenerator(function* () {
|
|
1734
1742
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1735
|
-
return
|
|
1743
|
+
return _this176.authStream(callback, 'PATCH', "/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
1736
1744
|
fields
|
|
1737
1745
|
}, body, options);
|
|
1738
1746
|
})();
|
|
1739
1747
|
}
|
|
1740
1748
|
|
|
1741
1749
|
delete_dashboard_layout(callback, dashboard_layout_id, options) {
|
|
1742
|
-
var
|
|
1750
|
+
var _this177 = this;
|
|
1743
1751
|
|
|
1744
1752
|
return _asyncToGenerator(function* () {
|
|
1745
1753
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1746
|
-
return
|
|
1754
|
+
return _this177.authStream(callback, 'DELETE', "/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
|
|
1747
1755
|
})();
|
|
1748
1756
|
}
|
|
1749
1757
|
|
|
1750
1758
|
dashboard_dashboard_layouts(callback, dashboard_id, fields, options) {
|
|
1751
|
-
var
|
|
1759
|
+
var _this178 = this;
|
|
1752
1760
|
|
|
1753
1761
|
return _asyncToGenerator(function* () {
|
|
1754
1762
|
dashboard_id = encodeParam(dashboard_id);
|
|
1755
|
-
return
|
|
1763
|
+
return _this178.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_layouts"), {
|
|
1756
1764
|
fields
|
|
1757
1765
|
}, null, options);
|
|
1758
1766
|
})();
|
|
1759
1767
|
}
|
|
1760
1768
|
|
|
1761
1769
|
create_dashboard_layout(callback, body, fields, options) {
|
|
1762
|
-
var
|
|
1770
|
+
var _this179 = this;
|
|
1763
1771
|
|
|
1764
1772
|
return _asyncToGenerator(function* () {
|
|
1765
|
-
return
|
|
1773
|
+
return _this179.authStream(callback, 'POST', '/dashboard_layouts', {
|
|
1766
1774
|
fields
|
|
1767
1775
|
}, body, options);
|
|
1768
1776
|
})();
|
|
1769
1777
|
}
|
|
1770
1778
|
|
|
1771
1779
|
perform_data_action(callback, body, options) {
|
|
1772
|
-
var
|
|
1780
|
+
var _this180 = this;
|
|
1773
1781
|
|
|
1774
1782
|
return _asyncToGenerator(function* () {
|
|
1775
|
-
return
|
|
1783
|
+
return _this180.authStream(callback, 'POST', '/data_actions', null, body, options);
|
|
1776
1784
|
})();
|
|
1777
1785
|
}
|
|
1778
1786
|
|
|
1779
1787
|
fetch_remote_data_action_form(callback, body, options) {
|
|
1780
|
-
var
|
|
1788
|
+
var _this181 = this;
|
|
1781
1789
|
|
|
1782
1790
|
return _asyncToGenerator(function* () {
|
|
1783
|
-
return
|
|
1791
|
+
return _this181.authStream(callback, 'POST', '/data_actions/form', null, body, options);
|
|
1784
1792
|
})();
|
|
1785
1793
|
}
|
|
1786
1794
|
|
|
1787
1795
|
all_datagroups(callback, options) {
|
|
1788
|
-
var
|
|
1796
|
+
var _this182 = this;
|
|
1789
1797
|
|
|
1790
1798
|
return _asyncToGenerator(function* () {
|
|
1791
|
-
return
|
|
1799
|
+
return _this182.authStream(callback, 'GET', '/datagroups', null, null, options);
|
|
1792
1800
|
})();
|
|
1793
1801
|
}
|
|
1794
1802
|
|
|
1795
1803
|
datagroup(callback, datagroup_id, options) {
|
|
1796
|
-
var
|
|
1804
|
+
var _this183 = this;
|
|
1797
1805
|
|
|
1798
1806
|
return _asyncToGenerator(function* () {
|
|
1799
1807
|
datagroup_id = encodeParam(datagroup_id);
|
|
1800
|
-
return
|
|
1808
|
+
return _this183.authStream(callback, 'GET', "/datagroups/".concat(datagroup_id), null, null, options);
|
|
1801
1809
|
})();
|
|
1802
1810
|
}
|
|
1803
1811
|
|
|
1804
1812
|
update_datagroup(callback, datagroup_id, body, options) {
|
|
1805
|
-
var
|
|
1813
|
+
var _this184 = this;
|
|
1806
1814
|
|
|
1807
1815
|
return _asyncToGenerator(function* () {
|
|
1808
1816
|
datagroup_id = encodeParam(datagroup_id);
|
|
1809
|
-
return
|
|
1817
|
+
return _this184.authStream(callback, 'PATCH', "/datagroups/".concat(datagroup_id), null, body, options);
|
|
1810
1818
|
})();
|
|
1811
1819
|
}
|
|
1812
1820
|
|
|
1813
1821
|
graph_derived_tables_for_model(callback, request, options) {
|
|
1814
|
-
var
|
|
1822
|
+
var _this185 = this;
|
|
1815
1823
|
|
|
1816
1824
|
return _asyncToGenerator(function* () {
|
|
1817
1825
|
request.model = encodeParam(request.model);
|
|
1818
|
-
return
|
|
1826
|
+
return _this185.authStream(callback, 'GET', "/derived_table/graph/model/".concat(request.model), {
|
|
1819
1827
|
format: request.format,
|
|
1820
1828
|
color: request.color
|
|
1821
1829
|
}, null, options);
|
|
@@ -1823,11 +1831,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1823
1831
|
}
|
|
1824
1832
|
|
|
1825
1833
|
graph_derived_tables_for_view(callback, request, options) {
|
|
1826
|
-
var
|
|
1834
|
+
var _this186 = this;
|
|
1827
1835
|
|
|
1828
1836
|
return _asyncToGenerator(function* () {
|
|
1829
1837
|
request.view = encodeParam(request.view);
|
|
1830
|
-
return
|
|
1838
|
+
return _this186.authStream(callback, 'GET', "/derived_table/graph/view/".concat(request.view), {
|
|
1831
1839
|
models: request.models,
|
|
1832
1840
|
workspace: request.workspace
|
|
1833
1841
|
}, null, options);
|
|
@@ -1835,12 +1843,12 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1835
1843
|
}
|
|
1836
1844
|
|
|
1837
1845
|
start_pdt_build(callback, request, options) {
|
|
1838
|
-
var
|
|
1846
|
+
var _this187 = this;
|
|
1839
1847
|
|
|
1840
1848
|
return _asyncToGenerator(function* () {
|
|
1841
1849
|
request.model_name = encodeParam(request.model_name);
|
|
1842
1850
|
request.view_name = encodeParam(request.view_name);
|
|
1843
|
-
return
|
|
1851
|
+
return _this187.authStream(callback, 'GET', "/derived_table/".concat(request.model_name, "/").concat(request.view_name, "/start"), {
|
|
1844
1852
|
force_rebuild: request.force_rebuild,
|
|
1845
1853
|
force_full_incremental: request.force_full_incremental,
|
|
1846
1854
|
workspace: request.workspace,
|
|
@@ -1850,30 +1858,30 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1850
1858
|
}
|
|
1851
1859
|
|
|
1852
1860
|
check_pdt_build(callback, materialization_id, options) {
|
|
1853
|
-
var
|
|
1861
|
+
var _this188 = this;
|
|
1854
1862
|
|
|
1855
1863
|
return _asyncToGenerator(function* () {
|
|
1856
1864
|
materialization_id = encodeParam(materialization_id);
|
|
1857
|
-
return
|
|
1865
|
+
return _this188.authStream(callback, 'GET', "/derived_table/".concat(materialization_id, "/status"), null, null, options);
|
|
1858
1866
|
})();
|
|
1859
1867
|
}
|
|
1860
1868
|
|
|
1861
1869
|
stop_pdt_build(callback, materialization_id, source, options) {
|
|
1862
|
-
var
|
|
1870
|
+
var _this189 = this;
|
|
1863
1871
|
|
|
1864
1872
|
return _asyncToGenerator(function* () {
|
|
1865
1873
|
materialization_id = encodeParam(materialization_id);
|
|
1866
|
-
return
|
|
1874
|
+
return _this189.authStream(callback, 'GET', "/derived_table/".concat(materialization_id, "/stop"), {
|
|
1867
1875
|
source
|
|
1868
1876
|
}, null, options);
|
|
1869
1877
|
})();
|
|
1870
1878
|
}
|
|
1871
1879
|
|
|
1872
1880
|
search_folders(callback, request, options) {
|
|
1873
|
-
var
|
|
1881
|
+
var _this190 = this;
|
|
1874
1882
|
|
|
1875
1883
|
return _asyncToGenerator(function* () {
|
|
1876
|
-
return
|
|
1884
|
+
return _this190.authStream(callback, 'GET', '/folders/search', {
|
|
1877
1885
|
fields: request.fields,
|
|
1878
1886
|
page: request.page,
|
|
1879
1887
|
per_page: request.per_page,
|
|
@@ -1891,58 +1899,58 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1891
1899
|
}
|
|
1892
1900
|
|
|
1893
1901
|
folder(callback, folder_id, fields, options) {
|
|
1894
|
-
var
|
|
1902
|
+
var _this191 = this;
|
|
1895
1903
|
|
|
1896
1904
|
return _asyncToGenerator(function* () {
|
|
1897
1905
|
folder_id = encodeParam(folder_id);
|
|
1898
|
-
return
|
|
1906
|
+
return _this191.authStream(callback, 'GET', "/folders/".concat(folder_id), {
|
|
1899
1907
|
fields
|
|
1900
1908
|
}, null, options);
|
|
1901
1909
|
})();
|
|
1902
1910
|
}
|
|
1903
1911
|
|
|
1904
1912
|
update_folder(callback, folder_id, body, options) {
|
|
1905
|
-
var
|
|
1913
|
+
var _this192 = this;
|
|
1906
1914
|
|
|
1907
1915
|
return _asyncToGenerator(function* () {
|
|
1908
1916
|
folder_id = encodeParam(folder_id);
|
|
1909
|
-
return
|
|
1917
|
+
return _this192.authStream(callback, 'PATCH', "/folders/".concat(folder_id), null, body, options);
|
|
1910
1918
|
})();
|
|
1911
1919
|
}
|
|
1912
1920
|
|
|
1913
1921
|
delete_folder(callback, folder_id, options) {
|
|
1914
|
-
var
|
|
1922
|
+
var _this193 = this;
|
|
1915
1923
|
|
|
1916
1924
|
return _asyncToGenerator(function* () {
|
|
1917
1925
|
folder_id = encodeParam(folder_id);
|
|
1918
|
-
return
|
|
1926
|
+
return _this193.authStream(callback, 'DELETE', "/folders/".concat(folder_id), null, null, options);
|
|
1919
1927
|
})();
|
|
1920
1928
|
}
|
|
1921
1929
|
|
|
1922
1930
|
all_folders(callback, fields, options) {
|
|
1923
|
-
var
|
|
1931
|
+
var _this194 = this;
|
|
1924
1932
|
|
|
1925
1933
|
return _asyncToGenerator(function* () {
|
|
1926
|
-
return
|
|
1934
|
+
return _this194.authStream(callback, 'GET', '/folders', {
|
|
1927
1935
|
fields
|
|
1928
1936
|
}, null, options);
|
|
1929
1937
|
})();
|
|
1930
1938
|
}
|
|
1931
1939
|
|
|
1932
1940
|
create_folder(callback, body, options) {
|
|
1933
|
-
var
|
|
1941
|
+
var _this195 = this;
|
|
1934
1942
|
|
|
1935
1943
|
return _asyncToGenerator(function* () {
|
|
1936
|
-
return
|
|
1944
|
+
return _this195.authStream(callback, 'POST', '/folders', null, body, options);
|
|
1937
1945
|
})();
|
|
1938
1946
|
}
|
|
1939
1947
|
|
|
1940
1948
|
folder_children(callback, request, options) {
|
|
1941
|
-
var
|
|
1949
|
+
var _this196 = this;
|
|
1942
1950
|
|
|
1943
1951
|
return _asyncToGenerator(function* () {
|
|
1944
1952
|
request.folder_id = encodeParam(request.folder_id);
|
|
1945
|
-
return
|
|
1953
|
+
return _this196.authStream(callback, 'GET', "/folders/".concat(request.folder_id, "/children"), {
|
|
1946
1954
|
fields: request.fields,
|
|
1947
1955
|
page: request.page,
|
|
1948
1956
|
per_page: request.per_page,
|
|
@@ -1952,11 +1960,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1952
1960
|
}
|
|
1953
1961
|
|
|
1954
1962
|
folder_children_search(callback, request, options) {
|
|
1955
|
-
var
|
|
1963
|
+
var _this197 = this;
|
|
1956
1964
|
|
|
1957
1965
|
return _asyncToGenerator(function* () {
|
|
1958
1966
|
request.folder_id = encodeParam(request.folder_id);
|
|
1959
|
-
return
|
|
1967
|
+
return _this197.authStream(callback, 'GET', "/folders/".concat(request.folder_id, "/children/search"), {
|
|
1960
1968
|
fields: request.fields,
|
|
1961
1969
|
sorts: request.sorts,
|
|
1962
1970
|
name: request.name
|
|
@@ -1965,54 +1973,54 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
1965
1973
|
}
|
|
1966
1974
|
|
|
1967
1975
|
folder_parent(callback, folder_id, fields, options) {
|
|
1968
|
-
var
|
|
1976
|
+
var _this198 = this;
|
|
1969
1977
|
|
|
1970
1978
|
return _asyncToGenerator(function* () {
|
|
1971
1979
|
folder_id = encodeParam(folder_id);
|
|
1972
|
-
return
|
|
1980
|
+
return _this198.authStream(callback, 'GET', "/folders/".concat(folder_id, "/parent"), {
|
|
1973
1981
|
fields
|
|
1974
1982
|
}, null, options);
|
|
1975
1983
|
})();
|
|
1976
1984
|
}
|
|
1977
1985
|
|
|
1978
1986
|
folder_ancestors(callback, folder_id, fields, options) {
|
|
1979
|
-
var
|
|
1987
|
+
var _this199 = this;
|
|
1980
1988
|
|
|
1981
1989
|
return _asyncToGenerator(function* () {
|
|
1982
1990
|
folder_id = encodeParam(folder_id);
|
|
1983
|
-
return
|
|
1991
|
+
return _this199.authStream(callback, 'GET', "/folders/".concat(folder_id, "/ancestors"), {
|
|
1984
1992
|
fields
|
|
1985
1993
|
}, null, options);
|
|
1986
1994
|
})();
|
|
1987
1995
|
}
|
|
1988
1996
|
|
|
1989
1997
|
folder_looks(callback, folder_id, fields, options) {
|
|
1990
|
-
var
|
|
1998
|
+
var _this200 = this;
|
|
1991
1999
|
|
|
1992
2000
|
return _asyncToGenerator(function* () {
|
|
1993
2001
|
folder_id = encodeParam(folder_id);
|
|
1994
|
-
return
|
|
2002
|
+
return _this200.authStream(callback, 'GET', "/folders/".concat(folder_id, "/looks"), {
|
|
1995
2003
|
fields
|
|
1996
2004
|
}, null, options);
|
|
1997
2005
|
})();
|
|
1998
2006
|
}
|
|
1999
2007
|
|
|
2000
2008
|
folder_dashboards(callback, folder_id, fields, options) {
|
|
2001
|
-
var
|
|
2009
|
+
var _this201 = this;
|
|
2002
2010
|
|
|
2003
2011
|
return _asyncToGenerator(function* () {
|
|
2004
2012
|
folder_id = encodeParam(folder_id);
|
|
2005
|
-
return
|
|
2013
|
+
return _this201.authStream(callback, 'GET', "/folders/".concat(folder_id, "/dashboards"), {
|
|
2006
2014
|
fields
|
|
2007
2015
|
}, null, options);
|
|
2008
2016
|
})();
|
|
2009
2017
|
}
|
|
2010
2018
|
|
|
2011
2019
|
all_groups(callback, request, options) {
|
|
2012
|
-
var
|
|
2020
|
+
var _this202 = this;
|
|
2013
2021
|
|
|
2014
2022
|
return _asyncToGenerator(function* () {
|
|
2015
|
-
return
|
|
2023
|
+
return _this202.authStream(callback, 'GET', '/groups', {
|
|
2016
2024
|
fields: request.fields,
|
|
2017
2025
|
page: request.page,
|
|
2018
2026
|
per_page: request.per_page,
|
|
@@ -2027,20 +2035,20 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2027
2035
|
}
|
|
2028
2036
|
|
|
2029
2037
|
create_group(callback, body, fields, options) {
|
|
2030
|
-
var
|
|
2038
|
+
var _this203 = this;
|
|
2031
2039
|
|
|
2032
2040
|
return _asyncToGenerator(function* () {
|
|
2033
|
-
return
|
|
2041
|
+
return _this203.authStream(callback, 'POST', '/groups', {
|
|
2034
2042
|
fields
|
|
2035
2043
|
}, body, options);
|
|
2036
2044
|
})();
|
|
2037
2045
|
}
|
|
2038
2046
|
|
|
2039
2047
|
search_groups(callback, request, options) {
|
|
2040
|
-
var
|
|
2048
|
+
var _this204 = this;
|
|
2041
2049
|
|
|
2042
2050
|
return _asyncToGenerator(function* () {
|
|
2043
|
-
return
|
|
2051
|
+
return _this204.authStream(callback, 'GET', '/groups/search', {
|
|
2044
2052
|
fields: request.fields,
|
|
2045
2053
|
limit: request.limit,
|
|
2046
2054
|
offset: request.offset,
|
|
@@ -2056,10 +2064,10 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2056
2064
|
}
|
|
2057
2065
|
|
|
2058
2066
|
search_groups_with_roles(callback, request, options) {
|
|
2059
|
-
var
|
|
2067
|
+
var _this205 = this;
|
|
2060
2068
|
|
|
2061
2069
|
return _asyncToGenerator(function* () {
|
|
2062
|
-
return
|
|
2070
|
+
return _this205.authStream(callback, 'GET', '/groups/search/with_roles', {
|
|
2063
2071
|
fields: request.fields,
|
|
2064
2072
|
limit: request.limit,
|
|
2065
2073
|
offset: request.offset,
|
|
@@ -2075,10 +2083,10 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2075
2083
|
}
|
|
2076
2084
|
|
|
2077
2085
|
search_groups_with_hierarchy(callback, request, options) {
|
|
2078
|
-
var
|
|
2086
|
+
var _this206 = this;
|
|
2079
2087
|
|
|
2080
2088
|
return _asyncToGenerator(function* () {
|
|
2081
|
-
return
|
|
2089
|
+
return _this206.authStream(callback, 'GET', '/groups/search/with_hierarchy', {
|
|
2082
2090
|
fields: request.fields,
|
|
2083
2091
|
limit: request.limit,
|
|
2084
2092
|
offset: request.offset,
|
|
@@ -2094,62 +2102,62 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2094
2102
|
}
|
|
2095
2103
|
|
|
2096
2104
|
group(callback, group_id, fields, options) {
|
|
2097
|
-
var
|
|
2105
|
+
var _this207 = this;
|
|
2098
2106
|
|
|
2099
2107
|
return _asyncToGenerator(function* () {
|
|
2100
2108
|
group_id = encodeParam(group_id);
|
|
2101
|
-
return
|
|
2109
|
+
return _this207.authStream(callback, 'GET', "/groups/".concat(group_id), {
|
|
2102
2110
|
fields
|
|
2103
2111
|
}, null, options);
|
|
2104
2112
|
})();
|
|
2105
2113
|
}
|
|
2106
2114
|
|
|
2107
2115
|
update_group(callback, group_id, body, fields, options) {
|
|
2108
|
-
var
|
|
2116
|
+
var _this208 = this;
|
|
2109
2117
|
|
|
2110
2118
|
return _asyncToGenerator(function* () {
|
|
2111
2119
|
group_id = encodeParam(group_id);
|
|
2112
|
-
return
|
|
2120
|
+
return _this208.authStream(callback, 'PATCH', "/groups/".concat(group_id), {
|
|
2113
2121
|
fields
|
|
2114
2122
|
}, body, options);
|
|
2115
2123
|
})();
|
|
2116
2124
|
}
|
|
2117
2125
|
|
|
2118
2126
|
delete_group(callback, group_id, options) {
|
|
2119
|
-
var
|
|
2127
|
+
var _this209 = this;
|
|
2120
2128
|
|
|
2121
2129
|
return _asyncToGenerator(function* () {
|
|
2122
2130
|
group_id = encodeParam(group_id);
|
|
2123
|
-
return
|
|
2131
|
+
return _this209.authStream(callback, 'DELETE', "/groups/".concat(group_id), null, null, options);
|
|
2124
2132
|
})();
|
|
2125
2133
|
}
|
|
2126
2134
|
|
|
2127
2135
|
all_group_groups(callback, group_id, fields, options) {
|
|
2128
|
-
var
|
|
2136
|
+
var _this210 = this;
|
|
2129
2137
|
|
|
2130
2138
|
return _asyncToGenerator(function* () {
|
|
2131
2139
|
group_id = encodeParam(group_id);
|
|
2132
|
-
return
|
|
2140
|
+
return _this210.authStream(callback, 'GET', "/groups/".concat(group_id, "/groups"), {
|
|
2133
2141
|
fields
|
|
2134
2142
|
}, null, options);
|
|
2135
2143
|
})();
|
|
2136
2144
|
}
|
|
2137
2145
|
|
|
2138
2146
|
add_group_group(callback, group_id, body, options) {
|
|
2139
|
-
var
|
|
2147
|
+
var _this211 = this;
|
|
2140
2148
|
|
|
2141
2149
|
return _asyncToGenerator(function* () {
|
|
2142
2150
|
group_id = encodeParam(group_id);
|
|
2143
|
-
return
|
|
2151
|
+
return _this211.authStream(callback, 'POST', "/groups/".concat(group_id, "/groups"), null, body, options);
|
|
2144
2152
|
})();
|
|
2145
2153
|
}
|
|
2146
2154
|
|
|
2147
2155
|
all_group_users(callback, request, options) {
|
|
2148
|
-
var
|
|
2156
|
+
var _this212 = this;
|
|
2149
2157
|
|
|
2150
2158
|
return _asyncToGenerator(function* () {
|
|
2151
2159
|
request.group_id = encodeParam(request.group_id);
|
|
2152
|
-
return
|
|
2160
|
+
return _this212.authStream(callback, 'GET', "/groups/".concat(request.group_id, "/users"), {
|
|
2153
2161
|
fields: request.fields,
|
|
2154
2162
|
page: request.page,
|
|
2155
2163
|
per_page: request.per_page,
|
|
@@ -2161,129 +2169,129 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2161
2169
|
}
|
|
2162
2170
|
|
|
2163
2171
|
add_group_user(callback, group_id, body, options) {
|
|
2164
|
-
var
|
|
2172
|
+
var _this213 = this;
|
|
2165
2173
|
|
|
2166
2174
|
return _asyncToGenerator(function* () {
|
|
2167
2175
|
group_id = encodeParam(group_id);
|
|
2168
|
-
return
|
|
2176
|
+
return _this213.authStream(callback, 'POST', "/groups/".concat(group_id, "/users"), null, body, options);
|
|
2169
2177
|
})();
|
|
2170
2178
|
}
|
|
2171
2179
|
|
|
2172
2180
|
delete_group_user(callback, group_id, user_id, options) {
|
|
2173
|
-
var
|
|
2181
|
+
var _this214 = this;
|
|
2174
2182
|
|
|
2175
2183
|
return _asyncToGenerator(function* () {
|
|
2176
2184
|
group_id = encodeParam(group_id);
|
|
2177
2185
|
user_id = encodeParam(user_id);
|
|
2178
|
-
return
|
|
2186
|
+
return _this214.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
|
|
2179
2187
|
})();
|
|
2180
2188
|
}
|
|
2181
2189
|
|
|
2182
2190
|
delete_group_from_group(callback, group_id, deleting_group_id, options) {
|
|
2183
|
-
var
|
|
2191
|
+
var _this215 = this;
|
|
2184
2192
|
|
|
2185
2193
|
return _asyncToGenerator(function* () {
|
|
2186
2194
|
group_id = encodeParam(group_id);
|
|
2187
2195
|
deleting_group_id = encodeParam(deleting_group_id);
|
|
2188
|
-
return
|
|
2196
|
+
return _this215.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
|
|
2189
2197
|
})();
|
|
2190
2198
|
}
|
|
2191
2199
|
|
|
2192
2200
|
update_user_attribute_group_value(callback, group_id, user_attribute_id, body, options) {
|
|
2193
|
-
var
|
|
2201
|
+
var _this216 = this;
|
|
2194
2202
|
|
|
2195
2203
|
return _asyncToGenerator(function* () {
|
|
2196
2204
|
group_id = encodeParam(group_id);
|
|
2197
2205
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
2198
|
-
return
|
|
2206
|
+
return _this216.authStream(callback, 'PATCH', "/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
2199
2207
|
})();
|
|
2200
2208
|
}
|
|
2201
2209
|
|
|
2202
2210
|
delete_user_attribute_group_value(callback, group_id, user_attribute_id, options) {
|
|
2203
|
-
var
|
|
2211
|
+
var _this217 = this;
|
|
2204
2212
|
|
|
2205
2213
|
return _asyncToGenerator(function* () {
|
|
2206
2214
|
group_id = encodeParam(group_id);
|
|
2207
2215
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
2208
|
-
return
|
|
2216
|
+
return _this217.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
2209
2217
|
})();
|
|
2210
2218
|
}
|
|
2211
2219
|
|
|
2212
2220
|
all_primary_homepage_sections(callback, fields, options) {
|
|
2213
|
-
var
|
|
2221
|
+
var _this218 = this;
|
|
2214
2222
|
|
|
2215
2223
|
return _asyncToGenerator(function* () {
|
|
2216
|
-
return
|
|
2224
|
+
return _this218.authStream(callback, 'GET', '/primary_homepage_sections', {
|
|
2217
2225
|
fields
|
|
2218
2226
|
}, null, options);
|
|
2219
2227
|
})();
|
|
2220
2228
|
}
|
|
2221
2229
|
|
|
2222
2230
|
all_integration_hubs(callback, fields, options) {
|
|
2223
|
-
var
|
|
2231
|
+
var _this219 = this;
|
|
2224
2232
|
|
|
2225
2233
|
return _asyncToGenerator(function* () {
|
|
2226
|
-
return
|
|
2234
|
+
return _this219.authStream(callback, 'GET', '/integration_hubs', {
|
|
2227
2235
|
fields
|
|
2228
2236
|
}, null, options);
|
|
2229
2237
|
})();
|
|
2230
2238
|
}
|
|
2231
2239
|
|
|
2232
2240
|
create_integration_hub(callback, body, fields, options) {
|
|
2233
|
-
var
|
|
2241
|
+
var _this220 = this;
|
|
2234
2242
|
|
|
2235
2243
|
return _asyncToGenerator(function* () {
|
|
2236
|
-
return
|
|
2244
|
+
return _this220.authStream(callback, 'POST', '/integration_hubs', {
|
|
2237
2245
|
fields
|
|
2238
2246
|
}, body, options);
|
|
2239
2247
|
})();
|
|
2240
2248
|
}
|
|
2241
2249
|
|
|
2242
2250
|
integration_hub(callback, integration_hub_id, fields, options) {
|
|
2243
|
-
var
|
|
2251
|
+
var _this221 = this;
|
|
2244
2252
|
|
|
2245
2253
|
return _asyncToGenerator(function* () {
|
|
2246
2254
|
integration_hub_id = encodeParam(integration_hub_id);
|
|
2247
|
-
return
|
|
2255
|
+
return _this221.authStream(callback, 'GET', "/integration_hubs/".concat(integration_hub_id), {
|
|
2248
2256
|
fields
|
|
2249
2257
|
}, null, options);
|
|
2250
2258
|
})();
|
|
2251
2259
|
}
|
|
2252
2260
|
|
|
2253
2261
|
update_integration_hub(callback, integration_hub_id, body, fields, options) {
|
|
2254
|
-
var
|
|
2262
|
+
var _this222 = this;
|
|
2255
2263
|
|
|
2256
2264
|
return _asyncToGenerator(function* () {
|
|
2257
2265
|
integration_hub_id = encodeParam(integration_hub_id);
|
|
2258
|
-
return
|
|
2266
|
+
return _this222.authStream(callback, 'PATCH', "/integration_hubs/".concat(integration_hub_id), {
|
|
2259
2267
|
fields
|
|
2260
2268
|
}, body, options);
|
|
2261
2269
|
})();
|
|
2262
2270
|
}
|
|
2263
2271
|
|
|
2264
2272
|
delete_integration_hub(callback, integration_hub_id, options) {
|
|
2265
|
-
var
|
|
2273
|
+
var _this223 = this;
|
|
2266
2274
|
|
|
2267
2275
|
return _asyncToGenerator(function* () {
|
|
2268
2276
|
integration_hub_id = encodeParam(integration_hub_id);
|
|
2269
|
-
return
|
|
2277
|
+
return _this223.authStream(callback, 'DELETE', "/integration_hubs/".concat(integration_hub_id), null, null, options);
|
|
2270
2278
|
})();
|
|
2271
2279
|
}
|
|
2272
2280
|
|
|
2273
2281
|
accept_integration_hub_legal_agreement(callback, integration_hub_id, options) {
|
|
2274
|
-
var
|
|
2282
|
+
var _this224 = this;
|
|
2275
2283
|
|
|
2276
2284
|
return _asyncToGenerator(function* () {
|
|
2277
2285
|
integration_hub_id = encodeParam(integration_hub_id);
|
|
2278
|
-
return
|
|
2286
|
+
return _this224.authStream(callback, 'POST', "/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
|
|
2279
2287
|
})();
|
|
2280
2288
|
}
|
|
2281
2289
|
|
|
2282
2290
|
all_integrations(callback, request, options) {
|
|
2283
|
-
var
|
|
2291
|
+
var _this225 = this;
|
|
2284
2292
|
|
|
2285
2293
|
return _asyncToGenerator(function* () {
|
|
2286
|
-
return
|
|
2294
|
+
return _this225.authStream(callback, 'GET', '/integrations', {
|
|
2287
2295
|
fields: request.fields,
|
|
2288
2296
|
integration_hub_id: request.integration_hub_id
|
|
2289
2297
|
}, null, options);
|
|
@@ -2291,70 +2299,70 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2291
2299
|
}
|
|
2292
2300
|
|
|
2293
2301
|
integration(callback, integration_id, fields, options) {
|
|
2294
|
-
var
|
|
2302
|
+
var _this226 = this;
|
|
2295
2303
|
|
|
2296
2304
|
return _asyncToGenerator(function* () {
|
|
2297
2305
|
integration_id = encodeParam(integration_id);
|
|
2298
|
-
return
|
|
2306
|
+
return _this226.authStream(callback, 'GET', "/integrations/".concat(integration_id), {
|
|
2299
2307
|
fields
|
|
2300
2308
|
}, null, options);
|
|
2301
2309
|
})();
|
|
2302
2310
|
}
|
|
2303
2311
|
|
|
2304
2312
|
update_integration(callback, integration_id, body, fields, options) {
|
|
2305
|
-
var
|
|
2313
|
+
var _this227 = this;
|
|
2306
2314
|
|
|
2307
2315
|
return _asyncToGenerator(function* () {
|
|
2308
2316
|
integration_id = encodeParam(integration_id);
|
|
2309
|
-
return
|
|
2317
|
+
return _this227.authStream(callback, 'PATCH', "/integrations/".concat(integration_id), {
|
|
2310
2318
|
fields
|
|
2311
2319
|
}, body, options);
|
|
2312
2320
|
})();
|
|
2313
2321
|
}
|
|
2314
2322
|
|
|
2315
2323
|
fetch_integration_form(callback, integration_id, body, options) {
|
|
2316
|
-
var
|
|
2324
|
+
var _this228 = this;
|
|
2317
2325
|
|
|
2318
2326
|
return _asyncToGenerator(function* () {
|
|
2319
2327
|
integration_id = encodeParam(integration_id);
|
|
2320
|
-
return
|
|
2328
|
+
return _this228.authStream(callback, 'POST', "/integrations/".concat(integration_id, "/form"), null, body, options);
|
|
2321
2329
|
})();
|
|
2322
2330
|
}
|
|
2323
2331
|
|
|
2324
2332
|
test_integration(callback, integration_id, options) {
|
|
2325
|
-
var
|
|
2333
|
+
var _this229 = this;
|
|
2326
2334
|
|
|
2327
2335
|
return _asyncToGenerator(function* () {
|
|
2328
2336
|
integration_id = encodeParam(integration_id);
|
|
2329
|
-
return
|
|
2337
|
+
return _this229.authStream(callback, 'POST', "/integrations/".concat(integration_id, "/test"), null, null, options);
|
|
2330
2338
|
})();
|
|
2331
2339
|
}
|
|
2332
2340
|
|
|
2333
2341
|
all_looks(callback, fields, options) {
|
|
2334
|
-
var
|
|
2342
|
+
var _this230 = this;
|
|
2335
2343
|
|
|
2336
2344
|
return _asyncToGenerator(function* () {
|
|
2337
|
-
return
|
|
2345
|
+
return _this230.authStream(callback, 'GET', '/looks', {
|
|
2338
2346
|
fields
|
|
2339
2347
|
}, null, options);
|
|
2340
2348
|
})();
|
|
2341
2349
|
}
|
|
2342
2350
|
|
|
2343
2351
|
create_look(callback, body, fields, options) {
|
|
2344
|
-
var
|
|
2352
|
+
var _this231 = this;
|
|
2345
2353
|
|
|
2346
2354
|
return _asyncToGenerator(function* () {
|
|
2347
|
-
return
|
|
2355
|
+
return _this231.authStream(callback, 'POST', '/looks', {
|
|
2348
2356
|
fields
|
|
2349
2357
|
}, body, options);
|
|
2350
2358
|
})();
|
|
2351
2359
|
}
|
|
2352
2360
|
|
|
2353
2361
|
search_looks(callback, request, options) {
|
|
2354
|
-
var
|
|
2362
|
+
var _this232 = this;
|
|
2355
2363
|
|
|
2356
2364
|
return _asyncToGenerator(function* () {
|
|
2357
|
-
return
|
|
2365
|
+
return _this232.authStream(callback, 'GET', '/looks/search', {
|
|
2358
2366
|
id: request.id,
|
|
2359
2367
|
title: request.title,
|
|
2360
2368
|
description: request.description,
|
|
@@ -2378,43 +2386,43 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2378
2386
|
}
|
|
2379
2387
|
|
|
2380
2388
|
look(callback, look_id, fields, options) {
|
|
2381
|
-
var
|
|
2389
|
+
var _this233 = this;
|
|
2382
2390
|
|
|
2383
2391
|
return _asyncToGenerator(function* () {
|
|
2384
2392
|
look_id = encodeParam(look_id);
|
|
2385
|
-
return
|
|
2393
|
+
return _this233.authStream(callback, 'GET', "/looks/".concat(look_id), {
|
|
2386
2394
|
fields
|
|
2387
2395
|
}, null, options);
|
|
2388
2396
|
})();
|
|
2389
2397
|
}
|
|
2390
2398
|
|
|
2391
2399
|
update_look(callback, look_id, body, fields, options) {
|
|
2392
|
-
var
|
|
2400
|
+
var _this234 = this;
|
|
2393
2401
|
|
|
2394
2402
|
return _asyncToGenerator(function* () {
|
|
2395
2403
|
look_id = encodeParam(look_id);
|
|
2396
|
-
return
|
|
2404
|
+
return _this234.authStream(callback, 'PATCH', "/looks/".concat(look_id), {
|
|
2397
2405
|
fields
|
|
2398
2406
|
}, body, options);
|
|
2399
2407
|
})();
|
|
2400
2408
|
}
|
|
2401
2409
|
|
|
2402
2410
|
delete_look(callback, look_id, options) {
|
|
2403
|
-
var
|
|
2411
|
+
var _this235 = this;
|
|
2404
2412
|
|
|
2405
2413
|
return _asyncToGenerator(function* () {
|
|
2406
2414
|
look_id = encodeParam(look_id);
|
|
2407
|
-
return
|
|
2415
|
+
return _this235.authStream(callback, 'DELETE', "/looks/".concat(look_id), null, null, options);
|
|
2408
2416
|
})();
|
|
2409
2417
|
}
|
|
2410
2418
|
|
|
2411
2419
|
run_look(callback, request, options) {
|
|
2412
|
-
var
|
|
2420
|
+
var _this236 = this;
|
|
2413
2421
|
|
|
2414
2422
|
return _asyncToGenerator(function* () {
|
|
2415
2423
|
request.look_id = encodeParam(request.look_id);
|
|
2416
2424
|
request.result_format = encodeParam(request.result_format);
|
|
2417
|
-
return
|
|
2425
|
+
return _this236.authStream(callback, 'GET', "/looks/".concat(request.look_id, "/run/").concat(request.result_format), {
|
|
2418
2426
|
limit: request.limit,
|
|
2419
2427
|
apply_formatting: request.apply_formatting,
|
|
2420
2428
|
apply_vis: request.apply_vis,
|
|
@@ -2432,32 +2440,32 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2432
2440
|
}
|
|
2433
2441
|
|
|
2434
2442
|
copy_look(callback, look_id, folder_id, options) {
|
|
2435
|
-
var
|
|
2443
|
+
var _this237 = this;
|
|
2436
2444
|
|
|
2437
2445
|
return _asyncToGenerator(function* () {
|
|
2438
2446
|
look_id = encodeParam(look_id);
|
|
2439
|
-
return
|
|
2447
|
+
return _this237.authStream(callback, 'POST', "/looks/".concat(look_id, "/copy"), {
|
|
2440
2448
|
folder_id
|
|
2441
2449
|
}, null, options);
|
|
2442
2450
|
})();
|
|
2443
2451
|
}
|
|
2444
2452
|
|
|
2445
2453
|
move_look(callback, look_id, folder_id, options) {
|
|
2446
|
-
var
|
|
2454
|
+
var _this238 = this;
|
|
2447
2455
|
|
|
2448
2456
|
return _asyncToGenerator(function* () {
|
|
2449
2457
|
look_id = encodeParam(look_id);
|
|
2450
|
-
return
|
|
2458
|
+
return _this238.authStream(callback, 'PATCH', "/looks/".concat(look_id, "/move"), {
|
|
2451
2459
|
folder_id
|
|
2452
2460
|
}, null, options);
|
|
2453
2461
|
})();
|
|
2454
2462
|
}
|
|
2455
2463
|
|
|
2456
2464
|
all_lookml_models(callback, request, options) {
|
|
2457
|
-
var
|
|
2465
|
+
var _this239 = this;
|
|
2458
2466
|
|
|
2459
2467
|
return _asyncToGenerator(function* () {
|
|
2460
|
-
return
|
|
2468
|
+
return _this239.authStream(callback, 'GET', '/lookml_models', {
|
|
2461
2469
|
fields: request.fields,
|
|
2462
2470
|
limit: request.limit,
|
|
2463
2471
|
offset: request.offset
|
|
@@ -2466,62 +2474,62 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2466
2474
|
}
|
|
2467
2475
|
|
|
2468
2476
|
create_lookml_model(callback, body, options) {
|
|
2469
|
-
var
|
|
2477
|
+
var _this240 = this;
|
|
2470
2478
|
|
|
2471
2479
|
return _asyncToGenerator(function* () {
|
|
2472
|
-
return
|
|
2480
|
+
return _this240.authStream(callback, 'POST', '/lookml_models', null, body, options);
|
|
2473
2481
|
})();
|
|
2474
2482
|
}
|
|
2475
2483
|
|
|
2476
2484
|
lookml_model(callback, lookml_model_name, fields, options) {
|
|
2477
|
-
var
|
|
2485
|
+
var _this241 = this;
|
|
2478
2486
|
|
|
2479
2487
|
return _asyncToGenerator(function* () {
|
|
2480
2488
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2481
|
-
return
|
|
2489
|
+
return _this241.authStream(callback, 'GET', "/lookml_models/".concat(lookml_model_name), {
|
|
2482
2490
|
fields
|
|
2483
2491
|
}, null, options);
|
|
2484
2492
|
})();
|
|
2485
2493
|
}
|
|
2486
2494
|
|
|
2487
2495
|
update_lookml_model(callback, lookml_model_name, body, options) {
|
|
2488
|
-
var
|
|
2496
|
+
var _this242 = this;
|
|
2489
2497
|
|
|
2490
2498
|
return _asyncToGenerator(function* () {
|
|
2491
2499
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2492
|
-
return
|
|
2500
|
+
return _this242.authStream(callback, 'PATCH', "/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
2493
2501
|
})();
|
|
2494
2502
|
}
|
|
2495
2503
|
|
|
2496
2504
|
delete_lookml_model(callback, lookml_model_name, options) {
|
|
2497
|
-
var
|
|
2505
|
+
var _this243 = this;
|
|
2498
2506
|
|
|
2499
2507
|
return _asyncToGenerator(function* () {
|
|
2500
2508
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2501
|
-
return
|
|
2509
|
+
return _this243.authStream(callback, 'DELETE', "/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
2502
2510
|
})();
|
|
2503
2511
|
}
|
|
2504
2512
|
|
|
2505
2513
|
lookml_model_explore(callback, lookml_model_name, explore_name, fields, options) {
|
|
2506
|
-
var
|
|
2514
|
+
var _this244 = this;
|
|
2507
2515
|
|
|
2508
2516
|
return _asyncToGenerator(function* () {
|
|
2509
2517
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2510
2518
|
explore_name = encodeParam(explore_name);
|
|
2511
|
-
return
|
|
2519
|
+
return _this244.authStream(callback, 'GET', "/lookml_models/".concat(lookml_model_name, "/explores/").concat(explore_name), {
|
|
2512
2520
|
fields
|
|
2513
2521
|
}, null, options);
|
|
2514
2522
|
})();
|
|
2515
2523
|
}
|
|
2516
2524
|
|
|
2517
2525
|
model_fieldname_suggestions(callback, request, options) {
|
|
2518
|
-
var
|
|
2526
|
+
var _this245 = this;
|
|
2519
2527
|
|
|
2520
2528
|
return _asyncToGenerator(function* () {
|
|
2521
2529
|
request.model_name = encodeParam(request.model_name);
|
|
2522
2530
|
request.view_name = encodeParam(request.view_name);
|
|
2523
2531
|
request.field_name = encodeParam(request.field_name);
|
|
2524
|
-
return
|
|
2532
|
+
return _this245.authStream(callback, 'GET', "/models/".concat(request.model_name, "/views/").concat(request.view_name, "/fields/").concat(request.field_name, "/suggestions"), {
|
|
2525
2533
|
term: request.term,
|
|
2526
2534
|
filters: request.filters
|
|
2527
2535
|
}, null, options);
|
|
@@ -2529,40 +2537,40 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2529
2537
|
}
|
|
2530
2538
|
|
|
2531
2539
|
get_model(callback, model_name, options) {
|
|
2532
|
-
var
|
|
2540
|
+
var _this246 = this;
|
|
2533
2541
|
|
|
2534
2542
|
return _asyncToGenerator(function* () {
|
|
2535
2543
|
model_name = encodeParam(model_name);
|
|
2536
|
-
return
|
|
2544
|
+
return _this246.authStream(callback, 'GET', "/models/".concat(model_name), null, null, options);
|
|
2537
2545
|
})();
|
|
2538
2546
|
}
|
|
2539
2547
|
|
|
2540
2548
|
connection_databases(callback, connection_name, options) {
|
|
2541
|
-
var
|
|
2549
|
+
var _this247 = this;
|
|
2542
2550
|
|
|
2543
2551
|
return _asyncToGenerator(function* () {
|
|
2544
2552
|
connection_name = encodeParam(connection_name);
|
|
2545
|
-
return
|
|
2553
|
+
return _this247.authStream(callback, 'GET', "/connections/".concat(connection_name, "/databases"), null, null, options);
|
|
2546
2554
|
})();
|
|
2547
2555
|
}
|
|
2548
2556
|
|
|
2549
2557
|
connection_features(callback, connection_name, fields, options) {
|
|
2550
|
-
var
|
|
2558
|
+
var _this248 = this;
|
|
2551
2559
|
|
|
2552
2560
|
return _asyncToGenerator(function* () {
|
|
2553
2561
|
connection_name = encodeParam(connection_name);
|
|
2554
|
-
return
|
|
2562
|
+
return _this248.authStream(callback, 'GET', "/connections/".concat(connection_name, "/features"), {
|
|
2555
2563
|
fields
|
|
2556
2564
|
}, null, options);
|
|
2557
2565
|
})();
|
|
2558
2566
|
}
|
|
2559
2567
|
|
|
2560
2568
|
connection_schemas(callback, request, options) {
|
|
2561
|
-
var
|
|
2569
|
+
var _this249 = this;
|
|
2562
2570
|
|
|
2563
2571
|
return _asyncToGenerator(function* () {
|
|
2564
2572
|
request.connection_name = encodeParam(request.connection_name);
|
|
2565
|
-
return
|
|
2573
|
+
return _this249.authStream(callback, 'GET', "/connections/".concat(request.connection_name, "/schemas"), {
|
|
2566
2574
|
database: request.database,
|
|
2567
2575
|
cache: request.cache,
|
|
2568
2576
|
fields: request.fields
|
|
@@ -2571,11 +2579,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2571
2579
|
}
|
|
2572
2580
|
|
|
2573
2581
|
connection_tables(callback, request, options) {
|
|
2574
|
-
var
|
|
2582
|
+
var _this250 = this;
|
|
2575
2583
|
|
|
2576
2584
|
return _asyncToGenerator(function* () {
|
|
2577
2585
|
request.connection_name = encodeParam(request.connection_name);
|
|
2578
|
-
return
|
|
2586
|
+
return _this250.authStream(callback, 'GET', "/connections/".concat(request.connection_name, "/tables"), {
|
|
2579
2587
|
database: request.database,
|
|
2580
2588
|
schema_name: request.schema_name,
|
|
2581
2589
|
cache: request.cache,
|
|
@@ -2587,11 +2595,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2587
2595
|
}
|
|
2588
2596
|
|
|
2589
2597
|
connection_columns(callback, request, options) {
|
|
2590
|
-
var
|
|
2598
|
+
var _this251 = this;
|
|
2591
2599
|
|
|
2592
2600
|
return _asyncToGenerator(function* () {
|
|
2593
2601
|
request.connection_name = encodeParam(request.connection_name);
|
|
2594
|
-
return
|
|
2602
|
+
return _this251.authStream(callback, 'GET', "/connections/".concat(request.connection_name, "/columns"), {
|
|
2595
2603
|
database: request.database,
|
|
2596
2604
|
schema_name: request.schema_name,
|
|
2597
2605
|
cache: request.cache,
|
|
@@ -2603,11 +2611,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2603
2611
|
}
|
|
2604
2612
|
|
|
2605
2613
|
connection_search_columns(callback, request, options) {
|
|
2606
|
-
var
|
|
2614
|
+
var _this252 = this;
|
|
2607
2615
|
|
|
2608
2616
|
return _asyncToGenerator(function* () {
|
|
2609
2617
|
request.connection_name = encodeParam(request.connection_name);
|
|
2610
|
-
return
|
|
2618
|
+
return _this252.authStream(callback, 'GET', "/connections/".concat(request.connection_name, "/search_columns"), {
|
|
2611
2619
|
column_name: request.column_name,
|
|
2612
2620
|
fields: request.fields
|
|
2613
2621
|
}, null, options);
|
|
@@ -2615,89 +2623,89 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2615
2623
|
}
|
|
2616
2624
|
|
|
2617
2625
|
connection_cost_estimate(callback, connection_name, body, fields, options) {
|
|
2618
|
-
var
|
|
2626
|
+
var _this253 = this;
|
|
2619
2627
|
|
|
2620
2628
|
return _asyncToGenerator(function* () {
|
|
2621
2629
|
connection_name = encodeParam(connection_name);
|
|
2622
|
-
return
|
|
2630
|
+
return _this253.authStream(callback, 'POST', "/connections/".concat(connection_name, "/cost_estimate"), {
|
|
2623
2631
|
fields
|
|
2624
2632
|
}, body, options);
|
|
2625
2633
|
})();
|
|
2626
2634
|
}
|
|
2627
2635
|
|
|
2628
2636
|
lock_all(callback, project_id, fields, options) {
|
|
2629
|
-
var
|
|
2637
|
+
var _this254 = this;
|
|
2630
2638
|
|
|
2631
2639
|
return _asyncToGenerator(function* () {
|
|
2632
2640
|
project_id = encodeParam(project_id);
|
|
2633
|
-
return
|
|
2641
|
+
return _this254.authStream(callback, 'POST', "/projects/".concat(project_id, "/manifest/lock_all"), {
|
|
2634
2642
|
fields
|
|
2635
2643
|
}, null, options);
|
|
2636
2644
|
})();
|
|
2637
2645
|
}
|
|
2638
2646
|
|
|
2639
2647
|
all_git_branches(callback, project_id, options) {
|
|
2640
|
-
var
|
|
2648
|
+
var _this255 = this;
|
|
2641
2649
|
|
|
2642
2650
|
return _asyncToGenerator(function* () {
|
|
2643
2651
|
project_id = encodeParam(project_id);
|
|
2644
|
-
return
|
|
2652
|
+
return _this255.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
2645
2653
|
})();
|
|
2646
2654
|
}
|
|
2647
2655
|
|
|
2648
2656
|
git_branch(callback, project_id, options) {
|
|
2649
|
-
var
|
|
2657
|
+
var _this256 = this;
|
|
2650
2658
|
|
|
2651
2659
|
return _asyncToGenerator(function* () {
|
|
2652
2660
|
project_id = encodeParam(project_id);
|
|
2653
|
-
return
|
|
2661
|
+
return _this256.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
2654
2662
|
})();
|
|
2655
2663
|
}
|
|
2656
2664
|
|
|
2657
2665
|
update_git_branch(callback, project_id, body, options) {
|
|
2658
|
-
var
|
|
2666
|
+
var _this257 = this;
|
|
2659
2667
|
|
|
2660
2668
|
return _asyncToGenerator(function* () {
|
|
2661
2669
|
project_id = encodeParam(project_id);
|
|
2662
|
-
return
|
|
2670
|
+
return _this257.authStream(callback, 'PUT', "/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2663
2671
|
})();
|
|
2664
2672
|
}
|
|
2665
2673
|
|
|
2666
2674
|
create_git_branch(callback, project_id, body, options) {
|
|
2667
|
-
var
|
|
2675
|
+
var _this258 = this;
|
|
2668
2676
|
|
|
2669
2677
|
return _asyncToGenerator(function* () {
|
|
2670
2678
|
project_id = encodeParam(project_id);
|
|
2671
|
-
return
|
|
2679
|
+
return _this258.authStream(callback, 'POST', "/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2672
2680
|
})();
|
|
2673
2681
|
}
|
|
2674
2682
|
|
|
2675
2683
|
find_git_branch(callback, project_id, branch_name, options) {
|
|
2676
|
-
var
|
|
2684
|
+
var _this259 = this;
|
|
2677
2685
|
|
|
2678
2686
|
return _asyncToGenerator(function* () {
|
|
2679
2687
|
project_id = encodeParam(project_id);
|
|
2680
2688
|
branch_name = encodeParam(branch_name);
|
|
2681
|
-
return
|
|
2689
|
+
return _this259.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2682
2690
|
})();
|
|
2683
2691
|
}
|
|
2684
2692
|
|
|
2685
2693
|
delete_git_branch(callback, project_id, branch_name, options) {
|
|
2686
|
-
var
|
|
2694
|
+
var _this260 = this;
|
|
2687
2695
|
|
|
2688
2696
|
return _asyncToGenerator(function* () {
|
|
2689
2697
|
project_id = encodeParam(project_id);
|
|
2690
2698
|
branch_name = encodeParam(branch_name);
|
|
2691
|
-
return
|
|
2699
|
+
return _this260.authStream(callback, 'DELETE', "/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2692
2700
|
})();
|
|
2693
2701
|
}
|
|
2694
2702
|
|
|
2695
2703
|
deploy_ref_to_production(callback, request, options) {
|
|
2696
|
-
var
|
|
2704
|
+
var _this261 = this;
|
|
2697
2705
|
|
|
2698
2706
|
return _asyncToGenerator(function* () {
|
|
2699
2707
|
request.project_id = encodeParam(request.project_id);
|
|
2700
|
-
return
|
|
2708
|
+
return _this261.authStream(callback, 'POST', "/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
2701
2709
|
branch: request.branch,
|
|
2702
2710
|
ref: request.ref
|
|
2703
2711
|
}, null, options);
|
|
@@ -2705,149 +2713,149 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2705
2713
|
}
|
|
2706
2714
|
|
|
2707
2715
|
deploy_to_production(callback, project_id, options) {
|
|
2708
|
-
var
|
|
2716
|
+
var _this262 = this;
|
|
2709
2717
|
|
|
2710
2718
|
return _asyncToGenerator(function* () {
|
|
2711
2719
|
project_id = encodeParam(project_id);
|
|
2712
|
-
return
|
|
2720
|
+
return _this262.authStream(callback, 'POST', "/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
2713
2721
|
})();
|
|
2714
2722
|
}
|
|
2715
2723
|
|
|
2716
2724
|
reset_project_to_production(callback, project_id, options) {
|
|
2717
|
-
var
|
|
2725
|
+
var _this263 = this;
|
|
2718
2726
|
|
|
2719
2727
|
return _asyncToGenerator(function* () {
|
|
2720
2728
|
project_id = encodeParam(project_id);
|
|
2721
|
-
return
|
|
2729
|
+
return _this263.authStream(callback, 'POST', "/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
2722
2730
|
})();
|
|
2723
2731
|
}
|
|
2724
2732
|
|
|
2725
2733
|
reset_project_to_remote(callback, project_id, options) {
|
|
2726
|
-
var
|
|
2734
|
+
var _this264 = this;
|
|
2727
2735
|
|
|
2728
2736
|
return _asyncToGenerator(function* () {
|
|
2729
2737
|
project_id = encodeParam(project_id);
|
|
2730
|
-
return
|
|
2738
|
+
return _this264.authStream(callback, 'POST', "/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
2731
2739
|
})();
|
|
2732
2740
|
}
|
|
2733
2741
|
|
|
2734
2742
|
all_projects(callback, fields, options) {
|
|
2735
|
-
var
|
|
2743
|
+
var _this265 = this;
|
|
2736
2744
|
|
|
2737
2745
|
return _asyncToGenerator(function* () {
|
|
2738
|
-
return
|
|
2746
|
+
return _this265.authStream(callback, 'GET', '/projects', {
|
|
2739
2747
|
fields
|
|
2740
2748
|
}, null, options);
|
|
2741
2749
|
})();
|
|
2742
2750
|
}
|
|
2743
2751
|
|
|
2744
2752
|
create_project(callback, body, options) {
|
|
2745
|
-
var
|
|
2753
|
+
var _this266 = this;
|
|
2746
2754
|
|
|
2747
2755
|
return _asyncToGenerator(function* () {
|
|
2748
|
-
return
|
|
2756
|
+
return _this266.authStream(callback, 'POST', '/projects', null, body, options);
|
|
2749
2757
|
})();
|
|
2750
2758
|
}
|
|
2751
2759
|
|
|
2752
2760
|
project(callback, project_id, fields, options) {
|
|
2753
|
-
var
|
|
2761
|
+
var _this267 = this;
|
|
2754
2762
|
|
|
2755
2763
|
return _asyncToGenerator(function* () {
|
|
2756
2764
|
project_id = encodeParam(project_id);
|
|
2757
|
-
return
|
|
2765
|
+
return _this267.authStream(callback, 'GET', "/projects/".concat(project_id), {
|
|
2758
2766
|
fields
|
|
2759
2767
|
}, null, options);
|
|
2760
2768
|
})();
|
|
2761
2769
|
}
|
|
2762
2770
|
|
|
2763
2771
|
update_project(callback, project_id, body, fields, options) {
|
|
2764
|
-
var
|
|
2772
|
+
var _this268 = this;
|
|
2765
2773
|
|
|
2766
2774
|
return _asyncToGenerator(function* () {
|
|
2767
2775
|
project_id = encodeParam(project_id);
|
|
2768
|
-
return
|
|
2776
|
+
return _this268.authStream(callback, 'PATCH', "/projects/".concat(project_id), {
|
|
2769
2777
|
fields
|
|
2770
2778
|
}, body, options);
|
|
2771
2779
|
})();
|
|
2772
2780
|
}
|
|
2773
2781
|
|
|
2774
2782
|
manifest(callback, project_id, options) {
|
|
2775
|
-
var
|
|
2783
|
+
var _this269 = this;
|
|
2776
2784
|
|
|
2777
2785
|
return _asyncToGenerator(function* () {
|
|
2778
2786
|
project_id = encodeParam(project_id);
|
|
2779
|
-
return
|
|
2787
|
+
return _this269.authStream(callback, 'GET', "/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
2780
2788
|
})();
|
|
2781
2789
|
}
|
|
2782
2790
|
|
|
2783
2791
|
git_deploy_key(callback, project_id, options) {
|
|
2784
|
-
var
|
|
2792
|
+
var _this270 = this;
|
|
2785
2793
|
|
|
2786
2794
|
return _asyncToGenerator(function* () {
|
|
2787
2795
|
project_id = encodeParam(project_id);
|
|
2788
|
-
return
|
|
2796
|
+
return _this270.authStream(callback, 'GET', "/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2789
2797
|
})();
|
|
2790
2798
|
}
|
|
2791
2799
|
|
|
2792
2800
|
create_git_deploy_key(callback, project_id, options) {
|
|
2793
|
-
var
|
|
2801
|
+
var _this271 = this;
|
|
2794
2802
|
|
|
2795
2803
|
return _asyncToGenerator(function* () {
|
|
2796
2804
|
project_id = encodeParam(project_id);
|
|
2797
|
-
return
|
|
2805
|
+
return _this271.authStream(callback, 'POST', "/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2798
2806
|
})();
|
|
2799
2807
|
}
|
|
2800
2808
|
|
|
2801
2809
|
project_validation_results(callback, project_id, fields, options) {
|
|
2802
|
-
var
|
|
2810
|
+
var _this272 = this;
|
|
2803
2811
|
|
|
2804
2812
|
return _asyncToGenerator(function* () {
|
|
2805
2813
|
project_id = encodeParam(project_id);
|
|
2806
|
-
return
|
|
2814
|
+
return _this272.authStream(callback, 'GET', "/projects/".concat(project_id, "/validate"), {
|
|
2807
2815
|
fields
|
|
2808
2816
|
}, null, options);
|
|
2809
2817
|
})();
|
|
2810
2818
|
}
|
|
2811
2819
|
|
|
2812
2820
|
validate_project(callback, project_id, fields, options) {
|
|
2813
|
-
var
|
|
2821
|
+
var _this273 = this;
|
|
2814
2822
|
|
|
2815
2823
|
return _asyncToGenerator(function* () {
|
|
2816
2824
|
project_id = encodeParam(project_id);
|
|
2817
|
-
return
|
|
2825
|
+
return _this273.authStream(callback, 'POST', "/projects/".concat(project_id, "/validate"), {
|
|
2818
2826
|
fields
|
|
2819
2827
|
}, null, options);
|
|
2820
2828
|
})();
|
|
2821
2829
|
}
|
|
2822
2830
|
|
|
2823
2831
|
project_workspace(callback, project_id, fields, options) {
|
|
2824
|
-
var
|
|
2832
|
+
var _this274 = this;
|
|
2825
2833
|
|
|
2826
2834
|
return _asyncToGenerator(function* () {
|
|
2827
2835
|
project_id = encodeParam(project_id);
|
|
2828
|
-
return
|
|
2836
|
+
return _this274.authStream(callback, 'GET', "/projects/".concat(project_id, "/current_workspace"), {
|
|
2829
2837
|
fields
|
|
2830
2838
|
}, null, options);
|
|
2831
2839
|
})();
|
|
2832
2840
|
}
|
|
2833
2841
|
|
|
2834
2842
|
all_project_files(callback, project_id, fields, options) {
|
|
2835
|
-
var
|
|
2843
|
+
var _this275 = this;
|
|
2836
2844
|
|
|
2837
2845
|
return _asyncToGenerator(function* () {
|
|
2838
2846
|
project_id = encodeParam(project_id);
|
|
2839
|
-
return
|
|
2847
|
+
return _this275.authStream(callback, 'GET', "/projects/".concat(project_id, "/files"), {
|
|
2840
2848
|
fields
|
|
2841
2849
|
}, null, options);
|
|
2842
2850
|
})();
|
|
2843
2851
|
}
|
|
2844
2852
|
|
|
2845
2853
|
project_file(callback, project_id, file_id, fields, options) {
|
|
2846
|
-
var
|
|
2854
|
+
var _this276 = this;
|
|
2847
2855
|
|
|
2848
2856
|
return _asyncToGenerator(function* () {
|
|
2849
2857
|
project_id = encodeParam(project_id);
|
|
2850
|
-
return
|
|
2858
|
+
return _this276.authStream(callback, 'GET', "/projects/".concat(project_id, "/files/file"), {
|
|
2851
2859
|
file_id,
|
|
2852
2860
|
fields
|
|
2853
2861
|
}, null, options);
|
|
@@ -2855,23 +2863,23 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2855
2863
|
}
|
|
2856
2864
|
|
|
2857
2865
|
all_git_connection_tests(callback, project_id, remote_url, options) {
|
|
2858
|
-
var
|
|
2866
|
+
var _this277 = this;
|
|
2859
2867
|
|
|
2860
2868
|
return _asyncToGenerator(function* () {
|
|
2861
2869
|
project_id = encodeParam(project_id);
|
|
2862
|
-
return
|
|
2870
|
+
return _this277.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_connection_tests"), {
|
|
2863
2871
|
remote_url
|
|
2864
2872
|
}, null, options);
|
|
2865
2873
|
})();
|
|
2866
2874
|
}
|
|
2867
2875
|
|
|
2868
2876
|
run_git_connection_test(callback, request, options) {
|
|
2869
|
-
var
|
|
2877
|
+
var _this278 = this;
|
|
2870
2878
|
|
|
2871
2879
|
return _asyncToGenerator(function* () {
|
|
2872
2880
|
request.project_id = encodeParam(request.project_id);
|
|
2873
2881
|
request.test_id = encodeParam(request.test_id);
|
|
2874
|
-
return
|
|
2882
|
+
return _this278.authStream(callback, 'GET', "/projects/".concat(request.project_id, "/git_connection_tests/").concat(request.test_id), {
|
|
2875
2883
|
remote_url: request.remote_url,
|
|
2876
2884
|
use_production: request.use_production
|
|
2877
2885
|
}, null, options);
|
|
@@ -2879,22 +2887,22 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2879
2887
|
}
|
|
2880
2888
|
|
|
2881
2889
|
all_lookml_tests(callback, project_id, file_id, options) {
|
|
2882
|
-
var
|
|
2890
|
+
var _this279 = this;
|
|
2883
2891
|
|
|
2884
2892
|
return _asyncToGenerator(function* () {
|
|
2885
2893
|
project_id = encodeParam(project_id);
|
|
2886
|
-
return
|
|
2894
|
+
return _this279.authStream(callback, 'GET', "/projects/".concat(project_id, "/lookml_tests"), {
|
|
2887
2895
|
file_id
|
|
2888
2896
|
}, null, options);
|
|
2889
2897
|
})();
|
|
2890
2898
|
}
|
|
2891
2899
|
|
|
2892
2900
|
run_lookml_test(callback, request, options) {
|
|
2893
|
-
var
|
|
2901
|
+
var _this280 = this;
|
|
2894
2902
|
|
|
2895
2903
|
return _asyncToGenerator(function* () {
|
|
2896
2904
|
request.project_id = encodeParam(request.project_id);
|
|
2897
|
-
return
|
|
2905
|
+
return _this280.authStream(callback, 'GET', "/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
2898
2906
|
file_id: request.file_id,
|
|
2899
2907
|
test: request.test,
|
|
2900
2908
|
model: request.model
|
|
@@ -2903,11 +2911,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2903
2911
|
}
|
|
2904
2912
|
|
|
2905
2913
|
tag_ref(callback, request, options) {
|
|
2906
|
-
var
|
|
2914
|
+
var _this281 = this;
|
|
2907
2915
|
|
|
2908
2916
|
return _asyncToGenerator(function* () {
|
|
2909
2917
|
request.project_id = encodeParam(request.project_id);
|
|
2910
|
-
return
|
|
2918
|
+
return _this281.authStream(callback, 'POST', "/projects/".concat(request.project_id, "/tag"), {
|
|
2911
2919
|
commit_sha: request.commit_sha,
|
|
2912
2920
|
tag_name: request.tag_name,
|
|
2913
2921
|
tag_message: request.tag_message
|
|
@@ -2916,39 +2924,39 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2916
2924
|
}
|
|
2917
2925
|
|
|
2918
2926
|
update_repository_credential(callback, root_project_id, credential_id, body, options) {
|
|
2919
|
-
var
|
|
2927
|
+
var _this282 = this;
|
|
2920
2928
|
|
|
2921
2929
|
return _asyncToGenerator(function* () {
|
|
2922
2930
|
root_project_id = encodeParam(root_project_id);
|
|
2923
2931
|
credential_id = encodeParam(credential_id);
|
|
2924
|
-
return
|
|
2932
|
+
return _this282.authStream(callback, 'PUT', "/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
2925
2933
|
})();
|
|
2926
2934
|
}
|
|
2927
2935
|
|
|
2928
2936
|
delete_repository_credential(callback, root_project_id, credential_id, options) {
|
|
2929
|
-
var
|
|
2937
|
+
var _this283 = this;
|
|
2930
2938
|
|
|
2931
2939
|
return _asyncToGenerator(function* () {
|
|
2932
2940
|
root_project_id = encodeParam(root_project_id);
|
|
2933
2941
|
credential_id = encodeParam(credential_id);
|
|
2934
|
-
return
|
|
2942
|
+
return _this283.authStream(callback, 'DELETE', "/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
2935
2943
|
})();
|
|
2936
2944
|
}
|
|
2937
2945
|
|
|
2938
2946
|
get_all_repository_credentials(callback, root_project_id, options) {
|
|
2939
|
-
var
|
|
2947
|
+
var _this284 = this;
|
|
2940
2948
|
|
|
2941
2949
|
return _asyncToGenerator(function* () {
|
|
2942
2950
|
root_project_id = encodeParam(root_project_id);
|
|
2943
|
-
return
|
|
2951
|
+
return _this284.authStream(callback, 'GET', "/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
2944
2952
|
})();
|
|
2945
2953
|
}
|
|
2946
2954
|
|
|
2947
2955
|
create_query_task(callback, request, options) {
|
|
2948
|
-
var
|
|
2956
|
+
var _this285 = this;
|
|
2949
2957
|
|
|
2950
2958
|
return _asyncToGenerator(function* () {
|
|
2951
|
-
return
|
|
2959
|
+
return _this285.authStream(callback, 'POST', '/query_tasks', {
|
|
2952
2960
|
limit: request.limit,
|
|
2953
2961
|
apply_formatting: request.apply_formatting,
|
|
2954
2962
|
apply_vis: request.apply_vis,
|
|
@@ -2967,74 +2975,74 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
2967
2975
|
}
|
|
2968
2976
|
|
|
2969
2977
|
query_task_multi_results(callback, query_task_ids, options) {
|
|
2970
|
-
var
|
|
2978
|
+
var _this286 = this;
|
|
2971
2979
|
|
|
2972
2980
|
return _asyncToGenerator(function* () {
|
|
2973
|
-
return
|
|
2981
|
+
return _this286.authStream(callback, 'GET', '/query_tasks/multi_results', {
|
|
2974
2982
|
query_task_ids
|
|
2975
2983
|
}, null, options);
|
|
2976
2984
|
})();
|
|
2977
2985
|
}
|
|
2978
2986
|
|
|
2979
2987
|
query_task(callback, query_task_id, fields, options) {
|
|
2980
|
-
var
|
|
2988
|
+
var _this287 = this;
|
|
2981
2989
|
|
|
2982
2990
|
return _asyncToGenerator(function* () {
|
|
2983
2991
|
query_task_id = encodeParam(query_task_id);
|
|
2984
|
-
return
|
|
2992
|
+
return _this287.authStream(callback, 'GET', "/query_tasks/".concat(query_task_id), {
|
|
2985
2993
|
fields
|
|
2986
2994
|
}, null, options);
|
|
2987
2995
|
})();
|
|
2988
2996
|
}
|
|
2989
2997
|
|
|
2990
2998
|
query_task_results(callback, query_task_id, options) {
|
|
2991
|
-
var
|
|
2999
|
+
var _this288 = this;
|
|
2992
3000
|
|
|
2993
3001
|
return _asyncToGenerator(function* () {
|
|
2994
3002
|
query_task_id = encodeParam(query_task_id);
|
|
2995
|
-
return
|
|
3003
|
+
return _this288.authStream(callback, 'GET', "/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
2996
3004
|
})();
|
|
2997
3005
|
}
|
|
2998
3006
|
|
|
2999
3007
|
query(callback, query_id, fields, options) {
|
|
3000
|
-
var
|
|
3008
|
+
var _this289 = this;
|
|
3001
3009
|
|
|
3002
3010
|
return _asyncToGenerator(function* () {
|
|
3003
3011
|
query_id = encodeParam(query_id);
|
|
3004
|
-
return
|
|
3012
|
+
return _this289.authStream(callback, 'GET', "/queries/".concat(query_id), {
|
|
3005
3013
|
fields
|
|
3006
3014
|
}, null, options);
|
|
3007
3015
|
})();
|
|
3008
3016
|
}
|
|
3009
3017
|
|
|
3010
3018
|
query_for_slug(callback, slug, fields, options) {
|
|
3011
|
-
var
|
|
3019
|
+
var _this290 = this;
|
|
3012
3020
|
|
|
3013
3021
|
return _asyncToGenerator(function* () {
|
|
3014
3022
|
slug = encodeParam(slug);
|
|
3015
|
-
return
|
|
3023
|
+
return _this290.authStream(callback, 'GET', "/queries/slug/".concat(slug), {
|
|
3016
3024
|
fields
|
|
3017
3025
|
}, null, options);
|
|
3018
3026
|
})();
|
|
3019
3027
|
}
|
|
3020
3028
|
|
|
3021
3029
|
create_query(callback, body, fields, options) {
|
|
3022
|
-
var
|
|
3030
|
+
var _this291 = this;
|
|
3023
3031
|
|
|
3024
3032
|
return _asyncToGenerator(function* () {
|
|
3025
|
-
return
|
|
3033
|
+
return _this291.authStream(callback, 'POST', '/queries', {
|
|
3026
3034
|
fields
|
|
3027
3035
|
}, body, options);
|
|
3028
3036
|
})();
|
|
3029
3037
|
}
|
|
3030
3038
|
|
|
3031
3039
|
run_query(callback, request, options) {
|
|
3032
|
-
var
|
|
3040
|
+
var _this292 = this;
|
|
3033
3041
|
|
|
3034
3042
|
return _asyncToGenerator(function* () {
|
|
3035
3043
|
request.query_id = encodeParam(request.query_id);
|
|
3036
3044
|
request.result_format = encodeParam(request.result_format);
|
|
3037
|
-
return
|
|
3045
|
+
return _this292.authStream(callback, 'GET', "/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
3038
3046
|
limit: request.limit,
|
|
3039
3047
|
apply_formatting: request.apply_formatting,
|
|
3040
3048
|
apply_vis: request.apply_vis,
|
|
@@ -3053,11 +3061,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3053
3061
|
}
|
|
3054
3062
|
|
|
3055
3063
|
run_inline_query(callback, request, options) {
|
|
3056
|
-
var
|
|
3064
|
+
var _this293 = this;
|
|
3057
3065
|
|
|
3058
3066
|
return _asyncToGenerator(function* () {
|
|
3059
3067
|
request.result_format = encodeParam(request.result_format);
|
|
3060
|
-
return
|
|
3068
|
+
return _this293.authStream(callback, 'POST', "/queries/run/".concat(request.result_format), {
|
|
3061
3069
|
limit: request.limit,
|
|
3062
3070
|
apply_formatting: request.apply_formatting,
|
|
3063
3071
|
apply_vis: request.apply_vis,
|
|
@@ -3075,90 +3083,90 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3075
3083
|
}
|
|
3076
3084
|
|
|
3077
3085
|
run_url_encoded_query(callback, model_name, view_name, result_format, options) {
|
|
3078
|
-
var
|
|
3086
|
+
var _this294 = this;
|
|
3079
3087
|
|
|
3080
3088
|
return _asyncToGenerator(function* () {
|
|
3081
3089
|
model_name = encodeParam(model_name);
|
|
3082
3090
|
view_name = encodeParam(view_name);
|
|
3083
3091
|
result_format = encodeParam(result_format);
|
|
3084
|
-
return
|
|
3092
|
+
return _this294.authStream(callback, 'GET', "/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3085
3093
|
})();
|
|
3086
3094
|
}
|
|
3087
3095
|
|
|
3088
3096
|
merge_query(callback, merge_query_id, fields, options) {
|
|
3089
|
-
var
|
|
3097
|
+
var _this295 = this;
|
|
3090
3098
|
|
|
3091
3099
|
return _asyncToGenerator(function* () {
|
|
3092
3100
|
merge_query_id = encodeParam(merge_query_id);
|
|
3093
|
-
return
|
|
3101
|
+
return _this295.authStream(callback, 'GET', "/merge_queries/".concat(merge_query_id), {
|
|
3094
3102
|
fields
|
|
3095
3103
|
}, null, options);
|
|
3096
3104
|
})();
|
|
3097
3105
|
}
|
|
3098
3106
|
|
|
3099
3107
|
create_merge_query(callback, body, fields, options) {
|
|
3100
|
-
var
|
|
3108
|
+
var _this296 = this;
|
|
3101
3109
|
|
|
3102
3110
|
return _asyncToGenerator(function* () {
|
|
3103
|
-
return
|
|
3111
|
+
return _this296.authStream(callback, 'POST', '/merge_queries', {
|
|
3104
3112
|
fields
|
|
3105
3113
|
}, body, options);
|
|
3106
3114
|
})();
|
|
3107
3115
|
}
|
|
3108
3116
|
|
|
3109
3117
|
all_running_queries(callback, options) {
|
|
3110
|
-
var
|
|
3118
|
+
var _this297 = this;
|
|
3111
3119
|
|
|
3112
3120
|
return _asyncToGenerator(function* () {
|
|
3113
|
-
return
|
|
3121
|
+
return _this297.authStream(callback, 'GET', '/running_queries', null, null, options);
|
|
3114
3122
|
})();
|
|
3115
3123
|
}
|
|
3116
3124
|
|
|
3117
3125
|
kill_query(callback, query_task_id, options) {
|
|
3118
|
-
var
|
|
3126
|
+
var _this298 = this;
|
|
3119
3127
|
|
|
3120
3128
|
return _asyncToGenerator(function* () {
|
|
3121
3129
|
query_task_id = encodeParam(query_task_id);
|
|
3122
|
-
return
|
|
3130
|
+
return _this298.authStream(callback, 'DELETE', "/running_queries/".concat(query_task_id), null, null, options);
|
|
3123
3131
|
})();
|
|
3124
3132
|
}
|
|
3125
3133
|
|
|
3126
3134
|
sql_query(callback, slug, options) {
|
|
3127
|
-
var
|
|
3135
|
+
var _this299 = this;
|
|
3128
3136
|
|
|
3129
3137
|
return _asyncToGenerator(function* () {
|
|
3130
3138
|
slug = encodeParam(slug);
|
|
3131
|
-
return
|
|
3139
|
+
return _this299.authStream(callback, 'GET', "/sql_queries/".concat(slug), null, null, options);
|
|
3132
3140
|
})();
|
|
3133
3141
|
}
|
|
3134
3142
|
|
|
3135
3143
|
create_sql_query(callback, body, options) {
|
|
3136
|
-
var
|
|
3144
|
+
var _this300 = this;
|
|
3137
3145
|
|
|
3138
3146
|
return _asyncToGenerator(function* () {
|
|
3139
|
-
return
|
|
3147
|
+
return _this300.authStream(callback, 'POST', '/sql_queries', null, body, options);
|
|
3140
3148
|
})();
|
|
3141
3149
|
}
|
|
3142
3150
|
|
|
3143
3151
|
run_sql_query(callback, slug, result_format, download, options) {
|
|
3144
|
-
var
|
|
3152
|
+
var _this301 = this;
|
|
3145
3153
|
|
|
3146
3154
|
return _asyncToGenerator(function* () {
|
|
3147
3155
|
slug = encodeParam(slug);
|
|
3148
3156
|
result_format = encodeParam(result_format);
|
|
3149
|
-
return
|
|
3157
|
+
return _this301.authStream(callback, 'POST', "/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
3150
3158
|
download
|
|
3151
3159
|
}, null, options);
|
|
3152
3160
|
})();
|
|
3153
3161
|
}
|
|
3154
3162
|
|
|
3155
3163
|
create_look_render_task(callback, look_id, result_format, width, height, fields, options) {
|
|
3156
|
-
var
|
|
3164
|
+
var _this302 = this;
|
|
3157
3165
|
|
|
3158
3166
|
return _asyncToGenerator(function* () {
|
|
3159
3167
|
look_id = encodeParam(look_id);
|
|
3160
3168
|
result_format = encodeParam(result_format);
|
|
3161
|
-
return
|
|
3169
|
+
return _this302.authStream(callback, 'POST', "/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
3162
3170
|
width,
|
|
3163
3171
|
height,
|
|
3164
3172
|
fields
|
|
@@ -3167,12 +3175,12 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3167
3175
|
}
|
|
3168
3176
|
|
|
3169
3177
|
create_query_render_task(callback, query_id, result_format, width, height, fields, options) {
|
|
3170
|
-
var
|
|
3178
|
+
var _this303 = this;
|
|
3171
3179
|
|
|
3172
3180
|
return _asyncToGenerator(function* () {
|
|
3173
3181
|
query_id = encodeParam(query_id);
|
|
3174
3182
|
result_format = encodeParam(result_format);
|
|
3175
|
-
return
|
|
3183
|
+
return _this303.authStream(callback, 'POST', "/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
3176
3184
|
width,
|
|
3177
3185
|
height,
|
|
3178
3186
|
fields
|
|
@@ -3181,12 +3189,12 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3181
3189
|
}
|
|
3182
3190
|
|
|
3183
3191
|
create_dashboard_render_task(callback, request, options) {
|
|
3184
|
-
var
|
|
3192
|
+
var _this304 = this;
|
|
3185
3193
|
|
|
3186
3194
|
return _asyncToGenerator(function* () {
|
|
3187
3195
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3188
3196
|
request.result_format = encodeParam(request.result_format);
|
|
3189
|
-
return
|
|
3197
|
+
return _this304.authStream(callback, 'POST', "/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
3190
3198
|
width: request.width,
|
|
3191
3199
|
height: request.height,
|
|
3192
3200
|
fields: request.fields,
|
|
@@ -3198,32 +3206,32 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3198
3206
|
}
|
|
3199
3207
|
|
|
3200
3208
|
render_task(callback, render_task_id, fields, options) {
|
|
3201
|
-
var
|
|
3209
|
+
var _this305 = this;
|
|
3202
3210
|
|
|
3203
3211
|
return _asyncToGenerator(function* () {
|
|
3204
3212
|
render_task_id = encodeParam(render_task_id);
|
|
3205
|
-
return
|
|
3213
|
+
return _this305.authStream(callback, 'GET', "/render_tasks/".concat(render_task_id), {
|
|
3206
3214
|
fields
|
|
3207
3215
|
}, null, options);
|
|
3208
3216
|
})();
|
|
3209
3217
|
}
|
|
3210
3218
|
|
|
3211
3219
|
render_task_results(callback, render_task_id, options) {
|
|
3212
|
-
var
|
|
3220
|
+
var _this306 = this;
|
|
3213
3221
|
|
|
3214
3222
|
return _asyncToGenerator(function* () {
|
|
3215
3223
|
render_task_id = encodeParam(render_task_id);
|
|
3216
|
-
return
|
|
3224
|
+
return _this306.authStream(callback, 'GET', "/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3217
3225
|
})();
|
|
3218
3226
|
}
|
|
3219
3227
|
|
|
3220
3228
|
create_dashboard_element_render_task(callback, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3221
|
-
var
|
|
3229
|
+
var _this307 = this;
|
|
3222
3230
|
|
|
3223
3231
|
return _asyncToGenerator(function* () {
|
|
3224
3232
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
3225
3233
|
result_format = encodeParam(result_format);
|
|
3226
|
-
return
|
|
3234
|
+
return _this307.authStream(callback, 'POST', "/render_tasks/dashboard_elements/".concat(dashboard_element_id, "/").concat(result_format), {
|
|
3227
3235
|
width,
|
|
3228
3236
|
height,
|
|
3229
3237
|
fields
|
|
@@ -3232,10 +3240,10 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3232
3240
|
}
|
|
3233
3241
|
|
|
3234
3242
|
search_model_sets(callback, request, options) {
|
|
3235
|
-
var
|
|
3243
|
+
var _this308 = this;
|
|
3236
3244
|
|
|
3237
3245
|
return _asyncToGenerator(function* () {
|
|
3238
|
-
return
|
|
3246
|
+
return _this308.authStream(callback, 'GET', '/model_sets/search', {
|
|
3239
3247
|
fields: request.fields,
|
|
3240
3248
|
limit: request.limit,
|
|
3241
3249
|
offset: request.offset,
|
|
@@ -3250,65 +3258,65 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3250
3258
|
}
|
|
3251
3259
|
|
|
3252
3260
|
model_set(callback, model_set_id, fields, options) {
|
|
3253
|
-
var
|
|
3261
|
+
var _this309 = this;
|
|
3254
3262
|
|
|
3255
3263
|
return _asyncToGenerator(function* () {
|
|
3256
3264
|
model_set_id = encodeParam(model_set_id);
|
|
3257
|
-
return
|
|
3265
|
+
return _this309.authStream(callback, 'GET', "/model_sets/".concat(model_set_id), {
|
|
3258
3266
|
fields
|
|
3259
3267
|
}, null, options);
|
|
3260
3268
|
})();
|
|
3261
3269
|
}
|
|
3262
3270
|
|
|
3263
3271
|
update_model_set(callback, model_set_id, body, options) {
|
|
3264
|
-
var
|
|
3272
|
+
var _this310 = this;
|
|
3265
3273
|
|
|
3266
3274
|
return _asyncToGenerator(function* () {
|
|
3267
3275
|
model_set_id = encodeParam(model_set_id);
|
|
3268
|
-
return
|
|
3276
|
+
return _this310.authStream(callback, 'PATCH', "/model_sets/".concat(model_set_id), null, body, options);
|
|
3269
3277
|
})();
|
|
3270
3278
|
}
|
|
3271
3279
|
|
|
3272
3280
|
delete_model_set(callback, model_set_id, options) {
|
|
3273
|
-
var
|
|
3281
|
+
var _this311 = this;
|
|
3274
3282
|
|
|
3275
3283
|
return _asyncToGenerator(function* () {
|
|
3276
3284
|
model_set_id = encodeParam(model_set_id);
|
|
3277
|
-
return
|
|
3285
|
+
return _this311.authStream(callback, 'DELETE', "/model_sets/".concat(model_set_id), null, null, options);
|
|
3278
3286
|
})();
|
|
3279
3287
|
}
|
|
3280
3288
|
|
|
3281
3289
|
all_model_sets(callback, fields, options) {
|
|
3282
|
-
var
|
|
3290
|
+
var _this312 = this;
|
|
3283
3291
|
|
|
3284
3292
|
return _asyncToGenerator(function* () {
|
|
3285
|
-
return
|
|
3293
|
+
return _this312.authStream(callback, 'GET', '/model_sets', {
|
|
3286
3294
|
fields
|
|
3287
3295
|
}, null, options);
|
|
3288
3296
|
})();
|
|
3289
3297
|
}
|
|
3290
3298
|
|
|
3291
3299
|
create_model_set(callback, body, options) {
|
|
3292
|
-
var
|
|
3300
|
+
var _this313 = this;
|
|
3293
3301
|
|
|
3294
3302
|
return _asyncToGenerator(function* () {
|
|
3295
|
-
return
|
|
3303
|
+
return _this313.authStream(callback, 'POST', '/model_sets', null, body, options);
|
|
3296
3304
|
})();
|
|
3297
3305
|
}
|
|
3298
3306
|
|
|
3299
3307
|
all_permissions(callback, options) {
|
|
3300
|
-
var
|
|
3308
|
+
var _this314 = this;
|
|
3301
3309
|
|
|
3302
3310
|
return _asyncToGenerator(function* () {
|
|
3303
|
-
return
|
|
3311
|
+
return _this314.authStream(callback, 'GET', '/permissions', null, null, options);
|
|
3304
3312
|
})();
|
|
3305
3313
|
}
|
|
3306
3314
|
|
|
3307
3315
|
search_permission_sets(callback, request, options) {
|
|
3308
|
-
var
|
|
3316
|
+
var _this315 = this;
|
|
3309
3317
|
|
|
3310
3318
|
return _asyncToGenerator(function* () {
|
|
3311
|
-
return
|
|
3319
|
+
return _this315.authStream(callback, 'GET', '/permission_sets/search', {
|
|
3312
3320
|
fields: request.fields,
|
|
3313
3321
|
limit: request.limit,
|
|
3314
3322
|
offset: request.offset,
|
|
@@ -3323,57 +3331,57 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3323
3331
|
}
|
|
3324
3332
|
|
|
3325
3333
|
permission_set(callback, permission_set_id, fields, options) {
|
|
3326
|
-
var
|
|
3334
|
+
var _this316 = this;
|
|
3327
3335
|
|
|
3328
3336
|
return _asyncToGenerator(function* () {
|
|
3329
3337
|
permission_set_id = encodeParam(permission_set_id);
|
|
3330
|
-
return
|
|
3338
|
+
return _this316.authStream(callback, 'GET', "/permission_sets/".concat(permission_set_id), {
|
|
3331
3339
|
fields
|
|
3332
3340
|
}, null, options);
|
|
3333
3341
|
})();
|
|
3334
3342
|
}
|
|
3335
3343
|
|
|
3336
3344
|
update_permission_set(callback, permission_set_id, body, options) {
|
|
3337
|
-
var
|
|
3345
|
+
var _this317 = this;
|
|
3338
3346
|
|
|
3339
3347
|
return _asyncToGenerator(function* () {
|
|
3340
3348
|
permission_set_id = encodeParam(permission_set_id);
|
|
3341
|
-
return
|
|
3349
|
+
return _this317.authStream(callback, 'PATCH', "/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3342
3350
|
})();
|
|
3343
3351
|
}
|
|
3344
3352
|
|
|
3345
3353
|
delete_permission_set(callback, permission_set_id, options) {
|
|
3346
|
-
var
|
|
3354
|
+
var _this318 = this;
|
|
3347
3355
|
|
|
3348
3356
|
return _asyncToGenerator(function* () {
|
|
3349
3357
|
permission_set_id = encodeParam(permission_set_id);
|
|
3350
|
-
return
|
|
3358
|
+
return _this318.authStream(callback, 'DELETE', "/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3351
3359
|
})();
|
|
3352
3360
|
}
|
|
3353
3361
|
|
|
3354
3362
|
all_permission_sets(callback, fields, options) {
|
|
3355
|
-
var
|
|
3363
|
+
var _this319 = this;
|
|
3356
3364
|
|
|
3357
3365
|
return _asyncToGenerator(function* () {
|
|
3358
|
-
return
|
|
3366
|
+
return _this319.authStream(callback, 'GET', '/permission_sets', {
|
|
3359
3367
|
fields
|
|
3360
3368
|
}, null, options);
|
|
3361
3369
|
})();
|
|
3362
3370
|
}
|
|
3363
3371
|
|
|
3364
3372
|
create_permission_set(callback, body, options) {
|
|
3365
|
-
var
|
|
3373
|
+
var _this320 = this;
|
|
3366
3374
|
|
|
3367
3375
|
return _asyncToGenerator(function* () {
|
|
3368
|
-
return
|
|
3376
|
+
return _this320.authStream(callback, 'POST', '/permission_sets', null, body, options);
|
|
3369
3377
|
})();
|
|
3370
3378
|
}
|
|
3371
3379
|
|
|
3372
3380
|
all_roles(callback, request, options) {
|
|
3373
|
-
var
|
|
3381
|
+
var _this321 = this;
|
|
3374
3382
|
|
|
3375
3383
|
return _asyncToGenerator(function* () {
|
|
3376
|
-
return
|
|
3384
|
+
return _this321.authStream(callback, 'GET', '/roles', {
|
|
3377
3385
|
fields: request.fields,
|
|
3378
3386
|
ids: request.ids
|
|
3379
3387
|
}, null, options);
|
|
@@ -3381,18 +3389,18 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3381
3389
|
}
|
|
3382
3390
|
|
|
3383
3391
|
create_role(callback, body, options) {
|
|
3384
|
-
var
|
|
3392
|
+
var _this322 = this;
|
|
3385
3393
|
|
|
3386
3394
|
return _asyncToGenerator(function* () {
|
|
3387
|
-
return
|
|
3395
|
+
return _this322.authStream(callback, 'POST', '/roles', null, body, options);
|
|
3388
3396
|
})();
|
|
3389
3397
|
}
|
|
3390
3398
|
|
|
3391
3399
|
search_roles(callback, request, options) {
|
|
3392
|
-
var
|
|
3400
|
+
var _this323 = this;
|
|
3393
3401
|
|
|
3394
3402
|
return _asyncToGenerator(function* () {
|
|
3395
|
-
return
|
|
3403
|
+
return _this323.authStream(callback, 'GET', '/roles/search', {
|
|
3396
3404
|
fields: request.fields,
|
|
3397
3405
|
limit: request.limit,
|
|
3398
3406
|
offset: request.offset,
|
|
@@ -3406,10 +3414,10 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3406
3414
|
}
|
|
3407
3415
|
|
|
3408
3416
|
search_roles_with_user_count(callback, request, options) {
|
|
3409
|
-
var
|
|
3417
|
+
var _this324 = this;
|
|
3410
3418
|
|
|
3411
3419
|
return _asyncToGenerator(function* () {
|
|
3412
|
-
return
|
|
3420
|
+
return _this324.authStream(callback, 'GET', '/roles/search/with_user_count', {
|
|
3413
3421
|
fields: request.fields,
|
|
3414
3422
|
limit: request.limit,
|
|
3415
3423
|
offset: request.offset,
|
|
@@ -3423,58 +3431,58 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3423
3431
|
}
|
|
3424
3432
|
|
|
3425
3433
|
role(callback, role_id, options) {
|
|
3426
|
-
var
|
|
3434
|
+
var _this325 = this;
|
|
3427
3435
|
|
|
3428
3436
|
return _asyncToGenerator(function* () {
|
|
3429
3437
|
role_id = encodeParam(role_id);
|
|
3430
|
-
return
|
|
3438
|
+
return _this325.authStream(callback, 'GET', "/roles/".concat(role_id), null, null, options);
|
|
3431
3439
|
})();
|
|
3432
3440
|
}
|
|
3433
3441
|
|
|
3434
3442
|
update_role(callback, role_id, body, options) {
|
|
3435
|
-
var
|
|
3443
|
+
var _this326 = this;
|
|
3436
3444
|
|
|
3437
3445
|
return _asyncToGenerator(function* () {
|
|
3438
3446
|
role_id = encodeParam(role_id);
|
|
3439
|
-
return
|
|
3447
|
+
return _this326.authStream(callback, 'PATCH', "/roles/".concat(role_id), null, body, options);
|
|
3440
3448
|
})();
|
|
3441
3449
|
}
|
|
3442
3450
|
|
|
3443
3451
|
delete_role(callback, role_id, options) {
|
|
3444
|
-
var
|
|
3452
|
+
var _this327 = this;
|
|
3445
3453
|
|
|
3446
3454
|
return _asyncToGenerator(function* () {
|
|
3447
3455
|
role_id = encodeParam(role_id);
|
|
3448
|
-
return
|
|
3456
|
+
return _this327.authStream(callback, 'DELETE', "/roles/".concat(role_id), null, null, options);
|
|
3449
3457
|
})();
|
|
3450
3458
|
}
|
|
3451
3459
|
|
|
3452
3460
|
role_groups(callback, role_id, fields, options) {
|
|
3453
|
-
var
|
|
3461
|
+
var _this328 = this;
|
|
3454
3462
|
|
|
3455
3463
|
return _asyncToGenerator(function* () {
|
|
3456
3464
|
role_id = encodeParam(role_id);
|
|
3457
|
-
return
|
|
3465
|
+
return _this328.authStream(callback, 'GET', "/roles/".concat(role_id, "/groups"), {
|
|
3458
3466
|
fields
|
|
3459
3467
|
}, null, options);
|
|
3460
3468
|
})();
|
|
3461
3469
|
}
|
|
3462
3470
|
|
|
3463
3471
|
set_role_groups(callback, role_id, body, options) {
|
|
3464
|
-
var
|
|
3472
|
+
var _this329 = this;
|
|
3465
3473
|
|
|
3466
3474
|
return _asyncToGenerator(function* () {
|
|
3467
3475
|
role_id = encodeParam(role_id);
|
|
3468
|
-
return
|
|
3476
|
+
return _this329.authStream(callback, 'PUT', "/roles/".concat(role_id, "/groups"), null, body, options);
|
|
3469
3477
|
})();
|
|
3470
3478
|
}
|
|
3471
3479
|
|
|
3472
3480
|
role_users(callback, request, options) {
|
|
3473
|
-
var
|
|
3481
|
+
var _this330 = this;
|
|
3474
3482
|
|
|
3475
3483
|
return _asyncToGenerator(function* () {
|
|
3476
3484
|
request.role_id = encodeParam(request.role_id);
|
|
3477
|
-
return
|
|
3485
|
+
return _this330.authStream(callback, 'GET', "/roles/".concat(request.role_id, "/users"), {
|
|
3478
3486
|
fields: request.fields,
|
|
3479
3487
|
direct_association_only: request.direct_association_only
|
|
3480
3488
|
}, null, options);
|
|
@@ -3482,59 +3490,59 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3482
3490
|
}
|
|
3483
3491
|
|
|
3484
3492
|
set_role_users(callback, role_id, body, options) {
|
|
3485
|
-
var
|
|
3493
|
+
var _this331 = this;
|
|
3486
3494
|
|
|
3487
3495
|
return _asyncToGenerator(function* () {
|
|
3488
3496
|
role_id = encodeParam(role_id);
|
|
3489
|
-
return
|
|
3497
|
+
return _this331.authStream(callback, 'PUT', "/roles/".concat(role_id, "/users"), null, body, options);
|
|
3490
3498
|
})();
|
|
3491
3499
|
}
|
|
3492
3500
|
|
|
3493
3501
|
scheduled_plans_for_space(callback, space_id, fields, options) {
|
|
3494
|
-
var
|
|
3502
|
+
var _this332 = this;
|
|
3495
3503
|
|
|
3496
3504
|
return _asyncToGenerator(function* () {
|
|
3497
3505
|
space_id = encodeParam(space_id);
|
|
3498
|
-
return
|
|
3506
|
+
return _this332.authStream(callback, 'GET', "/scheduled_plans/space/".concat(space_id), {
|
|
3499
3507
|
fields
|
|
3500
3508
|
}, null, options);
|
|
3501
3509
|
})();
|
|
3502
3510
|
}
|
|
3503
3511
|
|
|
3504
3512
|
scheduled_plan(callback, scheduled_plan_id, fields, options) {
|
|
3505
|
-
var
|
|
3513
|
+
var _this333 = this;
|
|
3506
3514
|
|
|
3507
3515
|
return _asyncToGenerator(function* () {
|
|
3508
3516
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3509
|
-
return
|
|
3517
|
+
return _this333.authStream(callback, 'GET', "/scheduled_plans/".concat(scheduled_plan_id), {
|
|
3510
3518
|
fields
|
|
3511
3519
|
}, null, options);
|
|
3512
3520
|
})();
|
|
3513
3521
|
}
|
|
3514
3522
|
|
|
3515
3523
|
update_scheduled_plan(callback, scheduled_plan_id, body, options) {
|
|
3516
|
-
var
|
|
3524
|
+
var _this334 = this;
|
|
3517
3525
|
|
|
3518
3526
|
return _asyncToGenerator(function* () {
|
|
3519
3527
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3520
|
-
return
|
|
3528
|
+
return _this334.authStream(callback, 'PATCH', "/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
3521
3529
|
})();
|
|
3522
3530
|
}
|
|
3523
3531
|
|
|
3524
3532
|
delete_scheduled_plan(callback, scheduled_plan_id, options) {
|
|
3525
|
-
var
|
|
3533
|
+
var _this335 = this;
|
|
3526
3534
|
|
|
3527
3535
|
return _asyncToGenerator(function* () {
|
|
3528
3536
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3529
|
-
return
|
|
3537
|
+
return _this335.authStream(callback, 'DELETE', "/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
3530
3538
|
})();
|
|
3531
3539
|
}
|
|
3532
3540
|
|
|
3533
3541
|
all_scheduled_plans(callback, request, options) {
|
|
3534
|
-
var
|
|
3542
|
+
var _this336 = this;
|
|
3535
3543
|
|
|
3536
3544
|
return _asyncToGenerator(function* () {
|
|
3537
|
-
return
|
|
3545
|
+
return _this336.authStream(callback, 'GET', '/scheduled_plans', {
|
|
3538
3546
|
user_id: request.user_id,
|
|
3539
3547
|
fields: request.fields,
|
|
3540
3548
|
all_users: request.all_users
|
|
@@ -3543,27 +3551,27 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3543
3551
|
}
|
|
3544
3552
|
|
|
3545
3553
|
create_scheduled_plan(callback, body, options) {
|
|
3546
|
-
var
|
|
3554
|
+
var _this337 = this;
|
|
3547
3555
|
|
|
3548
3556
|
return _asyncToGenerator(function* () {
|
|
3549
|
-
return
|
|
3557
|
+
return _this337.authStream(callback, 'POST', '/scheduled_plans', null, body, options);
|
|
3550
3558
|
})();
|
|
3551
3559
|
}
|
|
3552
3560
|
|
|
3553
3561
|
scheduled_plan_run_once(callback, body, options) {
|
|
3554
|
-
var
|
|
3562
|
+
var _this338 = this;
|
|
3555
3563
|
|
|
3556
3564
|
return _asyncToGenerator(function* () {
|
|
3557
|
-
return
|
|
3565
|
+
return _this338.authStream(callback, 'POST', '/scheduled_plans/run_once', null, body, options);
|
|
3558
3566
|
})();
|
|
3559
3567
|
}
|
|
3560
3568
|
|
|
3561
3569
|
scheduled_plans_for_look(callback, request, options) {
|
|
3562
|
-
var
|
|
3570
|
+
var _this339 = this;
|
|
3563
3571
|
|
|
3564
3572
|
return _asyncToGenerator(function* () {
|
|
3565
3573
|
request.look_id = encodeParam(request.look_id);
|
|
3566
|
-
return
|
|
3574
|
+
return _this339.authStream(callback, 'GET', "/scheduled_plans/look/".concat(request.look_id), {
|
|
3567
3575
|
user_id: request.user_id,
|
|
3568
3576
|
fields: request.fields,
|
|
3569
3577
|
all_users: request.all_users
|
|
@@ -3572,11 +3580,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3572
3580
|
}
|
|
3573
3581
|
|
|
3574
3582
|
scheduled_plans_for_dashboard(callback, request, options) {
|
|
3575
|
-
var
|
|
3583
|
+
var _this340 = this;
|
|
3576
3584
|
|
|
3577
3585
|
return _asyncToGenerator(function* () {
|
|
3578
3586
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3579
|
-
return
|
|
3587
|
+
return _this340.authStream(callback, 'GET', "/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
3580
3588
|
user_id: request.user_id,
|
|
3581
3589
|
all_users: request.all_users,
|
|
3582
3590
|
fields: request.fields
|
|
@@ -3585,11 +3593,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3585
3593
|
}
|
|
3586
3594
|
|
|
3587
3595
|
scheduled_plans_for_lookml_dashboard(callback, request, options) {
|
|
3588
|
-
var
|
|
3596
|
+
var _this341 = this;
|
|
3589
3597
|
|
|
3590
3598
|
return _asyncToGenerator(function* () {
|
|
3591
3599
|
request.lookml_dashboard_id = encodeParam(request.lookml_dashboard_id);
|
|
3592
|
-
return
|
|
3600
|
+
return _this341.authStream(callback, 'GET', "/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
3593
3601
|
user_id: request.user_id,
|
|
3594
3602
|
fields: request.fields,
|
|
3595
3603
|
all_users: request.all_users
|
|
@@ -3598,53 +3606,53 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3598
3606
|
}
|
|
3599
3607
|
|
|
3600
3608
|
scheduled_plan_run_once_by_id(callback, scheduled_plan_id, body, options) {
|
|
3601
|
-
var
|
|
3609
|
+
var _this342 = this;
|
|
3602
3610
|
|
|
3603
3611
|
return _asyncToGenerator(function* () {
|
|
3604
3612
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3605
|
-
return
|
|
3613
|
+
return _this342.authStream(callback, 'POST', "/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
3606
3614
|
})();
|
|
3607
3615
|
}
|
|
3608
3616
|
|
|
3609
3617
|
session(callback, options) {
|
|
3610
|
-
var
|
|
3618
|
+
var _this343 = this;
|
|
3611
3619
|
|
|
3612
3620
|
return _asyncToGenerator(function* () {
|
|
3613
|
-
return
|
|
3621
|
+
return _this343.authStream(callback, 'GET', '/session', null, null, options);
|
|
3614
3622
|
})();
|
|
3615
3623
|
}
|
|
3616
3624
|
|
|
3617
3625
|
update_session(callback, body, options) {
|
|
3618
|
-
var
|
|
3626
|
+
var _this344 = this;
|
|
3619
3627
|
|
|
3620
3628
|
return _asyncToGenerator(function* () {
|
|
3621
|
-
return
|
|
3629
|
+
return _this344.authStream(callback, 'PATCH', '/session', null, body, options);
|
|
3622
3630
|
})();
|
|
3623
3631
|
}
|
|
3624
3632
|
|
|
3625
3633
|
all_themes(callback, fields, options) {
|
|
3626
|
-
var
|
|
3634
|
+
var _this345 = this;
|
|
3627
3635
|
|
|
3628
3636
|
return _asyncToGenerator(function* () {
|
|
3629
|
-
return
|
|
3637
|
+
return _this345.authStream(callback, 'GET', '/themes', {
|
|
3630
3638
|
fields
|
|
3631
3639
|
}, null, options);
|
|
3632
3640
|
})();
|
|
3633
3641
|
}
|
|
3634
3642
|
|
|
3635
3643
|
create_theme(callback, body, options) {
|
|
3636
|
-
var
|
|
3644
|
+
var _this346 = this;
|
|
3637
3645
|
|
|
3638
3646
|
return _asyncToGenerator(function* () {
|
|
3639
|
-
return
|
|
3647
|
+
return _this346.authStream(callback, 'POST', '/themes', null, body, options);
|
|
3640
3648
|
})();
|
|
3641
3649
|
}
|
|
3642
3650
|
|
|
3643
3651
|
search_themes(callback, request, options) {
|
|
3644
|
-
var
|
|
3652
|
+
var _this347 = this;
|
|
3645
3653
|
|
|
3646
3654
|
return _asyncToGenerator(function* () {
|
|
3647
|
-
return
|
|
3655
|
+
return _this347.authStream(callback, 'GET', '/themes/search', {
|
|
3648
3656
|
id: request.id,
|
|
3649
3657
|
name: request.name,
|
|
3650
3658
|
begin_at: request.begin_at,
|
|
@@ -3659,30 +3667,30 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3659
3667
|
}
|
|
3660
3668
|
|
|
3661
3669
|
default_theme(callback, ts, options) {
|
|
3662
|
-
var
|
|
3670
|
+
var _this348 = this;
|
|
3663
3671
|
|
|
3664
3672
|
return _asyncToGenerator(function* () {
|
|
3665
|
-
return
|
|
3673
|
+
return _this348.authStream(callback, 'GET', '/themes/default', {
|
|
3666
3674
|
ts
|
|
3667
3675
|
}, null, options);
|
|
3668
3676
|
})();
|
|
3669
3677
|
}
|
|
3670
3678
|
|
|
3671
3679
|
set_default_theme(callback, name, options) {
|
|
3672
|
-
var
|
|
3680
|
+
var _this349 = this;
|
|
3673
3681
|
|
|
3674
3682
|
return _asyncToGenerator(function* () {
|
|
3675
|
-
return
|
|
3683
|
+
return _this349.authStream(callback, 'PUT', '/themes/default', {
|
|
3676
3684
|
name
|
|
3677
3685
|
}, null, options);
|
|
3678
3686
|
})();
|
|
3679
3687
|
}
|
|
3680
3688
|
|
|
3681
3689
|
active_themes(callback, request, options) {
|
|
3682
|
-
var
|
|
3690
|
+
var _this350 = this;
|
|
3683
3691
|
|
|
3684
3692
|
return _asyncToGenerator(function* () {
|
|
3685
|
-
return
|
|
3693
|
+
return _this350.authStream(callback, 'GET', '/themes/active', {
|
|
3686
3694
|
name: request.name,
|
|
3687
3695
|
ts: request.ts,
|
|
3688
3696
|
fields: request.fields
|
|
@@ -3691,10 +3699,10 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3691
3699
|
}
|
|
3692
3700
|
|
|
3693
3701
|
theme_or_default(callback, name, ts, options) {
|
|
3694
|
-
var
|
|
3702
|
+
var _this351 = this;
|
|
3695
3703
|
|
|
3696
3704
|
return _asyncToGenerator(function* () {
|
|
3697
|
-
return
|
|
3705
|
+
return _this351.authStream(callback, 'GET', '/themes/theme_or_default', {
|
|
3698
3706
|
name,
|
|
3699
3707
|
ts
|
|
3700
3708
|
}, null, options);
|
|
@@ -3702,47 +3710,47 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3702
3710
|
}
|
|
3703
3711
|
|
|
3704
3712
|
validate_theme(callback, body, options) {
|
|
3705
|
-
var
|
|
3713
|
+
var _this352 = this;
|
|
3706
3714
|
|
|
3707
3715
|
return _asyncToGenerator(function* () {
|
|
3708
|
-
return
|
|
3716
|
+
return _this352.authStream(callback, 'POST', '/themes/validate', null, body, options);
|
|
3709
3717
|
})();
|
|
3710
3718
|
}
|
|
3711
3719
|
|
|
3712
3720
|
theme(callback, theme_id, fields, options) {
|
|
3713
|
-
var
|
|
3721
|
+
var _this353 = this;
|
|
3714
3722
|
|
|
3715
3723
|
return _asyncToGenerator(function* () {
|
|
3716
3724
|
theme_id = encodeParam(theme_id);
|
|
3717
|
-
return
|
|
3725
|
+
return _this353.authStream(callback, 'GET', "/themes/".concat(theme_id), {
|
|
3718
3726
|
fields
|
|
3719
3727
|
}, null, options);
|
|
3720
3728
|
})();
|
|
3721
3729
|
}
|
|
3722
3730
|
|
|
3723
3731
|
update_theme(callback, theme_id, body, options) {
|
|
3724
|
-
var
|
|
3732
|
+
var _this354 = this;
|
|
3725
3733
|
|
|
3726
3734
|
return _asyncToGenerator(function* () {
|
|
3727
3735
|
theme_id = encodeParam(theme_id);
|
|
3728
|
-
return
|
|
3736
|
+
return _this354.authStream(callback, 'PATCH', "/themes/".concat(theme_id), null, body, options);
|
|
3729
3737
|
})();
|
|
3730
3738
|
}
|
|
3731
3739
|
|
|
3732
3740
|
delete_theme(callback, theme_id, options) {
|
|
3733
|
-
var
|
|
3741
|
+
var _this355 = this;
|
|
3734
3742
|
|
|
3735
3743
|
return _asyncToGenerator(function* () {
|
|
3736
3744
|
theme_id = encodeParam(theme_id);
|
|
3737
|
-
return
|
|
3745
|
+
return _this355.authStream(callback, 'DELETE', "/themes/".concat(theme_id), null, null, options);
|
|
3738
3746
|
})();
|
|
3739
3747
|
}
|
|
3740
3748
|
|
|
3741
3749
|
search_credentials_email(callback, request, options) {
|
|
3742
|
-
var
|
|
3750
|
+
var _this356 = this;
|
|
3743
3751
|
|
|
3744
3752
|
return _asyncToGenerator(function* () {
|
|
3745
|
-
return
|
|
3753
|
+
return _this356.authStream(callback, 'GET', '/credentials_email/search', {
|
|
3746
3754
|
fields: request.fields,
|
|
3747
3755
|
limit: request.limit,
|
|
3748
3756
|
offset: request.offset,
|
|
@@ -3756,20 +3764,20 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3756
3764
|
}
|
|
3757
3765
|
|
|
3758
3766
|
me(callback, fields, options) {
|
|
3759
|
-
var
|
|
3767
|
+
var _this357 = this;
|
|
3760
3768
|
|
|
3761
3769
|
return _asyncToGenerator(function* () {
|
|
3762
|
-
return
|
|
3770
|
+
return _this357.authStream(callback, 'GET', '/user', {
|
|
3763
3771
|
fields
|
|
3764
3772
|
}, null, options);
|
|
3765
3773
|
})();
|
|
3766
3774
|
}
|
|
3767
3775
|
|
|
3768
3776
|
all_users(callback, request, options) {
|
|
3769
|
-
var
|
|
3777
|
+
var _this358 = this;
|
|
3770
3778
|
|
|
3771
3779
|
return _asyncToGenerator(function* () {
|
|
3772
|
-
return
|
|
3780
|
+
return _this358.authStream(callback, 'GET', '/users', {
|
|
3773
3781
|
fields: request.fields,
|
|
3774
3782
|
page: request.page,
|
|
3775
3783
|
per_page: request.per_page,
|
|
@@ -3782,20 +3790,20 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3782
3790
|
}
|
|
3783
3791
|
|
|
3784
3792
|
create_user(callback, body, fields, options) {
|
|
3785
|
-
var
|
|
3793
|
+
var _this359 = this;
|
|
3786
3794
|
|
|
3787
3795
|
return _asyncToGenerator(function* () {
|
|
3788
|
-
return
|
|
3796
|
+
return _this359.authStream(callback, 'POST', '/users', {
|
|
3789
3797
|
fields
|
|
3790
3798
|
}, body, options);
|
|
3791
3799
|
})();
|
|
3792
3800
|
}
|
|
3793
3801
|
|
|
3794
3802
|
search_users(callback, request, options) {
|
|
3795
|
-
var
|
|
3803
|
+
var _this360 = this;
|
|
3796
3804
|
|
|
3797
3805
|
return _asyncToGenerator(function* () {
|
|
3798
|
-
return
|
|
3806
|
+
return _this360.authStream(callback, 'GET', '/users/search', {
|
|
3799
3807
|
fields: request.fields,
|
|
3800
3808
|
page: request.page,
|
|
3801
3809
|
per_page: request.per_page,
|
|
@@ -3817,11 +3825,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3817
3825
|
}
|
|
3818
3826
|
|
|
3819
3827
|
search_users_names(callback, request, options) {
|
|
3820
|
-
var
|
|
3828
|
+
var _this361 = this;
|
|
3821
3829
|
|
|
3822
3830
|
return _asyncToGenerator(function* () {
|
|
3823
3831
|
request.pattern = encodeParam(request.pattern);
|
|
3824
|
-
return
|
|
3832
|
+
return _this361.authStream(callback, 'GET', "/users/search/names/".concat(request.pattern), {
|
|
3825
3833
|
fields: request.fields,
|
|
3826
3834
|
page: request.page,
|
|
3827
3835
|
per_page: request.per_page,
|
|
@@ -3839,337 +3847,337 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
3839
3847
|
}
|
|
3840
3848
|
|
|
3841
3849
|
user(callback, user_id, fields, options) {
|
|
3842
|
-
var
|
|
3850
|
+
var _this362 = this;
|
|
3843
3851
|
|
|
3844
3852
|
return _asyncToGenerator(function* () {
|
|
3845
3853
|
user_id = encodeParam(user_id);
|
|
3846
|
-
return
|
|
3854
|
+
return _this362.authStream(callback, 'GET', "/users/".concat(user_id), {
|
|
3847
3855
|
fields
|
|
3848
3856
|
}, null, options);
|
|
3849
3857
|
})();
|
|
3850
3858
|
}
|
|
3851
3859
|
|
|
3852
3860
|
update_user(callback, user_id, body, fields, options) {
|
|
3853
|
-
var
|
|
3861
|
+
var _this363 = this;
|
|
3854
3862
|
|
|
3855
3863
|
return _asyncToGenerator(function* () {
|
|
3856
3864
|
user_id = encodeParam(user_id);
|
|
3857
|
-
return
|
|
3865
|
+
return _this363.authStream(callback, 'PATCH', "/users/".concat(user_id), {
|
|
3858
3866
|
fields
|
|
3859
3867
|
}, body, options);
|
|
3860
3868
|
})();
|
|
3861
3869
|
}
|
|
3862
3870
|
|
|
3863
3871
|
delete_user(callback, user_id, options) {
|
|
3864
|
-
var
|
|
3872
|
+
var _this364 = this;
|
|
3865
3873
|
|
|
3866
3874
|
return _asyncToGenerator(function* () {
|
|
3867
3875
|
user_id = encodeParam(user_id);
|
|
3868
|
-
return
|
|
3876
|
+
return _this364.authStream(callback, 'DELETE', "/users/".concat(user_id), null, null, options);
|
|
3869
3877
|
})();
|
|
3870
3878
|
}
|
|
3871
3879
|
|
|
3872
3880
|
user_for_credential(callback, credential_type, credential_id, fields, options) {
|
|
3873
|
-
var
|
|
3881
|
+
var _this365 = this;
|
|
3874
3882
|
|
|
3875
3883
|
return _asyncToGenerator(function* () {
|
|
3876
3884
|
credential_type = encodeParam(credential_type);
|
|
3877
3885
|
credential_id = encodeParam(credential_id);
|
|
3878
|
-
return
|
|
3886
|
+
return _this365.authStream(callback, 'GET', "/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
3879
3887
|
fields
|
|
3880
3888
|
}, null, options);
|
|
3881
3889
|
})();
|
|
3882
3890
|
}
|
|
3883
3891
|
|
|
3884
3892
|
user_credentials_email(callback, user_id, fields, options) {
|
|
3885
|
-
var
|
|
3893
|
+
var _this366 = this;
|
|
3886
3894
|
|
|
3887
3895
|
return _asyncToGenerator(function* () {
|
|
3888
3896
|
user_id = encodeParam(user_id);
|
|
3889
|
-
return
|
|
3897
|
+
return _this366.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_email"), {
|
|
3890
3898
|
fields
|
|
3891
3899
|
}, null, options);
|
|
3892
3900
|
})();
|
|
3893
3901
|
}
|
|
3894
3902
|
|
|
3895
3903
|
create_user_credentials_email(callback, user_id, body, fields, options) {
|
|
3896
|
-
var
|
|
3904
|
+
var _this367 = this;
|
|
3897
3905
|
|
|
3898
3906
|
return _asyncToGenerator(function* () {
|
|
3899
3907
|
user_id = encodeParam(user_id);
|
|
3900
|
-
return
|
|
3908
|
+
return _this367.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_email"), {
|
|
3901
3909
|
fields
|
|
3902
3910
|
}, body, options);
|
|
3903
3911
|
})();
|
|
3904
3912
|
}
|
|
3905
3913
|
|
|
3906
3914
|
update_user_credentials_email(callback, user_id, body, fields, options) {
|
|
3907
|
-
var
|
|
3915
|
+
var _this368 = this;
|
|
3908
3916
|
|
|
3909
3917
|
return _asyncToGenerator(function* () {
|
|
3910
3918
|
user_id = encodeParam(user_id);
|
|
3911
|
-
return
|
|
3919
|
+
return _this368.authStream(callback, 'PATCH', "/users/".concat(user_id, "/credentials_email"), {
|
|
3912
3920
|
fields
|
|
3913
3921
|
}, body, options);
|
|
3914
3922
|
})();
|
|
3915
3923
|
}
|
|
3916
3924
|
|
|
3917
3925
|
delete_user_credentials_email(callback, user_id, options) {
|
|
3918
|
-
var
|
|
3926
|
+
var _this369 = this;
|
|
3919
3927
|
|
|
3920
3928
|
return _asyncToGenerator(function* () {
|
|
3921
3929
|
user_id = encodeParam(user_id);
|
|
3922
|
-
return
|
|
3930
|
+
return _this369.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
3923
3931
|
})();
|
|
3924
3932
|
}
|
|
3925
3933
|
|
|
3926
3934
|
user_credentials_totp(callback, user_id, fields, options) {
|
|
3927
|
-
var
|
|
3935
|
+
var _this370 = this;
|
|
3928
3936
|
|
|
3929
3937
|
return _asyncToGenerator(function* () {
|
|
3930
3938
|
user_id = encodeParam(user_id);
|
|
3931
|
-
return
|
|
3939
|
+
return _this370.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_totp"), {
|
|
3932
3940
|
fields
|
|
3933
3941
|
}, null, options);
|
|
3934
3942
|
})();
|
|
3935
3943
|
}
|
|
3936
3944
|
|
|
3937
3945
|
create_user_credentials_totp(callback, user_id, body, fields, options) {
|
|
3938
|
-
var
|
|
3946
|
+
var _this371 = this;
|
|
3939
3947
|
|
|
3940
3948
|
return _asyncToGenerator(function* () {
|
|
3941
3949
|
user_id = encodeParam(user_id);
|
|
3942
|
-
return
|
|
3950
|
+
return _this371.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_totp"), {
|
|
3943
3951
|
fields
|
|
3944
3952
|
}, body, options);
|
|
3945
3953
|
})();
|
|
3946
3954
|
}
|
|
3947
3955
|
|
|
3948
3956
|
delete_user_credentials_totp(callback, user_id, options) {
|
|
3949
|
-
var
|
|
3957
|
+
var _this372 = this;
|
|
3950
3958
|
|
|
3951
3959
|
return _asyncToGenerator(function* () {
|
|
3952
3960
|
user_id = encodeParam(user_id);
|
|
3953
|
-
return
|
|
3961
|
+
return _this372.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
3954
3962
|
})();
|
|
3955
3963
|
}
|
|
3956
3964
|
|
|
3957
3965
|
user_credentials_ldap(callback, user_id, fields, options) {
|
|
3958
|
-
var
|
|
3966
|
+
var _this373 = this;
|
|
3959
3967
|
|
|
3960
3968
|
return _asyncToGenerator(function* () {
|
|
3961
3969
|
user_id = encodeParam(user_id);
|
|
3962
|
-
return
|
|
3970
|
+
return _this373.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_ldap"), {
|
|
3963
3971
|
fields
|
|
3964
3972
|
}, null, options);
|
|
3965
3973
|
})();
|
|
3966
3974
|
}
|
|
3967
3975
|
|
|
3968
3976
|
delete_user_credentials_ldap(callback, user_id, options) {
|
|
3969
|
-
var
|
|
3977
|
+
var _this374 = this;
|
|
3970
3978
|
|
|
3971
3979
|
return _asyncToGenerator(function* () {
|
|
3972
3980
|
user_id = encodeParam(user_id);
|
|
3973
|
-
return
|
|
3981
|
+
return _this374.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
3974
3982
|
})();
|
|
3975
3983
|
}
|
|
3976
3984
|
|
|
3977
3985
|
user_credentials_google(callback, user_id, fields, options) {
|
|
3978
|
-
var
|
|
3986
|
+
var _this375 = this;
|
|
3979
3987
|
|
|
3980
3988
|
return _asyncToGenerator(function* () {
|
|
3981
3989
|
user_id = encodeParam(user_id);
|
|
3982
|
-
return
|
|
3990
|
+
return _this375.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_google"), {
|
|
3983
3991
|
fields
|
|
3984
3992
|
}, null, options);
|
|
3985
3993
|
})();
|
|
3986
3994
|
}
|
|
3987
3995
|
|
|
3988
3996
|
delete_user_credentials_google(callback, user_id, options) {
|
|
3989
|
-
var
|
|
3997
|
+
var _this376 = this;
|
|
3990
3998
|
|
|
3991
3999
|
return _asyncToGenerator(function* () {
|
|
3992
4000
|
user_id = encodeParam(user_id);
|
|
3993
|
-
return
|
|
4001
|
+
return _this376.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
3994
4002
|
})();
|
|
3995
4003
|
}
|
|
3996
4004
|
|
|
3997
4005
|
user_credentials_saml(callback, user_id, fields, options) {
|
|
3998
|
-
var
|
|
4006
|
+
var _this377 = this;
|
|
3999
4007
|
|
|
4000
4008
|
return _asyncToGenerator(function* () {
|
|
4001
4009
|
user_id = encodeParam(user_id);
|
|
4002
|
-
return
|
|
4010
|
+
return _this377.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_saml"), {
|
|
4003
4011
|
fields
|
|
4004
4012
|
}, null, options);
|
|
4005
4013
|
})();
|
|
4006
4014
|
}
|
|
4007
4015
|
|
|
4008
4016
|
delete_user_credentials_saml(callback, user_id, options) {
|
|
4009
|
-
var
|
|
4017
|
+
var _this378 = this;
|
|
4010
4018
|
|
|
4011
4019
|
return _asyncToGenerator(function* () {
|
|
4012
4020
|
user_id = encodeParam(user_id);
|
|
4013
|
-
return
|
|
4021
|
+
return _this378.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4014
4022
|
})();
|
|
4015
4023
|
}
|
|
4016
4024
|
|
|
4017
4025
|
user_credentials_oidc(callback, user_id, fields, options) {
|
|
4018
|
-
var
|
|
4026
|
+
var _this379 = this;
|
|
4019
4027
|
|
|
4020
4028
|
return _asyncToGenerator(function* () {
|
|
4021
4029
|
user_id = encodeParam(user_id);
|
|
4022
|
-
return
|
|
4030
|
+
return _this379.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_oidc"), {
|
|
4023
4031
|
fields
|
|
4024
4032
|
}, null, options);
|
|
4025
4033
|
})();
|
|
4026
4034
|
}
|
|
4027
4035
|
|
|
4028
4036
|
delete_user_credentials_oidc(callback, user_id, options) {
|
|
4029
|
-
var
|
|
4037
|
+
var _this380 = this;
|
|
4030
4038
|
|
|
4031
4039
|
return _asyncToGenerator(function* () {
|
|
4032
4040
|
user_id = encodeParam(user_id);
|
|
4033
|
-
return
|
|
4041
|
+
return _this380.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4034
4042
|
})();
|
|
4035
4043
|
}
|
|
4036
4044
|
|
|
4037
4045
|
user_credentials_api3(callback, user_id, credentials_api3_id, fields, options) {
|
|
4038
|
-
var
|
|
4046
|
+
var _this381 = this;
|
|
4039
4047
|
|
|
4040
4048
|
return _asyncToGenerator(function* () {
|
|
4041
4049
|
user_id = encodeParam(user_id);
|
|
4042
4050
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4043
|
-
return
|
|
4051
|
+
return _this381.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4044
4052
|
fields
|
|
4045
4053
|
}, null, options);
|
|
4046
4054
|
})();
|
|
4047
4055
|
}
|
|
4048
4056
|
|
|
4049
4057
|
delete_user_credentials_api3(callback, user_id, credentials_api3_id, options) {
|
|
4050
|
-
var
|
|
4058
|
+
var _this382 = this;
|
|
4051
4059
|
|
|
4052
4060
|
return _asyncToGenerator(function* () {
|
|
4053
4061
|
user_id = encodeParam(user_id);
|
|
4054
4062
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4055
|
-
return
|
|
4063
|
+
return _this382.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4056
4064
|
})();
|
|
4057
4065
|
}
|
|
4058
4066
|
|
|
4059
4067
|
all_user_credentials_api3s(callback, user_id, fields, options) {
|
|
4060
|
-
var
|
|
4068
|
+
var _this383 = this;
|
|
4061
4069
|
|
|
4062
4070
|
return _asyncToGenerator(function* () {
|
|
4063
4071
|
user_id = encodeParam(user_id);
|
|
4064
|
-
return
|
|
4072
|
+
return _this383.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_api3"), {
|
|
4065
4073
|
fields
|
|
4066
4074
|
}, null, options);
|
|
4067
4075
|
})();
|
|
4068
4076
|
}
|
|
4069
4077
|
|
|
4070
4078
|
create_user_credentials_api3(callback, user_id, fields, options) {
|
|
4071
|
-
var
|
|
4079
|
+
var _this384 = this;
|
|
4072
4080
|
|
|
4073
4081
|
return _asyncToGenerator(function* () {
|
|
4074
4082
|
user_id = encodeParam(user_id);
|
|
4075
|
-
return
|
|
4083
|
+
return _this384.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_api3"), {
|
|
4076
4084
|
fields
|
|
4077
4085
|
}, null, options);
|
|
4078
4086
|
})();
|
|
4079
4087
|
}
|
|
4080
4088
|
|
|
4081
4089
|
user_credentials_embed(callback, user_id, credentials_embed_id, fields, options) {
|
|
4082
|
-
var
|
|
4090
|
+
var _this385 = this;
|
|
4083
4091
|
|
|
4084
4092
|
return _asyncToGenerator(function* () {
|
|
4085
4093
|
user_id = encodeParam(user_id);
|
|
4086
4094
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4087
|
-
return
|
|
4095
|
+
return _this385.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
4088
4096
|
fields
|
|
4089
4097
|
}, null, options);
|
|
4090
4098
|
})();
|
|
4091
4099
|
}
|
|
4092
4100
|
|
|
4093
4101
|
delete_user_credentials_embed(callback, user_id, credentials_embed_id, options) {
|
|
4094
|
-
var
|
|
4102
|
+
var _this386 = this;
|
|
4095
4103
|
|
|
4096
4104
|
return _asyncToGenerator(function* () {
|
|
4097
4105
|
user_id = encodeParam(user_id);
|
|
4098
4106
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4099
|
-
return
|
|
4107
|
+
return _this386.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4100
4108
|
})();
|
|
4101
4109
|
}
|
|
4102
4110
|
|
|
4103
4111
|
all_user_credentials_embeds(callback, user_id, fields, options) {
|
|
4104
|
-
var
|
|
4112
|
+
var _this387 = this;
|
|
4105
4113
|
|
|
4106
4114
|
return _asyncToGenerator(function* () {
|
|
4107
4115
|
user_id = encodeParam(user_id);
|
|
4108
|
-
return
|
|
4116
|
+
return _this387.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_embed"), {
|
|
4109
4117
|
fields
|
|
4110
4118
|
}, null, options);
|
|
4111
4119
|
})();
|
|
4112
4120
|
}
|
|
4113
4121
|
|
|
4114
4122
|
user_credentials_looker_openid(callback, user_id, fields, options) {
|
|
4115
|
-
var
|
|
4123
|
+
var _this388 = this;
|
|
4116
4124
|
|
|
4117
4125
|
return _asyncToGenerator(function* () {
|
|
4118
4126
|
user_id = encodeParam(user_id);
|
|
4119
|
-
return
|
|
4127
|
+
return _this388.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
4120
4128
|
fields
|
|
4121
4129
|
}, null, options);
|
|
4122
4130
|
})();
|
|
4123
4131
|
}
|
|
4124
4132
|
|
|
4125
4133
|
delete_user_credentials_looker_openid(callback, user_id, options) {
|
|
4126
|
-
var
|
|
4134
|
+
var _this389 = this;
|
|
4127
4135
|
|
|
4128
4136
|
return _asyncToGenerator(function* () {
|
|
4129
4137
|
user_id = encodeParam(user_id);
|
|
4130
|
-
return
|
|
4138
|
+
return _this389.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4131
4139
|
})();
|
|
4132
4140
|
}
|
|
4133
4141
|
|
|
4134
4142
|
user_session(callback, user_id, session_id, fields, options) {
|
|
4135
|
-
var
|
|
4143
|
+
var _this390 = this;
|
|
4136
4144
|
|
|
4137
4145
|
return _asyncToGenerator(function* () {
|
|
4138
4146
|
user_id = encodeParam(user_id);
|
|
4139
4147
|
session_id = encodeParam(session_id);
|
|
4140
|
-
return
|
|
4148
|
+
return _this390.authStream(callback, 'GET', "/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
4141
4149
|
fields
|
|
4142
4150
|
}, null, options);
|
|
4143
4151
|
})();
|
|
4144
4152
|
}
|
|
4145
4153
|
|
|
4146
4154
|
delete_user_session(callback, user_id, session_id, options) {
|
|
4147
|
-
var
|
|
4155
|
+
var _this391 = this;
|
|
4148
4156
|
|
|
4149
4157
|
return _asyncToGenerator(function* () {
|
|
4150
4158
|
user_id = encodeParam(user_id);
|
|
4151
4159
|
session_id = encodeParam(session_id);
|
|
4152
|
-
return
|
|
4160
|
+
return _this391.authStream(callback, 'DELETE', "/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4153
4161
|
})();
|
|
4154
4162
|
}
|
|
4155
4163
|
|
|
4156
4164
|
all_user_sessions(callback, user_id, fields, options) {
|
|
4157
|
-
var
|
|
4165
|
+
var _this392 = this;
|
|
4158
4166
|
|
|
4159
4167
|
return _asyncToGenerator(function* () {
|
|
4160
4168
|
user_id = encodeParam(user_id);
|
|
4161
|
-
return
|
|
4169
|
+
return _this392.authStream(callback, 'GET', "/users/".concat(user_id, "/sessions"), {
|
|
4162
4170
|
fields
|
|
4163
4171
|
}, null, options);
|
|
4164
4172
|
})();
|
|
4165
4173
|
}
|
|
4166
4174
|
|
|
4167
4175
|
create_user_credentials_email_password_reset(callback, request, options) {
|
|
4168
|
-
var
|
|
4176
|
+
var _this393 = this;
|
|
4169
4177
|
|
|
4170
4178
|
return _asyncToGenerator(function* () {
|
|
4171
4179
|
request.user_id = encodeParam(request.user_id);
|
|
4172
|
-
return
|
|
4180
|
+
return _this393.authStream(callback, 'POST', "/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
4173
4181
|
expires: request.expires,
|
|
4174
4182
|
fields: request.fields
|
|
4175
4183
|
}, null, options);
|
|
@@ -4177,11 +4185,11 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
4177
4185
|
}
|
|
4178
4186
|
|
|
4179
4187
|
user_roles(callback, request, options) {
|
|
4180
|
-
var
|
|
4188
|
+
var _this394 = this;
|
|
4181
4189
|
|
|
4182
4190
|
return _asyncToGenerator(function* () {
|
|
4183
4191
|
request.user_id = encodeParam(request.user_id);
|
|
4184
|
-
return
|
|
4192
|
+
return _this394.authStream(callback, 'GET', "/users/".concat(request.user_id, "/roles"), {
|
|
4185
4193
|
fields: request.fields,
|
|
4186
4194
|
direct_association_only: request.direct_association_only
|
|
4187
4195
|
}, null, options);
|
|
@@ -4189,22 +4197,22 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
4189
4197
|
}
|
|
4190
4198
|
|
|
4191
4199
|
set_user_roles(callback, user_id, body, fields, options) {
|
|
4192
|
-
var
|
|
4200
|
+
var _this395 = this;
|
|
4193
4201
|
|
|
4194
4202
|
return _asyncToGenerator(function* () {
|
|
4195
4203
|
user_id = encodeParam(user_id);
|
|
4196
|
-
return
|
|
4204
|
+
return _this395.authStream(callback, 'PUT', "/users/".concat(user_id, "/roles"), {
|
|
4197
4205
|
fields
|
|
4198
4206
|
}, body, options);
|
|
4199
4207
|
})();
|
|
4200
4208
|
}
|
|
4201
4209
|
|
|
4202
4210
|
user_attribute_user_values(callback, request, options) {
|
|
4203
|
-
var
|
|
4211
|
+
var _this396 = this;
|
|
4204
4212
|
|
|
4205
4213
|
return _asyncToGenerator(function* () {
|
|
4206
4214
|
request.user_id = encodeParam(request.user_id);
|
|
4207
|
-
return
|
|
4215
|
+
return _this396.authStream(callback, 'GET', "/users/".concat(request.user_id, "/attribute_values"), {
|
|
4208
4216
|
fields: request.fields,
|
|
4209
4217
|
user_attribute_ids: request.user_attribute_ids,
|
|
4210
4218
|
all_values: request.all_values,
|
|
@@ -4214,60 +4222,60 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
4214
4222
|
}
|
|
4215
4223
|
|
|
4216
4224
|
set_user_attribute_user_value(callback, user_id, user_attribute_id, body, options) {
|
|
4217
|
-
var
|
|
4225
|
+
var _this397 = this;
|
|
4218
4226
|
|
|
4219
4227
|
return _asyncToGenerator(function* () {
|
|
4220
4228
|
user_id = encodeParam(user_id);
|
|
4221
4229
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4222
|
-
return
|
|
4230
|
+
return _this397.authStream(callback, 'PATCH', "/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4223
4231
|
})();
|
|
4224
4232
|
}
|
|
4225
4233
|
|
|
4226
4234
|
delete_user_attribute_user_value(callback, user_id, user_attribute_id, options) {
|
|
4227
|
-
var
|
|
4235
|
+
var _this398 = this;
|
|
4228
4236
|
|
|
4229
4237
|
return _asyncToGenerator(function* () {
|
|
4230
4238
|
user_id = encodeParam(user_id);
|
|
4231
4239
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4232
|
-
return
|
|
4240
|
+
return _this398.authStream(callback, 'DELETE', "/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4233
4241
|
})();
|
|
4234
4242
|
}
|
|
4235
4243
|
|
|
4236
4244
|
send_user_credentials_email_password_reset(callback, user_id, fields, options) {
|
|
4237
|
-
var
|
|
4245
|
+
var _this399 = this;
|
|
4238
4246
|
|
|
4239
4247
|
return _asyncToGenerator(function* () {
|
|
4240
4248
|
user_id = encodeParam(user_id);
|
|
4241
|
-
return
|
|
4249
|
+
return _this399.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4242
4250
|
fields
|
|
4243
4251
|
}, null, options);
|
|
4244
4252
|
})();
|
|
4245
4253
|
}
|
|
4246
4254
|
|
|
4247
4255
|
wipeout_user_emails(callback, user_id, body, fields, options) {
|
|
4248
|
-
var
|
|
4256
|
+
var _this400 = this;
|
|
4249
4257
|
|
|
4250
4258
|
return _asyncToGenerator(function* () {
|
|
4251
4259
|
user_id = encodeParam(user_id);
|
|
4252
|
-
return
|
|
4260
|
+
return _this400.authStream(callback, 'POST', "/users/".concat(user_id, "/update_emails"), {
|
|
4253
4261
|
fields
|
|
4254
4262
|
}, body, options);
|
|
4255
4263
|
})();
|
|
4256
4264
|
}
|
|
4257
4265
|
|
|
4258
4266
|
create_embed_user(callback, body, options) {
|
|
4259
|
-
var
|
|
4267
|
+
var _this401 = this;
|
|
4260
4268
|
|
|
4261
4269
|
return _asyncToGenerator(function* () {
|
|
4262
|
-
return
|
|
4270
|
+
return _this401.authStream(callback, 'POST', '/users/embed_user', null, body, options);
|
|
4263
4271
|
})();
|
|
4264
4272
|
}
|
|
4265
4273
|
|
|
4266
4274
|
all_user_attributes(callback, request, options) {
|
|
4267
|
-
var
|
|
4275
|
+
var _this402 = this;
|
|
4268
4276
|
|
|
4269
4277
|
return _asyncToGenerator(function* () {
|
|
4270
|
-
return
|
|
4278
|
+
return _this402.authStream(callback, 'GET', '/user_attributes', {
|
|
4271
4279
|
fields: request.fields,
|
|
4272
4280
|
sorts: request.sorts
|
|
4273
4281
|
}, null, options);
|
|
@@ -4275,80 +4283,80 @@ export class Looker40SDKStream extends APIMethods {
|
|
|
4275
4283
|
}
|
|
4276
4284
|
|
|
4277
4285
|
create_user_attribute(callback, body, fields, options) {
|
|
4278
|
-
var
|
|
4286
|
+
var _this403 = this;
|
|
4279
4287
|
|
|
4280
4288
|
return _asyncToGenerator(function* () {
|
|
4281
|
-
return
|
|
4289
|
+
return _this403.authStream(callback, 'POST', '/user_attributes', {
|
|
4282
4290
|
fields
|
|
4283
4291
|
}, body, options);
|
|
4284
4292
|
})();
|
|
4285
4293
|
}
|
|
4286
4294
|
|
|
4287
4295
|
user_attribute(callback, user_attribute_id, fields, options) {
|
|
4288
|
-
var
|
|
4296
|
+
var _this404 = this;
|
|
4289
4297
|
|
|
4290
4298
|
return _asyncToGenerator(function* () {
|
|
4291
4299
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4292
|
-
return
|
|
4300
|
+
return _this404.authStream(callback, 'GET', "/user_attributes/".concat(user_attribute_id), {
|
|
4293
4301
|
fields
|
|
4294
4302
|
}, null, options);
|
|
4295
4303
|
})();
|
|
4296
4304
|
}
|
|
4297
4305
|
|
|
4298
4306
|
update_user_attribute(callback, user_attribute_id, body, fields, options) {
|
|
4299
|
-
var
|
|
4307
|
+
var _this405 = this;
|
|
4300
4308
|
|
|
4301
4309
|
return _asyncToGenerator(function* () {
|
|
4302
4310
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4303
|
-
return
|
|
4311
|
+
return _this405.authStream(callback, 'PATCH', "/user_attributes/".concat(user_attribute_id), {
|
|
4304
4312
|
fields
|
|
4305
4313
|
}, body, options);
|
|
4306
4314
|
})();
|
|
4307
4315
|
}
|
|
4308
4316
|
|
|
4309
4317
|
delete_user_attribute(callback, user_attribute_id, options) {
|
|
4310
|
-
var
|
|
4318
|
+
var _this406 = this;
|
|
4311
4319
|
|
|
4312
4320
|
return _asyncToGenerator(function* () {
|
|
4313
4321
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4314
|
-
return
|
|
4322
|
+
return _this406.authStream(callback, 'DELETE', "/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
4315
4323
|
})();
|
|
4316
4324
|
}
|
|
4317
4325
|
|
|
4318
4326
|
all_user_attribute_group_values(callback, user_attribute_id, fields, options) {
|
|
4319
|
-
var
|
|
4327
|
+
var _this407 = this;
|
|
4320
4328
|
|
|
4321
4329
|
return _asyncToGenerator(function* () {
|
|
4322
4330
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4323
|
-
return
|
|
4331
|
+
return _this407.authStream(callback, 'GET', "/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
4324
4332
|
fields
|
|
4325
4333
|
}, null, options);
|
|
4326
4334
|
})();
|
|
4327
4335
|
}
|
|
4328
4336
|
|
|
4329
4337
|
set_user_attribute_group_values(callback, user_attribute_id, body, options) {
|
|
4330
|
-
var
|
|
4338
|
+
var _this408 = this;
|
|
4331
4339
|
|
|
4332
4340
|
return _asyncToGenerator(function* () {
|
|
4333
4341
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4334
|
-
return
|
|
4342
|
+
return _this408.authStream(callback, 'POST', "/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
4335
4343
|
})();
|
|
4336
4344
|
}
|
|
4337
4345
|
|
|
4338
4346
|
all_workspaces(callback, options) {
|
|
4339
|
-
var
|
|
4347
|
+
var _this409 = this;
|
|
4340
4348
|
|
|
4341
4349
|
return _asyncToGenerator(function* () {
|
|
4342
|
-
return
|
|
4350
|
+
return _this409.authStream(callback, 'GET', '/workspaces', null, null, options);
|
|
4343
4351
|
})();
|
|
4344
4352
|
}
|
|
4345
4353
|
|
|
4346
4354
|
workspace(callback, workspace_id, options) {
|
|
4347
|
-
var
|
|
4355
|
+
var _this410 = this;
|
|
4348
4356
|
|
|
4349
4357
|
return _asyncToGenerator(function* () {
|
|
4350
4358
|
workspace_id = encodeParam(workspace_id);
|
|
4351
|
-
return
|
|
4359
|
+
return _this410.authStream(callback, 'GET', "/workspaces/".concat(workspace_id), null, null, options);
|
|
4352
4360
|
})();
|
|
4353
4361
|
}
|
|
4354
4362
|
|