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