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