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