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