@looker/sdk 21.20.0 → 22.2.0

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