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