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