@looker/sdk 26.6.0 → 26.8.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 +21 -0
- package/lib/4.0/funcs.d.ts +1 -1
- package/lib/4.0/funcs.js +1393 -1398
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +1 -1
- package/lib/4.0/methods.js +928 -933
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +1 -1
- package/lib/4.0/methodsInterface.js +4 -0
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +46 -3
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +1 -1
- package/lib/4.0/streams.js +928 -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 +1393 -1398
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +928 -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 +928 -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 +3 -3
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
|
-
}, options);
|
|
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,
|
|
@@ -1355,92 +1353,92 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1355
1353
|
})();
|
|
1356
1354
|
}
|
|
1357
1355
|
create_agent(callback, body, fields, options) {
|
|
1358
|
-
var
|
|
1356
|
+
var _this169 = this;
|
|
1359
1357
|
return _asyncToGenerator(function* () {
|
|
1360
|
-
return
|
|
1358
|
+
return _this169.authStream(callback, 'POST', '/agents', {
|
|
1361
1359
|
fields
|
|
1362
1360
|
}, body, options);
|
|
1363
1361
|
})();
|
|
1364
1362
|
}
|
|
1365
1363
|
delete_agent(callback, id, fields, options) {
|
|
1366
|
-
var
|
|
1364
|
+
var _this170 = this;
|
|
1367
1365
|
return _asyncToGenerator(function* () {
|
|
1368
|
-
return
|
|
1366
|
+
return _this170.authStream(callback, 'DELETE', '/agents', {
|
|
1369
1367
|
id,
|
|
1370
1368
|
fields
|
|
1371
1369
|
}, null, options);
|
|
1372
1370
|
})();
|
|
1373
1371
|
}
|
|
1374
1372
|
get_agent(callback, agent_id, fields, options) {
|
|
1375
|
-
var
|
|
1373
|
+
var _this171 = this;
|
|
1376
1374
|
return _asyncToGenerator(function* () {
|
|
1377
1375
|
agent_id = (0, _sdkRtl.encodeParam)(agent_id);
|
|
1378
|
-
return
|
|
1376
|
+
return _this171.authStream(callback, 'GET', "/agents/".concat(agent_id), {
|
|
1379
1377
|
fields
|
|
1380
1378
|
}, null, options);
|
|
1381
1379
|
})();
|
|
1382
1380
|
}
|
|
1383
1381
|
update_agent(callback, agent_id, body, fields, options) {
|
|
1384
|
-
var
|
|
1382
|
+
var _this172 = this;
|
|
1385
1383
|
return _asyncToGenerator(function* () {
|
|
1386
1384
|
agent_id = (0, _sdkRtl.encodeParam)(agent_id);
|
|
1387
|
-
return
|
|
1385
|
+
return _this172.authStream(callback, 'PATCH', "/agents/".concat(agent_id), {
|
|
1388
1386
|
fields
|
|
1389
1387
|
}, body, options);
|
|
1390
1388
|
})();
|
|
1391
1389
|
}
|
|
1392
1390
|
all_conversation_messages(callback, conversation_id, fields, options) {
|
|
1393
|
-
var
|
|
1391
|
+
var _this173 = this;
|
|
1394
1392
|
return _asyncToGenerator(function* () {
|
|
1395
1393
|
conversation_id = (0, _sdkRtl.encodeParam)(conversation_id);
|
|
1396
|
-
return
|
|
1394
|
+
return _this173.authStream(callback, 'GET', "/conversations/".concat(conversation_id, "/messages"), {
|
|
1397
1395
|
fields
|
|
1398
1396
|
}, null, options);
|
|
1399
1397
|
})();
|
|
1400
1398
|
}
|
|
1401
1399
|
create_conversation_message(callback, conversation_id, body, fields, options) {
|
|
1402
|
-
var
|
|
1400
|
+
var _this174 = this;
|
|
1403
1401
|
return _asyncToGenerator(function* () {
|
|
1404
1402
|
conversation_id = (0, _sdkRtl.encodeParam)(conversation_id);
|
|
1405
|
-
return
|
|
1403
|
+
return _this174.authStream(callback, 'POST', "/conversations/".concat(conversation_id, "/messages"), {
|
|
1406
1404
|
fields
|
|
1407
1405
|
}, body, options);
|
|
1408
1406
|
})();
|
|
1409
1407
|
}
|
|
1410
1408
|
delete_conversation_message(callback, conversation_id, id, fields, options) {
|
|
1411
|
-
var
|
|
1409
|
+
var _this175 = this;
|
|
1412
1410
|
return _asyncToGenerator(function* () {
|
|
1413
1411
|
conversation_id = (0, _sdkRtl.encodeParam)(conversation_id);
|
|
1414
|
-
return
|
|
1412
|
+
return _this175.authStream(callback, 'DELETE', "/conversations/".concat(conversation_id, "/messages"), {
|
|
1415
1413
|
id,
|
|
1416
1414
|
fields
|
|
1417
1415
|
}, null, options);
|
|
1418
1416
|
})();
|
|
1419
1417
|
}
|
|
1420
1418
|
get_conversation_message(callback, conversation_id, message_id, fields, options) {
|
|
1421
|
-
var
|
|
1419
|
+
var _this176 = this;
|
|
1422
1420
|
return _asyncToGenerator(function* () {
|
|
1423
1421
|
conversation_id = (0, _sdkRtl.encodeParam)(conversation_id);
|
|
1424
1422
|
message_id = (0, _sdkRtl.encodeParam)(message_id);
|
|
1425
|
-
return
|
|
1423
|
+
return _this176.authStream(callback, 'GET', "/conversations/".concat(conversation_id, "/messages/").concat(message_id), {
|
|
1426
1424
|
fields
|
|
1427
1425
|
}, null, options);
|
|
1428
1426
|
})();
|
|
1429
1427
|
}
|
|
1430
1428
|
update_conversation_message(callback, conversation_id, message_id, body, fields, options) {
|
|
1431
|
-
var
|
|
1429
|
+
var _this177 = this;
|
|
1432
1430
|
return _asyncToGenerator(function* () {
|
|
1433
1431
|
conversation_id = (0, _sdkRtl.encodeParam)(conversation_id);
|
|
1434
1432
|
message_id = (0, _sdkRtl.encodeParam)(message_id);
|
|
1435
|
-
return
|
|
1433
|
+
return _this177.authStream(callback, 'PATCH', "/conversations/".concat(conversation_id, "/messages/").concat(message_id), {
|
|
1436
1434
|
fields
|
|
1437
1435
|
}, body, options);
|
|
1438
1436
|
})();
|
|
1439
1437
|
}
|
|
1440
1438
|
search_conversations(callback, request, options) {
|
|
1441
|
-
var
|
|
1439
|
+
var _this178 = this;
|
|
1442
1440
|
return _asyncToGenerator(function* () {
|
|
1443
|
-
return
|
|
1441
|
+
return _this178.authStream(callback, 'GET', '/conversations/search', {
|
|
1444
1442
|
id: request.id,
|
|
1445
1443
|
name: request.name,
|
|
1446
1444
|
agent_id: request.agent_id,
|
|
@@ -1455,64 +1453,64 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1455
1453
|
})();
|
|
1456
1454
|
}
|
|
1457
1455
|
create_conversation(callback, body, fields, options) {
|
|
1458
|
-
var
|
|
1456
|
+
var _this179 = this;
|
|
1459
1457
|
return _asyncToGenerator(function* () {
|
|
1460
|
-
return
|
|
1458
|
+
return _this179.authStream(callback, 'POST', '/conversations', {
|
|
1461
1459
|
fields
|
|
1462
1460
|
}, body, options);
|
|
1463
1461
|
})();
|
|
1464
1462
|
}
|
|
1465
1463
|
delete_conversation(callback, id, fields, options) {
|
|
1466
|
-
var
|
|
1464
|
+
var _this180 = this;
|
|
1467
1465
|
return _asyncToGenerator(function* () {
|
|
1468
|
-
return
|
|
1466
|
+
return _this180.authStream(callback, 'DELETE', '/conversations', {
|
|
1469
1467
|
id,
|
|
1470
1468
|
fields
|
|
1471
1469
|
}, null, options);
|
|
1472
1470
|
})();
|
|
1473
1471
|
}
|
|
1474
1472
|
get_conversation(callback, conversation_id, fields, options) {
|
|
1475
|
-
var
|
|
1473
|
+
var _this181 = this;
|
|
1476
1474
|
return _asyncToGenerator(function* () {
|
|
1477
1475
|
conversation_id = (0, _sdkRtl.encodeParam)(conversation_id);
|
|
1478
|
-
return
|
|
1476
|
+
return _this181.authStream(callback, 'GET', "/conversations/".concat(conversation_id), {
|
|
1479
1477
|
fields
|
|
1480
1478
|
}, null, options);
|
|
1481
1479
|
})();
|
|
1482
1480
|
}
|
|
1483
1481
|
update_conversation(callback, conversation_id, body, fields, options) {
|
|
1484
|
-
var
|
|
1482
|
+
var _this182 = this;
|
|
1485
1483
|
return _asyncToGenerator(function* () {
|
|
1486
1484
|
conversation_id = (0, _sdkRtl.encodeParam)(conversation_id);
|
|
1487
|
-
return
|
|
1485
|
+
return _this182.authStream(callback, 'PATCH', "/conversations/".concat(conversation_id), {
|
|
1488
1486
|
fields
|
|
1489
1487
|
}, body, options);
|
|
1490
1488
|
})();
|
|
1491
1489
|
}
|
|
1492
1490
|
conversational_analytics_chat(callback, body, options) {
|
|
1493
|
-
var
|
|
1491
|
+
var _this183 = this;
|
|
1494
1492
|
return _asyncToGenerator(function* () {
|
|
1495
|
-
return
|
|
1493
|
+
return _this183.authStream(callback, 'POST', '/conversational_analytics/chat', null, body, options);
|
|
1496
1494
|
})();
|
|
1497
1495
|
}
|
|
1498
1496
|
all_dashboards(callback, fields, options) {
|
|
1499
|
-
var
|
|
1497
|
+
var _this184 = this;
|
|
1500
1498
|
return _asyncToGenerator(function* () {
|
|
1501
|
-
return
|
|
1499
|
+
return _this184.authStream(callback, 'GET', '/dashboards', {
|
|
1502
1500
|
fields
|
|
1503
1501
|
}, null, options);
|
|
1504
1502
|
})();
|
|
1505
1503
|
}
|
|
1506
1504
|
create_dashboard(callback, body, options) {
|
|
1507
|
-
var
|
|
1505
|
+
var _this185 = this;
|
|
1508
1506
|
return _asyncToGenerator(function* () {
|
|
1509
|
-
return
|
|
1507
|
+
return _this185.authStream(callback, 'POST', '/dashboards', null, body, options);
|
|
1510
1508
|
})();
|
|
1511
1509
|
}
|
|
1512
1510
|
search_dashboards(callback, request, options) {
|
|
1513
|
-
var
|
|
1511
|
+
var _this186 = this;
|
|
1514
1512
|
return _asyncToGenerator(function* () {
|
|
1515
|
-
return
|
|
1513
|
+
return _this186.authStream(callback, 'GET', '/dashboards/search', {
|
|
1516
1514
|
id: request.id,
|
|
1517
1515
|
slug: request.slug,
|
|
1518
1516
|
title: request.title,
|
|
@@ -1537,59 +1535,59 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1537
1535
|
})();
|
|
1538
1536
|
}
|
|
1539
1537
|
import_lookml_dashboard(callback, lookml_dashboard_id, space_id, body, raw_locale, options) {
|
|
1540
|
-
var
|
|
1538
|
+
var _this187 = this;
|
|
1541
1539
|
return _asyncToGenerator(function* () {
|
|
1542
1540
|
lookml_dashboard_id = (0, _sdkRtl.encodeParam)(lookml_dashboard_id);
|
|
1543
1541
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
1544
|
-
return
|
|
1542
|
+
return _this187.authStream(callback, 'POST', "/dashboards/".concat(lookml_dashboard_id, "/import/").concat(space_id), {
|
|
1545
1543
|
raw_locale
|
|
1546
1544
|
}, body, options);
|
|
1547
1545
|
})();
|
|
1548
1546
|
}
|
|
1549
1547
|
sync_lookml_dashboard(callback, request, options) {
|
|
1550
|
-
var
|
|
1548
|
+
var _this188 = this;
|
|
1551
1549
|
return _asyncToGenerator(function* () {
|
|
1552
1550
|
request.lookml_dashboard_id = (0, _sdkRtl.encodeParam)(request.lookml_dashboard_id);
|
|
1553
|
-
return
|
|
1551
|
+
return _this188.authStream(callback, 'PATCH', "/dashboards/".concat(request.lookml_dashboard_id, "/sync"), {
|
|
1554
1552
|
raw_locale: request.raw_locale,
|
|
1555
1553
|
dashboard_ids: request.dashboard_ids
|
|
1556
1554
|
}, null, options);
|
|
1557
1555
|
})();
|
|
1558
1556
|
}
|
|
1559
1557
|
dashboard(callback, dashboard_id, fields, options) {
|
|
1560
|
-
var
|
|
1558
|
+
var _this189 = this;
|
|
1561
1559
|
return _asyncToGenerator(function* () {
|
|
1562
1560
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1563
|
-
return
|
|
1561
|
+
return _this189.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id), {
|
|
1564
1562
|
fields
|
|
1565
1563
|
}, null, options);
|
|
1566
1564
|
})();
|
|
1567
1565
|
}
|
|
1568
1566
|
update_dashboard(callback, dashboard_id, body, options) {
|
|
1569
|
-
var
|
|
1567
|
+
var _this190 = this;
|
|
1570
1568
|
return _asyncToGenerator(function* () {
|
|
1571
1569
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1572
|
-
return
|
|
1570
|
+
return _this190.authStream(callback, 'PATCH', "/dashboards/".concat(dashboard_id), null, body, options);
|
|
1573
1571
|
})();
|
|
1574
1572
|
}
|
|
1575
1573
|
delete_dashboard(callback, dashboard_id, options) {
|
|
1576
|
-
var
|
|
1574
|
+
var _this191 = this;
|
|
1577
1575
|
return _asyncToGenerator(function* () {
|
|
1578
1576
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1579
|
-
return
|
|
1577
|
+
return _this191.authStream(callback, 'DELETE', "/dashboards/".concat(dashboard_id), null, null, options);
|
|
1580
1578
|
})();
|
|
1581
1579
|
}
|
|
1582
1580
|
dashboard_aggregate_table_lookml(callback, dashboard_id, options) {
|
|
1583
|
-
var
|
|
1581
|
+
var _this192 = this;
|
|
1584
1582
|
return _asyncToGenerator(function* () {
|
|
1585
1583
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1586
|
-
return
|
|
1584
|
+
return _this192.authStream(callback, 'GET', "/dashboards/aggregate_table_lookml/".concat(dashboard_id), null, null, options);
|
|
1587
1585
|
})();
|
|
1588
1586
|
}
|
|
1589
1587
|
search_lookml_dashboards(callback, request, options) {
|
|
1590
|
-
var
|
|
1588
|
+
var _this193 = this;
|
|
1591
1589
|
return _asyncToGenerator(function* () {
|
|
1592
|
-
return
|
|
1590
|
+
return _this193.authStream(callback, 'GET', '/dashboards/lookml/search', {
|
|
1593
1591
|
folder_id: request.folder_id,
|
|
1594
1592
|
title: request.title,
|
|
1595
1593
|
content_favorite_id: request.content_favorite_id,
|
|
@@ -1601,60 +1599,60 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1601
1599
|
})();
|
|
1602
1600
|
}
|
|
1603
1601
|
dashboard_lookml(callback, dashboard_id, options) {
|
|
1604
|
-
var
|
|
1602
|
+
var _this194 = this;
|
|
1605
1603
|
return _asyncToGenerator(function* () {
|
|
1606
1604
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1607
|
-
return
|
|
1605
|
+
return _this194.authStream(callback, 'GET', "/dashboards/lookml/".concat(dashboard_id), null, null, options);
|
|
1608
1606
|
})();
|
|
1609
1607
|
}
|
|
1610
1608
|
move_dashboard(callback, dashboard_id, folder_id, options) {
|
|
1611
|
-
var
|
|
1609
|
+
var _this195 = this;
|
|
1612
1610
|
return _asyncToGenerator(function* () {
|
|
1613
1611
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1614
|
-
return
|
|
1612
|
+
return _this195.authStream(callback, 'PATCH', "/dashboards/".concat(dashboard_id, "/move"), {
|
|
1615
1613
|
folder_id
|
|
1616
1614
|
}, null, options);
|
|
1617
1615
|
})();
|
|
1618
1616
|
}
|
|
1619
1617
|
import_dashboard_from_lookml(callback, body, options) {
|
|
1620
|
-
var
|
|
1618
|
+
var _this196 = this;
|
|
1621
1619
|
return _asyncToGenerator(function* () {
|
|
1622
|
-
return
|
|
1620
|
+
return _this196.authStream(callback, 'POST', '/dashboards/lookml', null, body, options);
|
|
1623
1621
|
})();
|
|
1624
1622
|
}
|
|
1625
1623
|
create_dashboard_from_lookml(callback, body, options) {
|
|
1626
|
-
var
|
|
1624
|
+
var _this197 = this;
|
|
1627
1625
|
return _asyncToGenerator(function* () {
|
|
1628
|
-
return
|
|
1626
|
+
return _this197.authStream(callback, 'POST', '/dashboards/from_lookml', null, body, options);
|
|
1629
1627
|
})();
|
|
1630
1628
|
}
|
|
1631
1629
|
copy_dashboard(callback, dashboard_id, folder_id, options) {
|
|
1632
|
-
var
|
|
1630
|
+
var _this198 = this;
|
|
1633
1631
|
return _asyncToGenerator(function* () {
|
|
1634
1632
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1635
|
-
return
|
|
1633
|
+
return _this198.authStream(callback, 'POST', "/dashboards/".concat(dashboard_id, "/copy"), {
|
|
1636
1634
|
folder_id
|
|
1637
1635
|
}, null, options);
|
|
1638
1636
|
})();
|
|
1639
1637
|
}
|
|
1640
1638
|
update_dashboard_certification(callback, dashboard_id, body, options) {
|
|
1641
|
-
var
|
|
1639
|
+
var _this199 = this;
|
|
1642
1640
|
return _asyncToGenerator(function* () {
|
|
1643
1641
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1644
|
-
return
|
|
1642
|
+
return _this199.authStream(callback, 'PATCH', "/dashboards/".concat(dashboard_id, "/certification"), null, body, options);
|
|
1645
1643
|
})();
|
|
1646
1644
|
}
|
|
1647
1645
|
update_lookml_certification(callback, dashboard_id, body, options) {
|
|
1648
|
-
var
|
|
1646
|
+
var _this200 = this;
|
|
1649
1647
|
return _asyncToGenerator(function* () {
|
|
1650
1648
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1651
|
-
return
|
|
1649
|
+
return _this200.authStream(callback, 'PATCH', "/dashboards/lookml/".concat(dashboard_id, "/certification"), null, body, options);
|
|
1652
1650
|
})();
|
|
1653
1651
|
}
|
|
1654
1652
|
search_dashboard_elements(callback, request, options) {
|
|
1655
|
-
var
|
|
1653
|
+
var _this201 = this;
|
|
1656
1654
|
return _asyncToGenerator(function* () {
|
|
1657
|
-
return
|
|
1655
|
+
return _this201.authStream(callback, 'GET', '/dashboard_elements/search', {
|
|
1658
1656
|
dashboard_id: request.dashboard_id,
|
|
1659
1657
|
look_id: request.look_id,
|
|
1660
1658
|
title: request.title,
|
|
@@ -1666,217 +1664,217 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1666
1664
|
})();
|
|
1667
1665
|
}
|
|
1668
1666
|
dashboard_element(callback, dashboard_element_id, fields, options) {
|
|
1669
|
-
var
|
|
1667
|
+
var _this202 = this;
|
|
1670
1668
|
return _asyncToGenerator(function* () {
|
|
1671
1669
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
1672
|
-
return
|
|
1670
|
+
return _this202.authStream(callback, 'GET', "/dashboard_elements/".concat(dashboard_element_id), {
|
|
1673
1671
|
fields
|
|
1674
1672
|
}, null, options);
|
|
1675
1673
|
})();
|
|
1676
1674
|
}
|
|
1677
1675
|
update_dashboard_element(callback, dashboard_element_id, body, fields, options) {
|
|
1678
|
-
var
|
|
1676
|
+
var _this203 = this;
|
|
1679
1677
|
return _asyncToGenerator(function* () {
|
|
1680
1678
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
1681
|
-
return
|
|
1679
|
+
return _this203.authStream(callback, 'PATCH', "/dashboard_elements/".concat(dashboard_element_id), {
|
|
1682
1680
|
fields
|
|
1683
1681
|
}, body, options);
|
|
1684
1682
|
})();
|
|
1685
1683
|
}
|
|
1686
1684
|
delete_dashboard_element(callback, dashboard_element_id, options) {
|
|
1687
|
-
var
|
|
1685
|
+
var _this204 = this;
|
|
1688
1686
|
return _asyncToGenerator(function* () {
|
|
1689
1687
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
1690
|
-
return
|
|
1688
|
+
return _this204.authStream(callback, 'DELETE', "/dashboard_elements/".concat(dashboard_element_id), null, null, options);
|
|
1691
1689
|
})();
|
|
1692
1690
|
}
|
|
1693
1691
|
dashboard_dashboard_elements(callback, dashboard_id, fields, options) {
|
|
1694
|
-
var
|
|
1692
|
+
var _this205 = this;
|
|
1695
1693
|
return _asyncToGenerator(function* () {
|
|
1696
1694
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1697
|
-
return
|
|
1695
|
+
return _this205.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_elements"), {
|
|
1698
1696
|
fields
|
|
1699
1697
|
}, null, options);
|
|
1700
1698
|
})();
|
|
1701
1699
|
}
|
|
1702
1700
|
create_dashboard_element(callback, request, options) {
|
|
1703
|
-
var
|
|
1701
|
+
var _this206 = this;
|
|
1704
1702
|
return _asyncToGenerator(function* () {
|
|
1705
|
-
return
|
|
1703
|
+
return _this206.authStream(callback, 'POST', '/dashboard_elements', {
|
|
1706
1704
|
fields: request.fields,
|
|
1707
1705
|
apply_filters: request.apply_filters
|
|
1708
1706
|
}, request.body, options);
|
|
1709
1707
|
})();
|
|
1710
1708
|
}
|
|
1711
1709
|
dashboard_filter(callback, dashboard_filter_id, fields, options) {
|
|
1712
|
-
var
|
|
1710
|
+
var _this207 = this;
|
|
1713
1711
|
return _asyncToGenerator(function* () {
|
|
1714
1712
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
1715
|
-
return
|
|
1713
|
+
return _this207.authStream(callback, 'GET', "/dashboard_filters/".concat(dashboard_filter_id), {
|
|
1716
1714
|
fields
|
|
1717
1715
|
}, null, options);
|
|
1718
1716
|
})();
|
|
1719
1717
|
}
|
|
1720
1718
|
update_dashboard_filter(callback, dashboard_filter_id, body, fields, options) {
|
|
1721
|
-
var
|
|
1719
|
+
var _this208 = this;
|
|
1722
1720
|
return _asyncToGenerator(function* () {
|
|
1723
1721
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
1724
|
-
return
|
|
1722
|
+
return _this208.authStream(callback, 'PATCH', "/dashboard_filters/".concat(dashboard_filter_id), {
|
|
1725
1723
|
fields
|
|
1726
1724
|
}, body, options);
|
|
1727
1725
|
})();
|
|
1728
1726
|
}
|
|
1729
1727
|
delete_dashboard_filter(callback, dashboard_filter_id, options) {
|
|
1730
|
-
var
|
|
1728
|
+
var _this209 = this;
|
|
1731
1729
|
return _asyncToGenerator(function* () {
|
|
1732
1730
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
1733
|
-
return
|
|
1731
|
+
return _this209.authStream(callback, 'DELETE', "/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
|
|
1734
1732
|
})();
|
|
1735
1733
|
}
|
|
1736
1734
|
dashboard_dashboard_filters(callback, dashboard_id, fields, options) {
|
|
1737
|
-
var
|
|
1735
|
+
var _this210 = this;
|
|
1738
1736
|
return _asyncToGenerator(function* () {
|
|
1739
1737
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1740
|
-
return
|
|
1738
|
+
return _this210.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_filters"), {
|
|
1741
1739
|
fields
|
|
1742
1740
|
}, null, options);
|
|
1743
1741
|
})();
|
|
1744
1742
|
}
|
|
1745
1743
|
create_dashboard_filter(callback, body, fields, options) {
|
|
1746
|
-
var
|
|
1744
|
+
var _this211 = this;
|
|
1747
1745
|
return _asyncToGenerator(function* () {
|
|
1748
|
-
return
|
|
1746
|
+
return _this211.authStream(callback, 'POST', '/dashboard_filters', {
|
|
1749
1747
|
fields
|
|
1750
1748
|
}, body, options);
|
|
1751
1749
|
})();
|
|
1752
1750
|
}
|
|
1753
1751
|
dashboard_layout_component(callback, dashboard_layout_component_id, fields, options) {
|
|
1754
|
-
var
|
|
1752
|
+
var _this212 = this;
|
|
1755
1753
|
return _asyncToGenerator(function* () {
|
|
1756
1754
|
dashboard_layout_component_id = (0, _sdkRtl.encodeParam)(dashboard_layout_component_id);
|
|
1757
|
-
return
|
|
1755
|
+
return _this212.authStream(callback, 'GET', "/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
1758
1756
|
fields
|
|
1759
1757
|
}, null, options);
|
|
1760
1758
|
})();
|
|
1761
1759
|
}
|
|
1762
1760
|
update_dashboard_layout_component(callback, dashboard_layout_component_id, body, fields, options) {
|
|
1763
|
-
var
|
|
1761
|
+
var _this213 = this;
|
|
1764
1762
|
return _asyncToGenerator(function* () {
|
|
1765
1763
|
dashboard_layout_component_id = (0, _sdkRtl.encodeParam)(dashboard_layout_component_id);
|
|
1766
|
-
return
|
|
1764
|
+
return _this213.authStream(callback, 'PATCH', "/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
1767
1765
|
fields
|
|
1768
1766
|
}, body, options);
|
|
1769
1767
|
})();
|
|
1770
1768
|
}
|
|
1771
1769
|
dashboard_layout_dashboard_layout_components(callback, dashboard_layout_id, fields, options) {
|
|
1772
|
-
var
|
|
1770
|
+
var _this214 = this;
|
|
1773
1771
|
return _asyncToGenerator(function* () {
|
|
1774
1772
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1775
|
-
return
|
|
1773
|
+
return _this214.authStream(callback, 'GET', "/dashboard_layouts/".concat(dashboard_layout_id, "/dashboard_layout_components"), {
|
|
1776
1774
|
fields
|
|
1777
1775
|
}, null, options);
|
|
1778
1776
|
})();
|
|
1779
1777
|
}
|
|
1780
1778
|
dashboard_layout(callback, dashboard_layout_id, fields, options) {
|
|
1781
|
-
var
|
|
1779
|
+
var _this215 = this;
|
|
1782
1780
|
return _asyncToGenerator(function* () {
|
|
1783
1781
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1784
|
-
return
|
|
1782
|
+
return _this215.authStream(callback, 'GET', "/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
1785
1783
|
fields
|
|
1786
1784
|
}, null, options);
|
|
1787
1785
|
})();
|
|
1788
1786
|
}
|
|
1789
1787
|
update_dashboard_layout(callback, dashboard_layout_id, body, fields, options) {
|
|
1790
|
-
var
|
|
1788
|
+
var _this216 = this;
|
|
1791
1789
|
return _asyncToGenerator(function* () {
|
|
1792
1790
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1793
|
-
return
|
|
1791
|
+
return _this216.authStream(callback, 'PATCH', "/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
1794
1792
|
fields
|
|
1795
1793
|
}, body, options);
|
|
1796
1794
|
})();
|
|
1797
1795
|
}
|
|
1798
1796
|
delete_dashboard_layout(callback, dashboard_layout_id, options) {
|
|
1799
|
-
var
|
|
1797
|
+
var _this217 = this;
|
|
1800
1798
|
return _asyncToGenerator(function* () {
|
|
1801
1799
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1802
|
-
return
|
|
1800
|
+
return _this217.authStream(callback, 'DELETE', "/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
|
|
1803
1801
|
})();
|
|
1804
1802
|
}
|
|
1805
1803
|
dashboard_dashboard_layouts(callback, dashboard_id, fields, options) {
|
|
1806
|
-
var
|
|
1804
|
+
var _this218 = this;
|
|
1807
1805
|
return _asyncToGenerator(function* () {
|
|
1808
1806
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1809
|
-
return
|
|
1807
|
+
return _this218.authStream(callback, 'GET', "/dashboards/".concat(dashboard_id, "/dashboard_layouts"), {
|
|
1810
1808
|
fields
|
|
1811
1809
|
}, null, options);
|
|
1812
1810
|
})();
|
|
1813
1811
|
}
|
|
1814
1812
|
create_dashboard_layout(callback, body, fields, options) {
|
|
1815
|
-
var
|
|
1813
|
+
var _this219 = this;
|
|
1816
1814
|
return _asyncToGenerator(function* () {
|
|
1817
|
-
return
|
|
1815
|
+
return _this219.authStream(callback, 'POST', '/dashboard_layouts', {
|
|
1818
1816
|
fields
|
|
1819
1817
|
}, body, options);
|
|
1820
1818
|
})();
|
|
1821
1819
|
}
|
|
1822
1820
|
perform_data_action(callback, body, options) {
|
|
1823
|
-
var
|
|
1821
|
+
var _this220 = this;
|
|
1824
1822
|
return _asyncToGenerator(function* () {
|
|
1825
|
-
return
|
|
1823
|
+
return _this220.authStream(callback, 'POST', '/data_actions', null, body, options);
|
|
1826
1824
|
})();
|
|
1827
1825
|
}
|
|
1828
1826
|
fetch_remote_data_action_form(callback, body, options) {
|
|
1829
|
-
var
|
|
1827
|
+
var _this221 = this;
|
|
1830
1828
|
return _asyncToGenerator(function* () {
|
|
1831
|
-
return
|
|
1829
|
+
return _this221.authStream(callback, 'POST', '/data_actions/form', null, body, options);
|
|
1832
1830
|
})();
|
|
1833
1831
|
}
|
|
1834
1832
|
all_datagroups(callback, options) {
|
|
1835
|
-
var
|
|
1833
|
+
var _this222 = this;
|
|
1836
1834
|
return _asyncToGenerator(function* () {
|
|
1837
|
-
return
|
|
1835
|
+
return _this222.authStream(callback, 'GET', '/datagroups', null, null, options);
|
|
1838
1836
|
})();
|
|
1839
1837
|
}
|
|
1840
1838
|
datagroup(callback, datagroup_id, options) {
|
|
1841
|
-
var
|
|
1839
|
+
var _this223 = this;
|
|
1842
1840
|
return _asyncToGenerator(function* () {
|
|
1843
1841
|
datagroup_id = (0, _sdkRtl.encodeParam)(datagroup_id);
|
|
1844
|
-
return
|
|
1842
|
+
return _this223.authStream(callback, 'GET', "/datagroups/".concat(datagroup_id), null, null, options);
|
|
1845
1843
|
})();
|
|
1846
1844
|
}
|
|
1847
1845
|
update_datagroup(callback, datagroup_id, body, options) {
|
|
1848
|
-
var
|
|
1846
|
+
var _this224 = this;
|
|
1849
1847
|
return _asyncToGenerator(function* () {
|
|
1850
1848
|
datagroup_id = (0, _sdkRtl.encodeParam)(datagroup_id);
|
|
1851
|
-
return
|
|
1849
|
+
return _this224.authStream(callback, 'PATCH', "/datagroups/".concat(datagroup_id), null, body, options);
|
|
1852
1850
|
})();
|
|
1853
1851
|
}
|
|
1854
1852
|
graph_derived_tables_for_model(callback, request, options) {
|
|
1855
|
-
var
|
|
1853
|
+
var _this225 = this;
|
|
1856
1854
|
return _asyncToGenerator(function* () {
|
|
1857
1855
|
request.model = (0, _sdkRtl.encodeParam)(request.model);
|
|
1858
|
-
return
|
|
1856
|
+
return _this225.authStream(callback, 'GET', "/derived_table/graph/model/".concat(request.model), {
|
|
1859
1857
|
format: request.format,
|
|
1860
1858
|
color: request.color
|
|
1861
1859
|
}, null, options);
|
|
1862
1860
|
})();
|
|
1863
1861
|
}
|
|
1864
1862
|
graph_derived_tables_for_view(callback, request, options) {
|
|
1865
|
-
var
|
|
1863
|
+
var _this226 = this;
|
|
1866
1864
|
return _asyncToGenerator(function* () {
|
|
1867
1865
|
request.view = (0, _sdkRtl.encodeParam)(request.view);
|
|
1868
|
-
return
|
|
1866
|
+
return _this226.authStream(callback, 'GET', "/derived_table/graph/view/".concat(request.view), {
|
|
1869
1867
|
models: request.models,
|
|
1870
1868
|
workspace: request.workspace
|
|
1871
1869
|
}, null, options);
|
|
1872
1870
|
})();
|
|
1873
1871
|
}
|
|
1874
1872
|
start_pdt_build(callback, request, options) {
|
|
1875
|
-
var
|
|
1873
|
+
var _this227 = this;
|
|
1876
1874
|
return _asyncToGenerator(function* () {
|
|
1877
1875
|
request.model_name = (0, _sdkRtl.encodeParam)(request.model_name);
|
|
1878
1876
|
request.view_name = (0, _sdkRtl.encodeParam)(request.view_name);
|
|
1879
|
-
return
|
|
1877
|
+
return _this227.authStream(callback, 'GET', "/derived_table/".concat(request.model_name, "/").concat(request.view_name, "/start"), {
|
|
1880
1878
|
force_rebuild: request.force_rebuild,
|
|
1881
1879
|
force_full_incremental: request.force_full_incremental,
|
|
1882
1880
|
workspace: request.workspace,
|
|
@@ -1885,25 +1883,25 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1885
1883
|
})();
|
|
1886
1884
|
}
|
|
1887
1885
|
check_pdt_build(callback, materialization_id, options) {
|
|
1888
|
-
var
|
|
1886
|
+
var _this228 = this;
|
|
1889
1887
|
return _asyncToGenerator(function* () {
|
|
1890
1888
|
materialization_id = (0, _sdkRtl.encodeParam)(materialization_id);
|
|
1891
|
-
return
|
|
1889
|
+
return _this228.authStream(callback, 'GET', "/derived_table/".concat(materialization_id, "/status"), null, null, options);
|
|
1892
1890
|
})();
|
|
1893
1891
|
}
|
|
1894
1892
|
stop_pdt_build(callback, materialization_id, source, options) {
|
|
1895
|
-
var
|
|
1893
|
+
var _this229 = this;
|
|
1896
1894
|
return _asyncToGenerator(function* () {
|
|
1897
1895
|
materialization_id = (0, _sdkRtl.encodeParam)(materialization_id);
|
|
1898
|
-
return
|
|
1896
|
+
return _this229.authStream(callback, 'GET', "/derived_table/".concat(materialization_id, "/stop"), {
|
|
1899
1897
|
source
|
|
1900
1898
|
}, null, options);
|
|
1901
1899
|
})();
|
|
1902
1900
|
}
|
|
1903
1901
|
search_folders(callback, request, options) {
|
|
1904
|
-
var
|
|
1902
|
+
var _this230 = this;
|
|
1905
1903
|
return _asyncToGenerator(function* () {
|
|
1906
|
-
return
|
|
1904
|
+
return _this230.authStream(callback, 'GET', '/folders/search', {
|
|
1907
1905
|
fields: request.fields,
|
|
1908
1906
|
page: request.page,
|
|
1909
1907
|
per_page: request.per_page,
|
|
@@ -1921,47 +1919,47 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1921
1919
|
})();
|
|
1922
1920
|
}
|
|
1923
1921
|
folder(callback, folder_id, fields, options) {
|
|
1924
|
-
var
|
|
1922
|
+
var _this231 = this;
|
|
1925
1923
|
return _asyncToGenerator(function* () {
|
|
1926
1924
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1927
|
-
return
|
|
1925
|
+
return _this231.authStream(callback, 'GET', "/folders/".concat(folder_id), {
|
|
1928
1926
|
fields
|
|
1929
1927
|
}, null, options);
|
|
1930
1928
|
})();
|
|
1931
1929
|
}
|
|
1932
1930
|
update_folder(callback, folder_id, body, options) {
|
|
1933
|
-
var
|
|
1931
|
+
var _this232 = this;
|
|
1934
1932
|
return _asyncToGenerator(function* () {
|
|
1935
1933
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1936
|
-
return
|
|
1934
|
+
return _this232.authStream(callback, 'PATCH', "/folders/".concat(folder_id), null, body, options);
|
|
1937
1935
|
})();
|
|
1938
1936
|
}
|
|
1939
1937
|
delete_folder(callback, folder_id, options) {
|
|
1940
|
-
var
|
|
1938
|
+
var _this233 = this;
|
|
1941
1939
|
return _asyncToGenerator(function* () {
|
|
1942
1940
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1943
|
-
return
|
|
1941
|
+
return _this233.authStream(callback, 'DELETE', "/folders/".concat(folder_id), null, null, options);
|
|
1944
1942
|
})();
|
|
1945
1943
|
}
|
|
1946
1944
|
all_folders(callback, fields, options) {
|
|
1947
|
-
var
|
|
1945
|
+
var _this234 = this;
|
|
1948
1946
|
return _asyncToGenerator(function* () {
|
|
1949
|
-
return
|
|
1947
|
+
return _this234.authStream(callback, 'GET', '/folders', {
|
|
1950
1948
|
fields
|
|
1951
1949
|
}, null, options);
|
|
1952
1950
|
})();
|
|
1953
1951
|
}
|
|
1954
1952
|
create_folder(callback, body, options) {
|
|
1955
|
-
var
|
|
1953
|
+
var _this235 = this;
|
|
1956
1954
|
return _asyncToGenerator(function* () {
|
|
1957
|
-
return
|
|
1955
|
+
return _this235.authStream(callback, 'POST', '/folders', null, body, options);
|
|
1958
1956
|
})();
|
|
1959
1957
|
}
|
|
1960
1958
|
folder_children(callback, request, options) {
|
|
1961
|
-
var
|
|
1959
|
+
var _this236 = this;
|
|
1962
1960
|
return _asyncToGenerator(function* () {
|
|
1963
1961
|
request.folder_id = (0, _sdkRtl.encodeParam)(request.folder_id);
|
|
1964
|
-
return
|
|
1962
|
+
return _this236.authStream(callback, 'GET', "/folders/".concat(request.folder_id, "/children"), {
|
|
1965
1963
|
fields: request.fields,
|
|
1966
1964
|
page: request.page,
|
|
1967
1965
|
per_page: request.per_page,
|
|
@@ -1972,10 +1970,10 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1972
1970
|
})();
|
|
1973
1971
|
}
|
|
1974
1972
|
folder_children_search(callback, request, options) {
|
|
1975
|
-
var
|
|
1973
|
+
var _this237 = this;
|
|
1976
1974
|
return _asyncToGenerator(function* () {
|
|
1977
1975
|
request.folder_id = (0, _sdkRtl.encodeParam)(request.folder_id);
|
|
1978
|
-
return
|
|
1976
|
+
return _this237.authStream(callback, 'GET', "/folders/".concat(request.folder_id, "/children/search"), {
|
|
1979
1977
|
fields: request.fields,
|
|
1980
1978
|
sorts: request.sorts,
|
|
1981
1979
|
name: request.name
|
|
@@ -1983,45 +1981,45 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
1983
1981
|
})();
|
|
1984
1982
|
}
|
|
1985
1983
|
folder_parent(callback, folder_id, fields, options) {
|
|
1986
|
-
var
|
|
1984
|
+
var _this238 = this;
|
|
1987
1985
|
return _asyncToGenerator(function* () {
|
|
1988
1986
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1989
|
-
return
|
|
1987
|
+
return _this238.authStream(callback, 'GET', "/folders/".concat(folder_id, "/parent"), {
|
|
1990
1988
|
fields
|
|
1991
1989
|
}, null, options);
|
|
1992
1990
|
})();
|
|
1993
1991
|
}
|
|
1994
1992
|
folder_ancestors(callback, folder_id, fields, options) {
|
|
1995
|
-
var
|
|
1993
|
+
var _this239 = this;
|
|
1996
1994
|
return _asyncToGenerator(function* () {
|
|
1997
1995
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
1998
|
-
return
|
|
1996
|
+
return _this239.authStream(callback, 'GET', "/folders/".concat(folder_id, "/ancestors"), {
|
|
1999
1997
|
fields
|
|
2000
1998
|
}, null, options);
|
|
2001
1999
|
})();
|
|
2002
2000
|
}
|
|
2003
2001
|
folder_looks(callback, folder_id, fields, options) {
|
|
2004
|
-
var
|
|
2002
|
+
var _this240 = this;
|
|
2005
2003
|
return _asyncToGenerator(function* () {
|
|
2006
2004
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2007
|
-
return
|
|
2005
|
+
return _this240.authStream(callback, 'GET', "/folders/".concat(folder_id, "/looks"), {
|
|
2008
2006
|
fields
|
|
2009
2007
|
}, null, options);
|
|
2010
2008
|
})();
|
|
2011
2009
|
}
|
|
2012
2010
|
folder_dashboards(callback, folder_id, fields, options) {
|
|
2013
|
-
var
|
|
2011
|
+
var _this241 = this;
|
|
2014
2012
|
return _asyncToGenerator(function* () {
|
|
2015
2013
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2016
|
-
return
|
|
2014
|
+
return _this241.authStream(callback, 'GET', "/folders/".concat(folder_id, "/dashboards"), {
|
|
2017
2015
|
fields
|
|
2018
2016
|
}, null, options);
|
|
2019
2017
|
})();
|
|
2020
2018
|
}
|
|
2021
2019
|
all_groups(callback, request, options) {
|
|
2022
|
-
var
|
|
2020
|
+
var _this242 = this;
|
|
2023
2021
|
return _asyncToGenerator(function* () {
|
|
2024
|
-
return
|
|
2022
|
+
return _this242.authStream(callback, 'GET', '/groups', {
|
|
2025
2023
|
fields: request.fields,
|
|
2026
2024
|
page: request.page,
|
|
2027
2025
|
per_page: request.per_page,
|
|
@@ -2035,17 +2033,17 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2035
2033
|
})();
|
|
2036
2034
|
}
|
|
2037
2035
|
create_group(callback, body, fields, options) {
|
|
2038
|
-
var
|
|
2036
|
+
var _this243 = this;
|
|
2039
2037
|
return _asyncToGenerator(function* () {
|
|
2040
|
-
return
|
|
2038
|
+
return _this243.authStream(callback, 'POST', '/groups', {
|
|
2041
2039
|
fields
|
|
2042
2040
|
}, body, options);
|
|
2043
2041
|
})();
|
|
2044
2042
|
}
|
|
2045
2043
|
search_groups(callback, request, options) {
|
|
2046
|
-
var
|
|
2044
|
+
var _this244 = this;
|
|
2047
2045
|
return _asyncToGenerator(function* () {
|
|
2048
|
-
return
|
|
2046
|
+
return _this244.authStream(callback, 'GET', '/groups/search', {
|
|
2049
2047
|
fields: request.fields,
|
|
2050
2048
|
limit: request.limit,
|
|
2051
2049
|
offset: request.offset,
|
|
@@ -2060,9 +2058,9 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2060
2058
|
})();
|
|
2061
2059
|
}
|
|
2062
2060
|
search_groups_with_roles(callback, request, options) {
|
|
2063
|
-
var
|
|
2061
|
+
var _this245 = this;
|
|
2064
2062
|
return _asyncToGenerator(function* () {
|
|
2065
|
-
return
|
|
2063
|
+
return _this245.authStream(callback, 'GET', '/groups/search/with_roles', {
|
|
2066
2064
|
fields: request.fields,
|
|
2067
2065
|
limit: request.limit,
|
|
2068
2066
|
offset: request.offset,
|
|
@@ -2077,9 +2075,9 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2077
2075
|
})();
|
|
2078
2076
|
}
|
|
2079
2077
|
search_groups_with_hierarchy(callback, request, options) {
|
|
2080
|
-
var
|
|
2078
|
+
var _this246 = this;
|
|
2081
2079
|
return _asyncToGenerator(function* () {
|
|
2082
|
-
return
|
|
2080
|
+
return _this246.authStream(callback, 'GET', '/groups/search/with_hierarchy', {
|
|
2083
2081
|
fields: request.fields,
|
|
2084
2082
|
limit: request.limit,
|
|
2085
2083
|
offset: request.offset,
|
|
@@ -2094,51 +2092,51 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2094
2092
|
})();
|
|
2095
2093
|
}
|
|
2096
2094
|
group(callback, group_id, fields, options) {
|
|
2097
|
-
var
|
|
2095
|
+
var _this247 = this;
|
|
2098
2096
|
return _asyncToGenerator(function* () {
|
|
2099
2097
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2100
|
-
return
|
|
2098
|
+
return _this247.authStream(callback, 'GET', "/groups/".concat(group_id), {
|
|
2101
2099
|
fields
|
|
2102
2100
|
}, null, options);
|
|
2103
2101
|
})();
|
|
2104
2102
|
}
|
|
2105
2103
|
update_group(callback, group_id, body, fields, options) {
|
|
2106
|
-
var
|
|
2104
|
+
var _this248 = this;
|
|
2107
2105
|
return _asyncToGenerator(function* () {
|
|
2108
2106
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2109
|
-
return
|
|
2107
|
+
return _this248.authStream(callback, 'PATCH', "/groups/".concat(group_id), {
|
|
2110
2108
|
fields
|
|
2111
2109
|
}, body, options);
|
|
2112
2110
|
})();
|
|
2113
2111
|
}
|
|
2114
2112
|
delete_group(callback, group_id, options) {
|
|
2115
|
-
var
|
|
2113
|
+
var _this249 = this;
|
|
2116
2114
|
return _asyncToGenerator(function* () {
|
|
2117
2115
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2118
|
-
return
|
|
2116
|
+
return _this249.authStream(callback, 'DELETE', "/groups/".concat(group_id), null, null, options);
|
|
2119
2117
|
})();
|
|
2120
2118
|
}
|
|
2121
2119
|
all_group_groups(callback, group_id, fields, options) {
|
|
2122
|
-
var
|
|
2120
|
+
var _this250 = this;
|
|
2123
2121
|
return _asyncToGenerator(function* () {
|
|
2124
2122
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2125
|
-
return
|
|
2123
|
+
return _this250.authStream(callback, 'GET', "/groups/".concat(group_id, "/groups"), {
|
|
2126
2124
|
fields
|
|
2127
2125
|
}, null, options);
|
|
2128
2126
|
})();
|
|
2129
2127
|
}
|
|
2130
2128
|
add_group_group(callback, group_id, body, options) {
|
|
2131
|
-
var
|
|
2129
|
+
var _this251 = this;
|
|
2132
2130
|
return _asyncToGenerator(function* () {
|
|
2133
2131
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2134
|
-
return
|
|
2132
|
+
return _this251.authStream(callback, 'POST', "/groups/".concat(group_id, "/groups"), null, body, options);
|
|
2135
2133
|
})();
|
|
2136
2134
|
}
|
|
2137
2135
|
all_group_users(callback, request, options) {
|
|
2138
|
-
var
|
|
2136
|
+
var _this252 = this;
|
|
2139
2137
|
return _asyncToGenerator(function* () {
|
|
2140
2138
|
request.group_id = (0, _sdkRtl.encodeParam)(request.group_id);
|
|
2141
|
-
return
|
|
2139
|
+
return _this252.authStream(callback, 'GET', "/groups/".concat(request.group_id, "/users"), {
|
|
2142
2140
|
fields: request.fields,
|
|
2143
2141
|
page: request.page,
|
|
2144
2142
|
per_page: request.per_page,
|
|
@@ -2149,176 +2147,176 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2149
2147
|
})();
|
|
2150
2148
|
}
|
|
2151
2149
|
add_group_user(callback, group_id, body, options) {
|
|
2152
|
-
var
|
|
2150
|
+
var _this253 = this;
|
|
2153
2151
|
return _asyncToGenerator(function* () {
|
|
2154
2152
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2155
|
-
return
|
|
2153
|
+
return _this253.authStream(callback, 'POST', "/groups/".concat(group_id, "/users"), null, body, options);
|
|
2156
2154
|
})();
|
|
2157
2155
|
}
|
|
2158
2156
|
delete_group_user(callback, group_id, user_id, options) {
|
|
2159
|
-
var
|
|
2157
|
+
var _this254 = this;
|
|
2160
2158
|
return _asyncToGenerator(function* () {
|
|
2161
2159
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2162
2160
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
2163
|
-
return
|
|
2161
|
+
return _this254.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
|
|
2164
2162
|
})();
|
|
2165
2163
|
}
|
|
2166
2164
|
delete_group_from_group(callback, group_id, deleting_group_id, options) {
|
|
2167
|
-
var
|
|
2165
|
+
var _this255 = this;
|
|
2168
2166
|
return _asyncToGenerator(function* () {
|
|
2169
2167
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2170
2168
|
deleting_group_id = (0, _sdkRtl.encodeParam)(deleting_group_id);
|
|
2171
|
-
return
|
|
2169
|
+
return _this255.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
|
|
2172
2170
|
})();
|
|
2173
2171
|
}
|
|
2174
2172
|
update_user_attribute_group_value(callback, group_id, user_attribute_id, body, options) {
|
|
2175
|
-
var
|
|
2173
|
+
var _this256 = this;
|
|
2176
2174
|
return _asyncToGenerator(function* () {
|
|
2177
2175
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2178
2176
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
2179
|
-
return
|
|
2177
|
+
return _this256.authStream(callback, 'PATCH', "/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
2180
2178
|
})();
|
|
2181
2179
|
}
|
|
2182
2180
|
delete_user_attribute_group_value(callback, group_id, user_attribute_id, options) {
|
|
2183
|
-
var
|
|
2181
|
+
var _this257 = this;
|
|
2184
2182
|
return _asyncToGenerator(function* () {
|
|
2185
2183
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2186
2184
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
2187
|
-
return
|
|
2185
|
+
return _this257.authStream(callback, 'DELETE', "/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
2188
2186
|
})();
|
|
2189
2187
|
}
|
|
2190
2188
|
all_primary_homepage_sections(callback, fields, options) {
|
|
2191
|
-
var
|
|
2189
|
+
var _this258 = this;
|
|
2192
2190
|
return _asyncToGenerator(function* () {
|
|
2193
|
-
return
|
|
2191
|
+
return _this258.authStream(callback, 'GET', '/primary_homepage_sections', {
|
|
2194
2192
|
fields
|
|
2195
2193
|
}, null, options);
|
|
2196
2194
|
})();
|
|
2197
2195
|
}
|
|
2198
2196
|
all_integration_hubs(callback, fields, options) {
|
|
2199
|
-
var
|
|
2197
|
+
var _this259 = this;
|
|
2200
2198
|
return _asyncToGenerator(function* () {
|
|
2201
|
-
return
|
|
2199
|
+
return _this259.authStream(callback, 'GET', '/integration_hubs', {
|
|
2202
2200
|
fields
|
|
2203
2201
|
}, null, options);
|
|
2204
2202
|
})();
|
|
2205
2203
|
}
|
|
2206
2204
|
create_integration_hub(callback, body, fields, options) {
|
|
2207
|
-
var
|
|
2205
|
+
var _this260 = this;
|
|
2208
2206
|
return _asyncToGenerator(function* () {
|
|
2209
|
-
return
|
|
2207
|
+
return _this260.authStream(callback, 'POST', '/integration_hubs', {
|
|
2210
2208
|
fields
|
|
2211
2209
|
}, body, options);
|
|
2212
2210
|
})();
|
|
2213
2211
|
}
|
|
2214
2212
|
integration_hub(callback, integration_hub_id, fields, options) {
|
|
2215
|
-
var
|
|
2213
|
+
var _this261 = this;
|
|
2216
2214
|
return _asyncToGenerator(function* () {
|
|
2217
2215
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2218
|
-
return
|
|
2216
|
+
return _this261.authStream(callback, 'GET', "/integration_hubs/".concat(integration_hub_id), {
|
|
2219
2217
|
fields
|
|
2220
2218
|
}, null, options);
|
|
2221
2219
|
})();
|
|
2222
2220
|
}
|
|
2223
2221
|
update_integration_hub(callback, integration_hub_id, body, fields, options) {
|
|
2224
|
-
var
|
|
2222
|
+
var _this262 = this;
|
|
2225
2223
|
return _asyncToGenerator(function* () {
|
|
2226
2224
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2227
|
-
return
|
|
2225
|
+
return _this262.authStream(callback, 'PATCH', "/integration_hubs/".concat(integration_hub_id), {
|
|
2228
2226
|
fields
|
|
2229
2227
|
}, body, options);
|
|
2230
2228
|
})();
|
|
2231
2229
|
}
|
|
2232
2230
|
delete_integration_hub(callback, integration_hub_id, options) {
|
|
2233
|
-
var
|
|
2231
|
+
var _this263 = this;
|
|
2234
2232
|
return _asyncToGenerator(function* () {
|
|
2235
2233
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2236
|
-
return
|
|
2234
|
+
return _this263.authStream(callback, 'DELETE', "/integration_hubs/".concat(integration_hub_id), null, null, options);
|
|
2237
2235
|
})();
|
|
2238
2236
|
}
|
|
2239
2237
|
get_integration_hub_health(callback, integration_hub_id, fields, options) {
|
|
2240
|
-
var
|
|
2238
|
+
var _this264 = this;
|
|
2241
2239
|
return _asyncToGenerator(function* () {
|
|
2242
2240
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2243
|
-
return
|
|
2241
|
+
return _this264.authStream(callback, 'GET', "/integration_hubs/".concat(integration_hub_id, "/health"), {
|
|
2244
2242
|
fields
|
|
2245
2243
|
}, null, options);
|
|
2246
2244
|
})();
|
|
2247
2245
|
}
|
|
2248
2246
|
accept_integration_hub_legal_agreement(callback, integration_hub_id, options) {
|
|
2249
|
-
var
|
|
2247
|
+
var _this265 = this;
|
|
2250
2248
|
return _asyncToGenerator(function* () {
|
|
2251
2249
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2252
|
-
return
|
|
2250
|
+
return _this265.authStream(callback, 'POST', "/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
|
|
2253
2251
|
})();
|
|
2254
2252
|
}
|
|
2255
2253
|
all_integrations(callback, request, options) {
|
|
2256
|
-
var
|
|
2254
|
+
var _this266 = this;
|
|
2257
2255
|
return _asyncToGenerator(function* () {
|
|
2258
|
-
return
|
|
2256
|
+
return _this266.authStream(callback, 'GET', '/integrations', {
|
|
2259
2257
|
fields: request.fields,
|
|
2260
2258
|
integration_hub_id: request.integration_hub_id
|
|
2261
2259
|
}, null, options);
|
|
2262
2260
|
})();
|
|
2263
2261
|
}
|
|
2264
2262
|
integration(callback, integration_id, fields, options) {
|
|
2265
|
-
var
|
|
2263
|
+
var _this267 = this;
|
|
2266
2264
|
return _asyncToGenerator(function* () {
|
|
2267
2265
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2268
|
-
return
|
|
2266
|
+
return _this267.authStream(callback, 'GET', "/integrations/".concat(integration_id), {
|
|
2269
2267
|
fields
|
|
2270
2268
|
}, null, options);
|
|
2271
2269
|
})();
|
|
2272
2270
|
}
|
|
2273
2271
|
update_integration(callback, integration_id, body, fields, options) {
|
|
2274
|
-
var
|
|
2272
|
+
var _this268 = this;
|
|
2275
2273
|
return _asyncToGenerator(function* () {
|
|
2276
2274
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2277
|
-
return
|
|
2275
|
+
return _this268.authStream(callback, 'PATCH', "/integrations/".concat(integration_id), {
|
|
2278
2276
|
fields
|
|
2279
2277
|
}, body, options);
|
|
2280
2278
|
})();
|
|
2281
2279
|
}
|
|
2282
2280
|
fetch_integration_form(callback, integration_id, body, options) {
|
|
2283
|
-
var
|
|
2281
|
+
var _this269 = this;
|
|
2284
2282
|
return _asyncToGenerator(function* () {
|
|
2285
2283
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2286
|
-
return
|
|
2284
|
+
return _this269.authStream(callback, 'POST', "/integrations/".concat(integration_id, "/form"), null, body, options);
|
|
2287
2285
|
})();
|
|
2288
2286
|
}
|
|
2289
2287
|
test_integration(callback, integration_id, options) {
|
|
2290
|
-
var
|
|
2288
|
+
var _this270 = this;
|
|
2291
2289
|
return _asyncToGenerator(function* () {
|
|
2292
2290
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2293
|
-
return
|
|
2291
|
+
return _this270.authStream(callback, 'POST', "/integrations/".concat(integration_id, "/test"), null, null, options);
|
|
2294
2292
|
})();
|
|
2295
2293
|
}
|
|
2296
2294
|
run_key_driver_analysis(callback, body, options) {
|
|
2297
|
-
var
|
|
2295
|
+
var _this271 = this;
|
|
2298
2296
|
return _asyncToGenerator(function* () {
|
|
2299
|
-
return
|
|
2297
|
+
return _this271.authStream(callback, 'POST', '/internal/kda/analyze', null, body, options);
|
|
2300
2298
|
})();
|
|
2301
2299
|
}
|
|
2302
2300
|
all_looks(callback, fields, options) {
|
|
2303
|
-
var
|
|
2301
|
+
var _this272 = this;
|
|
2304
2302
|
return _asyncToGenerator(function* () {
|
|
2305
|
-
return
|
|
2303
|
+
return _this272.authStream(callback, 'GET', '/looks', {
|
|
2306
2304
|
fields
|
|
2307
2305
|
}, null, options);
|
|
2308
2306
|
})();
|
|
2309
2307
|
}
|
|
2310
2308
|
create_look(callback, body, fields, options) {
|
|
2311
|
-
var
|
|
2309
|
+
var _this273 = this;
|
|
2312
2310
|
return _asyncToGenerator(function* () {
|
|
2313
|
-
return
|
|
2311
|
+
return _this273.authStream(callback, 'POST', '/looks', {
|
|
2314
2312
|
fields
|
|
2315
2313
|
}, body, options);
|
|
2316
2314
|
})();
|
|
2317
2315
|
}
|
|
2318
2316
|
search_looks(callback, request, options) {
|
|
2319
|
-
var
|
|
2317
|
+
var _this274 = this;
|
|
2320
2318
|
return _asyncToGenerator(function* () {
|
|
2321
|
-
return
|
|
2319
|
+
return _this274.authStream(callback, 'GET', '/looks/search', {
|
|
2322
2320
|
id: request.id,
|
|
2323
2321
|
title: request.title,
|
|
2324
2322
|
description: request.description,
|
|
@@ -2341,36 +2339,36 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2341
2339
|
})();
|
|
2342
2340
|
}
|
|
2343
2341
|
look(callback, look_id, fields, options) {
|
|
2344
|
-
var
|
|
2342
|
+
var _this275 = this;
|
|
2345
2343
|
return _asyncToGenerator(function* () {
|
|
2346
2344
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2347
|
-
return
|
|
2345
|
+
return _this275.authStream(callback, 'GET', "/looks/".concat(look_id), {
|
|
2348
2346
|
fields
|
|
2349
2347
|
}, null, options);
|
|
2350
2348
|
})();
|
|
2351
2349
|
}
|
|
2352
2350
|
update_look(callback, look_id, body, fields, options) {
|
|
2353
|
-
var
|
|
2351
|
+
var _this276 = this;
|
|
2354
2352
|
return _asyncToGenerator(function* () {
|
|
2355
2353
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2356
|
-
return
|
|
2354
|
+
return _this276.authStream(callback, 'PATCH', "/looks/".concat(look_id), {
|
|
2357
2355
|
fields
|
|
2358
2356
|
}, body, options);
|
|
2359
2357
|
})();
|
|
2360
2358
|
}
|
|
2361
2359
|
delete_look(callback, look_id, options) {
|
|
2362
|
-
var
|
|
2360
|
+
var _this277 = this;
|
|
2363
2361
|
return _asyncToGenerator(function* () {
|
|
2364
2362
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2365
|
-
return
|
|
2363
|
+
return _this277.authStream(callback, 'DELETE', "/looks/".concat(look_id), null, null, options);
|
|
2366
2364
|
})();
|
|
2367
2365
|
}
|
|
2368
2366
|
run_look(callback, request, options) {
|
|
2369
|
-
var
|
|
2367
|
+
var _this278 = this;
|
|
2370
2368
|
return _asyncToGenerator(function* () {
|
|
2371
2369
|
request.look_id = (0, _sdkRtl.encodeParam)(request.look_id);
|
|
2372
2370
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
2373
|
-
return
|
|
2371
|
+
return _this278.authStream(callback, 'GET', "/looks/".concat(request.look_id, "/run/").concat(request.result_format), {
|
|
2374
2372
|
limit: request.limit,
|
|
2375
2373
|
apply_formatting: request.apply_formatting,
|
|
2376
2374
|
apply_vis: request.apply_vis,
|
|
@@ -2387,34 +2385,34 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2387
2385
|
})();
|
|
2388
2386
|
}
|
|
2389
2387
|
copy_look(callback, look_id, folder_id, options) {
|
|
2390
|
-
var
|
|
2388
|
+
var _this279 = this;
|
|
2391
2389
|
return _asyncToGenerator(function* () {
|
|
2392
2390
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2393
|
-
return
|
|
2391
|
+
return _this279.authStream(callback, 'POST', "/looks/".concat(look_id, "/copy"), {
|
|
2394
2392
|
folder_id
|
|
2395
2393
|
}, null, options);
|
|
2396
2394
|
})();
|
|
2397
2395
|
}
|
|
2398
2396
|
move_look(callback, look_id, folder_id, options) {
|
|
2399
|
-
var
|
|
2397
|
+
var _this280 = this;
|
|
2400
2398
|
return _asyncToGenerator(function* () {
|
|
2401
2399
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2402
|
-
return
|
|
2400
|
+
return _this280.authStream(callback, 'PATCH', "/looks/".concat(look_id, "/move"), {
|
|
2403
2401
|
folder_id
|
|
2404
2402
|
}, null, options);
|
|
2405
2403
|
})();
|
|
2406
2404
|
}
|
|
2407
2405
|
update_look_certification(callback, look_id, body, options) {
|
|
2408
|
-
var
|
|
2406
|
+
var _this281 = this;
|
|
2409
2407
|
return _asyncToGenerator(function* () {
|
|
2410
2408
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2411
|
-
return
|
|
2409
|
+
return _this281.authStream(callback, 'PATCH', "/looks/".concat(look_id, "/certification"), null, body, options);
|
|
2412
2410
|
})();
|
|
2413
2411
|
}
|
|
2414
2412
|
all_lookml_models(callback, request, options) {
|
|
2415
|
-
var
|
|
2413
|
+
var _this282 = this;
|
|
2416
2414
|
return _asyncToGenerator(function* () {
|
|
2417
|
-
return
|
|
2415
|
+
return _this282.authStream(callback, 'GET', '/lookml_models', {
|
|
2418
2416
|
fields: request.fields,
|
|
2419
2417
|
limit: request.limit,
|
|
2420
2418
|
offset: request.offset,
|
|
@@ -2426,85 +2424,85 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2426
2424
|
})();
|
|
2427
2425
|
}
|
|
2428
2426
|
create_lookml_model(callback, body, options) {
|
|
2429
|
-
var
|
|
2427
|
+
var _this283 = this;
|
|
2430
2428
|
return _asyncToGenerator(function* () {
|
|
2431
|
-
return
|
|
2429
|
+
return _this283.authStream(callback, 'POST', '/lookml_models', null, body, options);
|
|
2432
2430
|
})();
|
|
2433
2431
|
}
|
|
2434
2432
|
lookml_model(callback, lookml_model_name, fields, options) {
|
|
2435
|
-
var
|
|
2433
|
+
var _this284 = this;
|
|
2436
2434
|
return _asyncToGenerator(function* () {
|
|
2437
2435
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
2438
|
-
return
|
|
2436
|
+
return _this284.authStream(callback, 'GET', "/lookml_models/".concat(lookml_model_name), {
|
|
2439
2437
|
fields
|
|
2440
2438
|
}, null, options);
|
|
2441
2439
|
})();
|
|
2442
2440
|
}
|
|
2443
2441
|
update_lookml_model(callback, lookml_model_name, body, options) {
|
|
2444
|
-
var
|
|
2442
|
+
var _this285 = this;
|
|
2445
2443
|
return _asyncToGenerator(function* () {
|
|
2446
2444
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
2447
|
-
return
|
|
2445
|
+
return _this285.authStream(callback, 'PATCH', "/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
2448
2446
|
})();
|
|
2449
2447
|
}
|
|
2450
2448
|
delete_lookml_model(callback, lookml_model_name, options) {
|
|
2451
|
-
var
|
|
2449
|
+
var _this286 = this;
|
|
2452
2450
|
return _asyncToGenerator(function* () {
|
|
2453
2451
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
2454
|
-
return
|
|
2452
|
+
return _this286.authStream(callback, 'DELETE', "/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
2455
2453
|
})();
|
|
2456
2454
|
}
|
|
2457
2455
|
lookml_model_explore(callback, request, options) {
|
|
2458
|
-
var
|
|
2456
|
+
var _this287 = this;
|
|
2459
2457
|
return _asyncToGenerator(function* () {
|
|
2460
2458
|
request.lookml_model_name = (0, _sdkRtl.encodeParam)(request.lookml_model_name);
|
|
2461
2459
|
request.explore_name = (0, _sdkRtl.encodeParam)(request.explore_name);
|
|
2462
|
-
return
|
|
2460
|
+
return _this287.authStream(callback, 'GET', "/lookml_models/".concat(request.lookml_model_name, "/explores/").concat(request.explore_name), {
|
|
2463
2461
|
fields: request.fields,
|
|
2464
2462
|
add_drills_metadata: request.add_drills_metadata
|
|
2465
2463
|
}, null, options);
|
|
2466
2464
|
})();
|
|
2467
2465
|
}
|
|
2468
2466
|
model_fieldname_suggestions(callback, request, options) {
|
|
2469
|
-
var
|
|
2467
|
+
var _this288 = this;
|
|
2470
2468
|
return _asyncToGenerator(function* () {
|
|
2471
2469
|
request.model_name = (0, _sdkRtl.encodeParam)(request.model_name);
|
|
2472
2470
|
request.view_name = (0, _sdkRtl.encodeParam)(request.view_name);
|
|
2473
2471
|
request.field_name = (0, _sdkRtl.encodeParam)(request.field_name);
|
|
2474
|
-
return
|
|
2472
|
+
return _this288.authStream(callback, 'GET', "/models/".concat(request.model_name, "/views/").concat(request.view_name, "/fields/").concat(request.field_name, "/suggestions"), {
|
|
2475
2473
|
term: request.term,
|
|
2476
2474
|
filters: request.filters
|
|
2477
2475
|
}, null, options);
|
|
2478
2476
|
})();
|
|
2479
2477
|
}
|
|
2480
2478
|
get_model(callback, model_name, options) {
|
|
2481
|
-
var
|
|
2479
|
+
var _this289 = this;
|
|
2482
2480
|
return _asyncToGenerator(function* () {
|
|
2483
2481
|
model_name = (0, _sdkRtl.encodeParam)(model_name);
|
|
2484
|
-
return
|
|
2482
|
+
return _this289.authStream(callback, 'GET', "/models/".concat(model_name), null, null, options);
|
|
2485
2483
|
})();
|
|
2486
2484
|
}
|
|
2487
2485
|
connection_databases(callback, connection_name, options) {
|
|
2488
|
-
var
|
|
2486
|
+
var _this290 = this;
|
|
2489
2487
|
return _asyncToGenerator(function* () {
|
|
2490
2488
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
2491
|
-
return
|
|
2489
|
+
return _this290.authStream(callback, 'GET', "/connections/".concat(connection_name, "/databases"), null, null, options);
|
|
2492
2490
|
})();
|
|
2493
2491
|
}
|
|
2494
2492
|
connection_features(callback, connection_name, fields, options) {
|
|
2495
|
-
var
|
|
2493
|
+
var _this291 = this;
|
|
2496
2494
|
return _asyncToGenerator(function* () {
|
|
2497
2495
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
2498
|
-
return
|
|
2496
|
+
return _this291.authStream(callback, 'GET', "/connections/".concat(connection_name, "/features"), {
|
|
2499
2497
|
fields
|
|
2500
2498
|
}, null, options);
|
|
2501
2499
|
})();
|
|
2502
2500
|
}
|
|
2503
2501
|
connection_schemas(callback, request, options) {
|
|
2504
|
-
var
|
|
2502
|
+
var _this292 = this;
|
|
2505
2503
|
return _asyncToGenerator(function* () {
|
|
2506
2504
|
request.connection_name = (0, _sdkRtl.encodeParam)(request.connection_name);
|
|
2507
|
-
return
|
|
2505
|
+
return _this292.authStream(callback, 'GET', "/connections/".concat(request.connection_name, "/schemas"), {
|
|
2508
2506
|
database: request.database,
|
|
2509
2507
|
cache: request.cache,
|
|
2510
2508
|
fields: request.fields
|
|
@@ -2512,10 +2510,10 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2512
2510
|
})();
|
|
2513
2511
|
}
|
|
2514
2512
|
connection_tables(callback, request, options) {
|
|
2515
|
-
var
|
|
2513
|
+
var _this293 = this;
|
|
2516
2514
|
return _asyncToGenerator(function* () {
|
|
2517
2515
|
request.connection_name = (0, _sdkRtl.encodeParam)(request.connection_name);
|
|
2518
|
-
return
|
|
2516
|
+
return _this293.authStream(callback, 'GET', "/connections/".concat(request.connection_name, "/tables"), {
|
|
2519
2517
|
database: request.database,
|
|
2520
2518
|
schema_name: request.schema_name,
|
|
2521
2519
|
cache: request.cache,
|
|
@@ -2526,10 +2524,10 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2526
2524
|
})();
|
|
2527
2525
|
}
|
|
2528
2526
|
connection_columns(callback, request, options) {
|
|
2529
|
-
var
|
|
2527
|
+
var _this294 = this;
|
|
2530
2528
|
return _asyncToGenerator(function* () {
|
|
2531
2529
|
request.connection_name = (0, _sdkRtl.encodeParam)(request.connection_name);
|
|
2532
|
-
return
|
|
2530
|
+
return _this294.authStream(callback, 'GET', "/connections/".concat(request.connection_name, "/columns"), {
|
|
2533
2531
|
database: request.database,
|
|
2534
2532
|
schema_name: request.schema_name,
|
|
2535
2533
|
cache: request.cache,
|
|
@@ -2540,279 +2538,279 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2540
2538
|
})();
|
|
2541
2539
|
}
|
|
2542
2540
|
connection_search_columns(callback, request, options) {
|
|
2543
|
-
var
|
|
2541
|
+
var _this295 = this;
|
|
2544
2542
|
return _asyncToGenerator(function* () {
|
|
2545
2543
|
request.connection_name = (0, _sdkRtl.encodeParam)(request.connection_name);
|
|
2546
|
-
return
|
|
2544
|
+
return _this295.authStream(callback, 'GET', "/connections/".concat(request.connection_name, "/search_columns"), {
|
|
2547
2545
|
column_name: request.column_name,
|
|
2548
2546
|
fields: request.fields
|
|
2549
2547
|
}, null, options);
|
|
2550
2548
|
})();
|
|
2551
2549
|
}
|
|
2552
2550
|
connection_cost_estimate(callback, connection_name, body, fields, options) {
|
|
2553
|
-
var
|
|
2551
|
+
var _this296 = this;
|
|
2554
2552
|
return _asyncToGenerator(function* () {
|
|
2555
2553
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
2556
|
-
return
|
|
2554
|
+
return _this296.authStream(callback, 'POST', "/connections/".concat(connection_name, "/cost_estimate"), {
|
|
2557
2555
|
fields
|
|
2558
2556
|
}, body, options);
|
|
2559
2557
|
})();
|
|
2560
2558
|
}
|
|
2561
2559
|
get_ci_run(callback, project_id, run_id, fields, options) {
|
|
2562
|
-
var
|
|
2560
|
+
var _this297 = this;
|
|
2563
2561
|
return _asyncToGenerator(function* () {
|
|
2564
2562
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2565
2563
|
run_id = (0, _sdkRtl.encodeParam)(run_id);
|
|
2566
|
-
return
|
|
2564
|
+
return _this297.authStream(callback, 'GET', "/projects/".concat(project_id, "/ci/runs/").concat(run_id), {
|
|
2567
2565
|
fields
|
|
2568
2566
|
}, null, options);
|
|
2569
2567
|
})();
|
|
2570
2568
|
}
|
|
2571
2569
|
create_ci_run(callback, project_id, body, fields, options) {
|
|
2572
|
-
var
|
|
2570
|
+
var _this298 = this;
|
|
2573
2571
|
return _asyncToGenerator(function* () {
|
|
2574
2572
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2575
|
-
return
|
|
2573
|
+
return _this298.authStream(callback, 'POST', "/projects/".concat(project_id, "/ci/run"), {
|
|
2576
2574
|
fields
|
|
2577
2575
|
}, body, options);
|
|
2578
2576
|
})();
|
|
2579
2577
|
}
|
|
2580
2578
|
create_continuous_integration_run(callback, project_id, body, fields, options) {
|
|
2581
|
-
var
|
|
2579
|
+
var _this299 = this;
|
|
2582
2580
|
return _asyncToGenerator(function* () {
|
|
2583
2581
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2584
|
-
return
|
|
2582
|
+
return _this299.authStream(callback, 'POST', "/projects/".concat(project_id, "/continuous_integration/runs"), {
|
|
2585
2583
|
fields
|
|
2586
2584
|
}, body, options);
|
|
2587
2585
|
})();
|
|
2588
2586
|
}
|
|
2589
2587
|
get_continuous_integration_run(callback, project_id, run_id, fields, options) {
|
|
2590
|
-
var
|
|
2588
|
+
var _this300 = this;
|
|
2591
2589
|
return _asyncToGenerator(function* () {
|
|
2592
2590
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2593
2591
|
run_id = (0, _sdkRtl.encodeParam)(run_id);
|
|
2594
|
-
return
|
|
2592
|
+
return _this300.authStream(callback, 'GET', "/projects/".concat(project_id, "/continuous_integration/runs/").concat(run_id), {
|
|
2595
2593
|
fields
|
|
2596
2594
|
}, null, options);
|
|
2597
2595
|
})();
|
|
2598
2596
|
}
|
|
2599
2597
|
lock_all(callback, project_id, fields, options) {
|
|
2600
|
-
var
|
|
2598
|
+
var _this301 = this;
|
|
2601
2599
|
return _asyncToGenerator(function* () {
|
|
2602
2600
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2603
|
-
return
|
|
2601
|
+
return _this301.authStream(callback, 'POST', "/projects/".concat(project_id, "/manifest/lock_all"), {
|
|
2604
2602
|
fields
|
|
2605
2603
|
}, null, options);
|
|
2606
2604
|
})();
|
|
2607
2605
|
}
|
|
2608
2606
|
all_git_branches(callback, project_id, options) {
|
|
2609
|
-
var
|
|
2607
|
+
var _this302 = this;
|
|
2610
2608
|
return _asyncToGenerator(function* () {
|
|
2611
2609
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2612
|
-
return
|
|
2610
|
+
return _this302.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
2613
2611
|
})();
|
|
2614
2612
|
}
|
|
2615
2613
|
git_branch(callback, project_id, options) {
|
|
2616
|
-
var
|
|
2614
|
+
var _this303 = this;
|
|
2617
2615
|
return _asyncToGenerator(function* () {
|
|
2618
2616
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2619
|
-
return
|
|
2617
|
+
return _this303.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
2620
2618
|
})();
|
|
2621
2619
|
}
|
|
2622
2620
|
update_git_branch(callback, project_id, body, options) {
|
|
2623
|
-
var
|
|
2621
|
+
var _this304 = this;
|
|
2624
2622
|
return _asyncToGenerator(function* () {
|
|
2625
2623
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2626
|
-
return
|
|
2624
|
+
return _this304.authStream(callback, 'PUT', "/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2627
2625
|
})();
|
|
2628
2626
|
}
|
|
2629
2627
|
create_git_branch(callback, project_id, body, options) {
|
|
2630
|
-
var
|
|
2628
|
+
var _this305 = this;
|
|
2631
2629
|
return _asyncToGenerator(function* () {
|
|
2632
2630
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2633
|
-
return
|
|
2631
|
+
return _this305.authStream(callback, 'POST', "/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2634
2632
|
})();
|
|
2635
2633
|
}
|
|
2636
2634
|
find_git_branch(callback, project_id, branch_name, options) {
|
|
2637
|
-
var
|
|
2635
|
+
var _this306 = this;
|
|
2638
2636
|
return _asyncToGenerator(function* () {
|
|
2639
2637
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2640
2638
|
branch_name = (0, _sdkRtl.encodeParam)(branch_name);
|
|
2641
|
-
return
|
|
2639
|
+
return _this306.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2642
2640
|
})();
|
|
2643
2641
|
}
|
|
2644
2642
|
delete_git_branch(callback, project_id, branch_name, options) {
|
|
2645
|
-
var
|
|
2643
|
+
var _this307 = this;
|
|
2646
2644
|
return _asyncToGenerator(function* () {
|
|
2647
2645
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2648
2646
|
branch_name = (0, _sdkRtl.encodeParam)(branch_name);
|
|
2649
|
-
return
|
|
2647
|
+
return _this307.authStream(callback, 'DELETE', "/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2650
2648
|
})();
|
|
2651
2649
|
}
|
|
2652
2650
|
deploy_ref_to_production(callback, request, options) {
|
|
2653
|
-
var
|
|
2651
|
+
var _this308 = this;
|
|
2654
2652
|
return _asyncToGenerator(function* () {
|
|
2655
2653
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2656
|
-
return
|
|
2654
|
+
return _this308.authStream(callback, 'POST', "/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
2657
2655
|
branch: request.branch,
|
|
2658
2656
|
ref: request.ref
|
|
2659
2657
|
}, null, options);
|
|
2660
2658
|
})();
|
|
2661
2659
|
}
|
|
2662
2660
|
deploy_to_production(callback, project_id, options) {
|
|
2663
|
-
var
|
|
2661
|
+
var _this309 = this;
|
|
2664
2662
|
return _asyncToGenerator(function* () {
|
|
2665
2663
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2666
|
-
return
|
|
2664
|
+
return _this309.authStream(callback, 'POST', "/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
2667
2665
|
})();
|
|
2668
2666
|
}
|
|
2669
2667
|
reset_project_to_production(callback, project_id, options) {
|
|
2670
|
-
var
|
|
2668
|
+
var _this310 = this;
|
|
2671
2669
|
return _asyncToGenerator(function* () {
|
|
2672
2670
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2673
|
-
return
|
|
2671
|
+
return _this310.authStream(callback, 'POST', "/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
2674
2672
|
})();
|
|
2675
2673
|
}
|
|
2676
2674
|
reset_project_to_remote(callback, project_id, options) {
|
|
2677
|
-
var
|
|
2675
|
+
var _this311 = this;
|
|
2678
2676
|
return _asyncToGenerator(function* () {
|
|
2679
2677
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2680
|
-
return
|
|
2678
|
+
return _this311.authStream(callback, 'POST', "/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
2681
2679
|
})();
|
|
2682
2680
|
}
|
|
2683
2681
|
all_projects(callback, fields, options) {
|
|
2684
|
-
var
|
|
2682
|
+
var _this312 = this;
|
|
2685
2683
|
return _asyncToGenerator(function* () {
|
|
2686
|
-
return
|
|
2684
|
+
return _this312.authStream(callback, 'GET', '/projects', {
|
|
2687
2685
|
fields
|
|
2688
2686
|
}, null, options);
|
|
2689
2687
|
})();
|
|
2690
2688
|
}
|
|
2691
2689
|
create_project(callback, body, options) {
|
|
2692
|
-
var
|
|
2690
|
+
var _this313 = this;
|
|
2693
2691
|
return _asyncToGenerator(function* () {
|
|
2694
|
-
return
|
|
2692
|
+
return _this313.authStream(callback, 'POST', '/projects', null, body, options);
|
|
2695
2693
|
})();
|
|
2696
2694
|
}
|
|
2697
2695
|
project(callback, project_id, fields, options) {
|
|
2698
|
-
var
|
|
2696
|
+
var _this314 = this;
|
|
2699
2697
|
return _asyncToGenerator(function* () {
|
|
2700
2698
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2701
|
-
return
|
|
2699
|
+
return _this314.authStream(callback, 'GET', "/projects/".concat(project_id), {
|
|
2702
2700
|
fields
|
|
2703
2701
|
}, null, options);
|
|
2704
2702
|
})();
|
|
2705
2703
|
}
|
|
2706
2704
|
update_project(callback, project_id, body, fields, options) {
|
|
2707
|
-
var
|
|
2705
|
+
var _this315 = this;
|
|
2708
2706
|
return _asyncToGenerator(function* () {
|
|
2709
2707
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2710
|
-
return
|
|
2708
|
+
return _this315.authStream(callback, 'PATCH', "/projects/".concat(project_id), {
|
|
2711
2709
|
fields
|
|
2712
2710
|
}, body, options);
|
|
2713
2711
|
})();
|
|
2714
2712
|
}
|
|
2715
2713
|
manifest(callback, project_id, options) {
|
|
2716
|
-
var
|
|
2714
|
+
var _this316 = this;
|
|
2717
2715
|
return _asyncToGenerator(function* () {
|
|
2718
2716
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2719
|
-
return
|
|
2717
|
+
return _this316.authStream(callback, 'GET', "/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
2720
2718
|
})();
|
|
2721
2719
|
}
|
|
2722
2720
|
git_deploy_key(callback, project_id, options) {
|
|
2723
|
-
var
|
|
2721
|
+
var _this317 = this;
|
|
2724
2722
|
return _asyncToGenerator(function* () {
|
|
2725
2723
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2726
|
-
return
|
|
2724
|
+
return _this317.authStream(callback, 'GET', "/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2727
2725
|
})();
|
|
2728
2726
|
}
|
|
2729
2727
|
create_git_deploy_key(callback, project_id, options) {
|
|
2730
|
-
var
|
|
2728
|
+
var _this318 = this;
|
|
2731
2729
|
return _asyncToGenerator(function* () {
|
|
2732
2730
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2733
|
-
return
|
|
2731
|
+
return _this318.authStream(callback, 'POST', "/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2734
2732
|
})();
|
|
2735
2733
|
}
|
|
2736
2734
|
project_validation_results(callback, project_id, fields, options) {
|
|
2737
|
-
var
|
|
2735
|
+
var _this319 = this;
|
|
2738
2736
|
return _asyncToGenerator(function* () {
|
|
2739
2737
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2740
|
-
return
|
|
2738
|
+
return _this319.authStream(callback, 'GET', "/projects/".concat(project_id, "/validate"), {
|
|
2741
2739
|
fields
|
|
2742
2740
|
}, null, options);
|
|
2743
2741
|
})();
|
|
2744
2742
|
}
|
|
2745
2743
|
validate_project(callback, project_id, fields, options) {
|
|
2746
|
-
var
|
|
2744
|
+
var _this320 = this;
|
|
2747
2745
|
return _asyncToGenerator(function* () {
|
|
2748
2746
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2749
|
-
return
|
|
2747
|
+
return _this320.authStream(callback, 'POST', "/projects/".concat(project_id, "/validate"), {
|
|
2750
2748
|
fields
|
|
2751
2749
|
}, null, options);
|
|
2752
2750
|
})();
|
|
2753
2751
|
}
|
|
2754
2752
|
project_workspace(callback, project_id, fields, options) {
|
|
2755
|
-
var
|
|
2753
|
+
var _this321 = this;
|
|
2756
2754
|
return _asyncToGenerator(function* () {
|
|
2757
2755
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2758
|
-
return
|
|
2756
|
+
return _this321.authStream(callback, 'GET', "/projects/".concat(project_id, "/current_workspace"), {
|
|
2759
2757
|
fields
|
|
2760
2758
|
}, null, options);
|
|
2761
2759
|
})();
|
|
2762
2760
|
}
|
|
2763
2761
|
all_project_files(callback, project_id, fields, options) {
|
|
2764
|
-
var
|
|
2762
|
+
var _this322 = this;
|
|
2765
2763
|
return _asyncToGenerator(function* () {
|
|
2766
2764
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2767
|
-
return
|
|
2765
|
+
return _this322.authStream(callback, 'GET', "/projects/".concat(project_id, "/files"), {
|
|
2768
2766
|
fields
|
|
2769
2767
|
}, null, options);
|
|
2770
2768
|
})();
|
|
2771
2769
|
}
|
|
2772
2770
|
project_file(callback, project_id, file_id, fields, options) {
|
|
2773
|
-
var
|
|
2771
|
+
var _this323 = this;
|
|
2774
2772
|
return _asyncToGenerator(function* () {
|
|
2775
2773
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2776
|
-
return
|
|
2774
|
+
return _this323.authStream(callback, 'GET', "/projects/".concat(project_id, "/files/file"), {
|
|
2777
2775
|
file_id,
|
|
2778
2776
|
fields
|
|
2779
2777
|
}, null, options);
|
|
2780
2778
|
})();
|
|
2781
2779
|
}
|
|
2782
2780
|
all_git_connection_tests(callback, project_id, remote_url, options) {
|
|
2783
|
-
var
|
|
2781
|
+
var _this324 = this;
|
|
2784
2782
|
return _asyncToGenerator(function* () {
|
|
2785
2783
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2786
|
-
return
|
|
2784
|
+
return _this324.authStream(callback, 'GET', "/projects/".concat(project_id, "/git_connection_tests"), {
|
|
2787
2785
|
remote_url
|
|
2788
2786
|
}, null, options);
|
|
2789
2787
|
})();
|
|
2790
2788
|
}
|
|
2791
2789
|
run_git_connection_test(callback, request, options) {
|
|
2792
|
-
var
|
|
2790
|
+
var _this325 = this;
|
|
2793
2791
|
return _asyncToGenerator(function* () {
|
|
2794
2792
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2795
2793
|
request.test_id = (0, _sdkRtl.encodeParam)(request.test_id);
|
|
2796
|
-
return
|
|
2794
|
+
return _this325.authStream(callback, 'GET', "/projects/".concat(request.project_id, "/git_connection_tests/").concat(request.test_id), {
|
|
2797
2795
|
remote_url: request.remote_url,
|
|
2798
2796
|
use_production: request.use_production
|
|
2799
2797
|
}, null, options);
|
|
2800
2798
|
})();
|
|
2801
2799
|
}
|
|
2802
2800
|
all_lookml_tests(callback, project_id, file_id, options) {
|
|
2803
|
-
var
|
|
2801
|
+
var _this326 = this;
|
|
2804
2802
|
return _asyncToGenerator(function* () {
|
|
2805
2803
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2806
|
-
return
|
|
2804
|
+
return _this326.authStream(callback, 'GET', "/projects/".concat(project_id, "/lookml_tests"), {
|
|
2807
2805
|
file_id
|
|
2808
2806
|
}, null, options);
|
|
2809
2807
|
})();
|
|
2810
2808
|
}
|
|
2811
2809
|
run_lookml_test(callback, request, options) {
|
|
2812
|
-
var
|
|
2810
|
+
var _this327 = this;
|
|
2813
2811
|
return _asyncToGenerator(function* () {
|
|
2814
2812
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2815
|
-
return
|
|
2813
|
+
return _this327.authStream(callback, 'GET', "/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
2816
2814
|
file_id: request.file_id,
|
|
2817
2815
|
test: request.test,
|
|
2818
2816
|
model: request.model
|
|
@@ -2820,10 +2818,10 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2820
2818
|
})();
|
|
2821
2819
|
}
|
|
2822
2820
|
tag_ref(callback, request, options) {
|
|
2823
|
-
var
|
|
2821
|
+
var _this328 = this;
|
|
2824
2822
|
return _asyncToGenerator(function* () {
|
|
2825
2823
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2826
|
-
return
|
|
2824
|
+
return _this328.authStream(callback, 'POST', "/projects/".concat(request.project_id, "/tag"), {
|
|
2827
2825
|
commit_sha: request.commit_sha,
|
|
2828
2826
|
tag_name: request.tag_name,
|
|
2829
2827
|
tag_message: request.tag_message
|
|
@@ -2831,32 +2829,32 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2831
2829
|
})();
|
|
2832
2830
|
}
|
|
2833
2831
|
update_repository_credential(callback, root_project_id, credential_id, body, options) {
|
|
2834
|
-
var
|
|
2832
|
+
var _this329 = this;
|
|
2835
2833
|
return _asyncToGenerator(function* () {
|
|
2836
2834
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
2837
2835
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
2838
|
-
return
|
|
2836
|
+
return _this329.authStream(callback, 'PUT', "/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
2839
2837
|
})();
|
|
2840
2838
|
}
|
|
2841
2839
|
delete_repository_credential(callback, root_project_id, credential_id, options) {
|
|
2842
|
-
var
|
|
2840
|
+
var _this330 = this;
|
|
2843
2841
|
return _asyncToGenerator(function* () {
|
|
2844
2842
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
2845
2843
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
2846
|
-
return
|
|
2844
|
+
return _this330.authStream(callback, 'DELETE', "/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
2847
2845
|
})();
|
|
2848
2846
|
}
|
|
2849
2847
|
get_all_repository_credentials(callback, root_project_id, options) {
|
|
2850
|
-
var
|
|
2848
|
+
var _this331 = this;
|
|
2851
2849
|
return _asyncToGenerator(function* () {
|
|
2852
2850
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
2853
|
-
return
|
|
2851
|
+
return _this331.authStream(callback, 'GET', "/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
2854
2852
|
})();
|
|
2855
2853
|
}
|
|
2856
2854
|
create_query_task(callback, request, options) {
|
|
2857
|
-
var
|
|
2855
|
+
var _this332 = this;
|
|
2858
2856
|
return _asyncToGenerator(function* () {
|
|
2859
|
-
return
|
|
2857
|
+
return _this332.authStream(callback, 'POST', '/query_tasks', {
|
|
2860
2858
|
limit: request.limit,
|
|
2861
2859
|
apply_formatting: request.apply_formatting,
|
|
2862
2860
|
apply_vis: request.apply_vis,
|
|
@@ -2872,61 +2870,61 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2872
2870
|
})();
|
|
2873
2871
|
}
|
|
2874
2872
|
query_task_multi_results(callback, query_task_ids, options) {
|
|
2875
|
-
var
|
|
2873
|
+
var _this333 = this;
|
|
2876
2874
|
return _asyncToGenerator(function* () {
|
|
2877
|
-
return
|
|
2875
|
+
return _this333.authStream(callback, 'GET', '/query_tasks/multi_results', {
|
|
2878
2876
|
query_task_ids
|
|
2879
2877
|
}, null, options);
|
|
2880
2878
|
})();
|
|
2881
2879
|
}
|
|
2882
2880
|
query_task(callback, query_task_id, fields, options) {
|
|
2883
|
-
var
|
|
2881
|
+
var _this334 = this;
|
|
2884
2882
|
return _asyncToGenerator(function* () {
|
|
2885
2883
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
2886
|
-
return
|
|
2884
|
+
return _this334.authStream(callback, 'GET', "/query_tasks/".concat(query_task_id), {
|
|
2887
2885
|
fields
|
|
2888
2886
|
}, null, options);
|
|
2889
2887
|
})();
|
|
2890
2888
|
}
|
|
2891
2889
|
query_task_results(callback, query_task_id, options) {
|
|
2892
|
-
var
|
|
2890
|
+
var _this335 = this;
|
|
2893
2891
|
return _asyncToGenerator(function* () {
|
|
2894
2892
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
2895
|
-
return
|
|
2893
|
+
return _this335.authStream(callback, 'GET', "/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
2896
2894
|
})();
|
|
2897
2895
|
}
|
|
2898
2896
|
query(callback, query_id, fields, options) {
|
|
2899
|
-
var
|
|
2897
|
+
var _this336 = this;
|
|
2900
2898
|
return _asyncToGenerator(function* () {
|
|
2901
2899
|
query_id = (0, _sdkRtl.encodeParam)(query_id);
|
|
2902
|
-
return
|
|
2900
|
+
return _this336.authStream(callback, 'GET', "/queries/".concat(query_id), {
|
|
2903
2901
|
fields
|
|
2904
2902
|
}, null, options);
|
|
2905
2903
|
})();
|
|
2906
2904
|
}
|
|
2907
2905
|
query_for_slug(callback, slug, fields, options) {
|
|
2908
|
-
var
|
|
2906
|
+
var _this337 = this;
|
|
2909
2907
|
return _asyncToGenerator(function* () {
|
|
2910
2908
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
2911
|
-
return
|
|
2909
|
+
return _this337.authStream(callback, 'GET', "/queries/slug/".concat(slug), {
|
|
2912
2910
|
fields
|
|
2913
2911
|
}, null, options);
|
|
2914
2912
|
})();
|
|
2915
2913
|
}
|
|
2916
2914
|
create_query(callback, body, fields, options) {
|
|
2917
|
-
var
|
|
2915
|
+
var _this338 = this;
|
|
2918
2916
|
return _asyncToGenerator(function* () {
|
|
2919
|
-
return
|
|
2917
|
+
return _this338.authStream(callback, 'POST', '/queries', {
|
|
2920
2918
|
fields
|
|
2921
2919
|
}, body, options);
|
|
2922
2920
|
})();
|
|
2923
2921
|
}
|
|
2924
2922
|
run_query(callback, request, options) {
|
|
2925
|
-
var
|
|
2923
|
+
var _this339 = this;
|
|
2926
2924
|
return _asyncToGenerator(function* () {
|
|
2927
2925
|
request.query_id = (0, _sdkRtl.encodeParam)(request.query_id);
|
|
2928
2926
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
2929
|
-
return
|
|
2927
|
+
return _this339.authStream(callback, 'GET', "/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
2930
2928
|
limit: request.limit,
|
|
2931
2929
|
apply_formatting: request.apply_formatting,
|
|
2932
2930
|
apply_vis: request.apply_vis,
|
|
@@ -2938,17 +2936,15 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2938
2936
|
cache_only: request.cache_only,
|
|
2939
2937
|
path_prefix: request.path_prefix,
|
|
2940
2938
|
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
|
|
2939
|
+
server_table_calcs: request.server_table_calcs
|
|
2944
2940
|
}, null, options);
|
|
2945
2941
|
})();
|
|
2946
2942
|
}
|
|
2947
2943
|
run_inline_query(callback, request, options) {
|
|
2948
|
-
var
|
|
2944
|
+
var _this340 = this;
|
|
2949
2945
|
return _asyncToGenerator(function* () {
|
|
2950
2946
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
2951
|
-
return
|
|
2947
|
+
return _this340.authStream(callback, 'POST', "/queries/run/".concat(request.result_format), {
|
|
2952
2948
|
limit: request.limit,
|
|
2953
2949
|
apply_formatting: request.apply_formatting,
|
|
2954
2950
|
apply_vis: request.apply_vis,
|
|
@@ -2960,79 +2956,78 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
2960
2956
|
cache_only: request.cache_only,
|
|
2961
2957
|
path_prefix: request.path_prefix,
|
|
2962
2958
|
rebuild_pdts: request.rebuild_pdts,
|
|
2963
|
-
server_table_calcs: request.server_table_calcs
|
|
2964
|
-
enable_oauth_error_response: request.enable_oauth_error_response
|
|
2959
|
+
server_table_calcs: request.server_table_calcs
|
|
2965
2960
|
}, request.body, options);
|
|
2966
2961
|
})();
|
|
2967
2962
|
}
|
|
2968
2963
|
run_url_encoded_query(callback, model_name, view_name, result_format, options) {
|
|
2969
|
-
var
|
|
2964
|
+
var _this341 = this;
|
|
2970
2965
|
return _asyncToGenerator(function* () {
|
|
2971
2966
|
model_name = (0, _sdkRtl.encodeParam)(model_name);
|
|
2972
2967
|
view_name = (0, _sdkRtl.encodeParam)(view_name);
|
|
2973
2968
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
2974
|
-
return
|
|
2969
|
+
return _this341.authStream(callback, 'GET', "/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
2975
2970
|
})();
|
|
2976
2971
|
}
|
|
2977
2972
|
merge_query(callback, merge_query_id, fields, options) {
|
|
2978
|
-
var
|
|
2973
|
+
var _this342 = this;
|
|
2979
2974
|
return _asyncToGenerator(function* () {
|
|
2980
2975
|
merge_query_id = (0, _sdkRtl.encodeParam)(merge_query_id);
|
|
2981
|
-
return
|
|
2976
|
+
return _this342.authStream(callback, 'GET', "/merge_queries/".concat(merge_query_id), {
|
|
2982
2977
|
fields
|
|
2983
2978
|
}, null, options);
|
|
2984
2979
|
})();
|
|
2985
2980
|
}
|
|
2986
2981
|
create_merge_query(callback, body, fields, options) {
|
|
2987
|
-
var
|
|
2982
|
+
var _this343 = this;
|
|
2988
2983
|
return _asyncToGenerator(function* () {
|
|
2989
|
-
return
|
|
2984
|
+
return _this343.authStream(callback, 'POST', '/merge_queries', {
|
|
2990
2985
|
fields
|
|
2991
2986
|
}, body, options);
|
|
2992
2987
|
})();
|
|
2993
2988
|
}
|
|
2994
2989
|
all_running_queries(callback, options) {
|
|
2995
|
-
var
|
|
2990
|
+
var _this344 = this;
|
|
2996
2991
|
return _asyncToGenerator(function* () {
|
|
2997
|
-
return
|
|
2992
|
+
return _this344.authStream(callback, 'GET', '/running_queries', null, null, options);
|
|
2998
2993
|
})();
|
|
2999
2994
|
}
|
|
3000
2995
|
kill_query(callback, query_task_id, options) {
|
|
3001
|
-
var
|
|
2996
|
+
var _this345 = this;
|
|
3002
2997
|
return _asyncToGenerator(function* () {
|
|
3003
2998
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
3004
|
-
return
|
|
2999
|
+
return _this345.authStream(callback, 'DELETE', "/running_queries/".concat(query_task_id), null, null, options);
|
|
3005
3000
|
})();
|
|
3006
3001
|
}
|
|
3007
3002
|
create_sql_query(callback, body, options) {
|
|
3008
|
-
var
|
|
3003
|
+
var _this346 = this;
|
|
3009
3004
|
return _asyncToGenerator(function* () {
|
|
3010
|
-
return
|
|
3005
|
+
return _this346.authStream(callback, 'POST', '/sql_queries', null, body, options);
|
|
3011
3006
|
})();
|
|
3012
3007
|
}
|
|
3013
3008
|
sql_query(callback, slug, options) {
|
|
3014
|
-
var
|
|
3009
|
+
var _this347 = this;
|
|
3015
3010
|
return _asyncToGenerator(function* () {
|
|
3016
3011
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
3017
|
-
return
|
|
3012
|
+
return _this347.authStream(callback, 'GET', "/sql_queries/".concat(slug), null, null, options);
|
|
3018
3013
|
})();
|
|
3019
3014
|
}
|
|
3020
3015
|
run_sql_query(callback, slug, result_format, download, options) {
|
|
3021
|
-
var
|
|
3016
|
+
var _this348 = this;
|
|
3022
3017
|
return _asyncToGenerator(function* () {
|
|
3023
3018
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
3024
3019
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
3025
|
-
return
|
|
3020
|
+
return _this348.authStream(callback, 'POST', "/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
3026
3021
|
download
|
|
3027
3022
|
}, null, options);
|
|
3028
3023
|
})();
|
|
3029
3024
|
}
|
|
3030
3025
|
create_look_render_task(callback, look_id, result_format, width, height, fields, options) {
|
|
3031
|
-
var
|
|
3026
|
+
var _this349 = this;
|
|
3032
3027
|
return _asyncToGenerator(function* () {
|
|
3033
3028
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
3034
3029
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
3035
|
-
return
|
|
3030
|
+
return _this349.authStream(callback, 'POST', "/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
3036
3031
|
width,
|
|
3037
3032
|
height,
|
|
3038
3033
|
fields
|
|
@@ -3040,11 +3035,11 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3040
3035
|
})();
|
|
3041
3036
|
}
|
|
3042
3037
|
create_query_render_task(callback, query_id, result_format, width, height, fields, options) {
|
|
3043
|
-
var
|
|
3038
|
+
var _this350 = this;
|
|
3044
3039
|
return _asyncToGenerator(function* () {
|
|
3045
3040
|
query_id = (0, _sdkRtl.encodeParam)(query_id);
|
|
3046
3041
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
3047
|
-
return
|
|
3042
|
+
return _this350.authStream(callback, 'POST', "/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
3048
3043
|
width,
|
|
3049
3044
|
height,
|
|
3050
3045
|
fields
|
|
@@ -3052,11 +3047,11 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3052
3047
|
})();
|
|
3053
3048
|
}
|
|
3054
3049
|
create_dashboard_render_task(callback, request, options) {
|
|
3055
|
-
var
|
|
3050
|
+
var _this351 = this;
|
|
3056
3051
|
return _asyncToGenerator(function* () {
|
|
3057
3052
|
request.dashboard_id = (0, _sdkRtl.encodeParam)(request.dashboard_id);
|
|
3058
3053
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
3059
|
-
return
|
|
3054
|
+
return _this351.authStream(callback, 'POST', "/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
3060
3055
|
width: request.width,
|
|
3061
3056
|
height: request.height,
|
|
3062
3057
|
fields: request.fields,
|
|
@@ -3068,27 +3063,27 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3068
3063
|
})();
|
|
3069
3064
|
}
|
|
3070
3065
|
render_task(callback, render_task_id, fields, options) {
|
|
3071
|
-
var
|
|
3066
|
+
var _this352 = this;
|
|
3072
3067
|
return _asyncToGenerator(function* () {
|
|
3073
3068
|
render_task_id = (0, _sdkRtl.encodeParam)(render_task_id);
|
|
3074
|
-
return
|
|
3069
|
+
return _this352.authStream(callback, 'GET', "/render_tasks/".concat(render_task_id), {
|
|
3075
3070
|
fields
|
|
3076
3071
|
}, null, options);
|
|
3077
3072
|
})();
|
|
3078
3073
|
}
|
|
3079
3074
|
render_task_results(callback, render_task_id, options) {
|
|
3080
|
-
var
|
|
3075
|
+
var _this353 = this;
|
|
3081
3076
|
return _asyncToGenerator(function* () {
|
|
3082
3077
|
render_task_id = (0, _sdkRtl.encodeParam)(render_task_id);
|
|
3083
|
-
return
|
|
3078
|
+
return _this353.authStream(callback, 'GET', "/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3084
3079
|
})();
|
|
3085
3080
|
}
|
|
3086
3081
|
create_dashboard_element_render_task(callback, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3087
|
-
var
|
|
3082
|
+
var _this354 = this;
|
|
3088
3083
|
return _asyncToGenerator(function* () {
|
|
3089
3084
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
3090
3085
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
3091
|
-
return
|
|
3086
|
+
return _this354.authStream(callback, 'POST', "/render_tasks/dashboard_elements/".concat(dashboard_element_id, "/").concat(result_format), {
|
|
3092
3087
|
width,
|
|
3093
3088
|
height,
|
|
3094
3089
|
fields
|
|
@@ -3096,9 +3091,9 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3096
3091
|
})();
|
|
3097
3092
|
}
|
|
3098
3093
|
search_reports(callback, request, options) {
|
|
3099
|
-
var
|
|
3094
|
+
var _this355 = this;
|
|
3100
3095
|
return _asyncToGenerator(function* () {
|
|
3101
|
-
return
|
|
3096
|
+
return _this355.authStream(callback, 'GET', '/reports/search', {
|
|
3102
3097
|
folder_id: request.folder_id,
|
|
3103
3098
|
favorite: request.favorite,
|
|
3104
3099
|
recent: request.recent,
|
|
@@ -3112,9 +3107,9 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3112
3107
|
})();
|
|
3113
3108
|
}
|
|
3114
3109
|
search_model_sets(callback, request, options) {
|
|
3115
|
-
var
|
|
3110
|
+
var _this356 = this;
|
|
3116
3111
|
return _asyncToGenerator(function* () {
|
|
3117
|
-
return
|
|
3112
|
+
return _this356.authStream(callback, 'GET', '/model_sets/search', {
|
|
3118
3113
|
fields: request.fields,
|
|
3119
3114
|
limit: request.limit,
|
|
3120
3115
|
offset: request.offset,
|
|
@@ -3129,52 +3124,52 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3129
3124
|
})();
|
|
3130
3125
|
}
|
|
3131
3126
|
model_set(callback, model_set_id, fields, options) {
|
|
3132
|
-
var
|
|
3127
|
+
var _this357 = this;
|
|
3133
3128
|
return _asyncToGenerator(function* () {
|
|
3134
3129
|
model_set_id = (0, _sdkRtl.encodeParam)(model_set_id);
|
|
3135
|
-
return
|
|
3130
|
+
return _this357.authStream(callback, 'GET', "/model_sets/".concat(model_set_id), {
|
|
3136
3131
|
fields
|
|
3137
3132
|
}, null, options);
|
|
3138
3133
|
})();
|
|
3139
3134
|
}
|
|
3140
3135
|
update_model_set(callback, model_set_id, body, options) {
|
|
3141
|
-
var
|
|
3136
|
+
var _this358 = this;
|
|
3142
3137
|
return _asyncToGenerator(function* () {
|
|
3143
3138
|
model_set_id = (0, _sdkRtl.encodeParam)(model_set_id);
|
|
3144
|
-
return
|
|
3139
|
+
return _this358.authStream(callback, 'PATCH', "/model_sets/".concat(model_set_id), null, body, options);
|
|
3145
3140
|
})();
|
|
3146
3141
|
}
|
|
3147
3142
|
delete_model_set(callback, model_set_id, options) {
|
|
3148
|
-
var
|
|
3143
|
+
var _this359 = this;
|
|
3149
3144
|
return _asyncToGenerator(function* () {
|
|
3150
3145
|
model_set_id = (0, _sdkRtl.encodeParam)(model_set_id);
|
|
3151
|
-
return
|
|
3146
|
+
return _this359.authStream(callback, 'DELETE', "/model_sets/".concat(model_set_id), null, null, options);
|
|
3152
3147
|
})();
|
|
3153
3148
|
}
|
|
3154
3149
|
all_model_sets(callback, fields, options) {
|
|
3155
|
-
var
|
|
3150
|
+
var _this360 = this;
|
|
3156
3151
|
return _asyncToGenerator(function* () {
|
|
3157
|
-
return
|
|
3152
|
+
return _this360.authStream(callback, 'GET', '/model_sets', {
|
|
3158
3153
|
fields
|
|
3159
3154
|
}, null, options);
|
|
3160
3155
|
})();
|
|
3161
3156
|
}
|
|
3162
3157
|
create_model_set(callback, body, options) {
|
|
3163
|
-
var
|
|
3158
|
+
var _this361 = this;
|
|
3164
3159
|
return _asyncToGenerator(function* () {
|
|
3165
|
-
return
|
|
3160
|
+
return _this361.authStream(callback, 'POST', '/model_sets', null, body, options);
|
|
3166
3161
|
})();
|
|
3167
3162
|
}
|
|
3168
3163
|
all_permissions(callback, options) {
|
|
3169
|
-
var
|
|
3164
|
+
var _this362 = this;
|
|
3170
3165
|
return _asyncToGenerator(function* () {
|
|
3171
|
-
return
|
|
3166
|
+
return _this362.authStream(callback, 'GET', '/permissions', null, null, options);
|
|
3172
3167
|
})();
|
|
3173
3168
|
}
|
|
3174
3169
|
search_permission_sets(callback, request, options) {
|
|
3175
|
-
var
|
|
3170
|
+
var _this363 = this;
|
|
3176
3171
|
return _asyncToGenerator(function* () {
|
|
3177
|
-
return
|
|
3172
|
+
return _this363.authStream(callback, 'GET', '/permission_sets/search', {
|
|
3178
3173
|
fields: request.fields,
|
|
3179
3174
|
limit: request.limit,
|
|
3180
3175
|
offset: request.offset,
|
|
@@ -3189,46 +3184,46 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3189
3184
|
})();
|
|
3190
3185
|
}
|
|
3191
3186
|
permission_set(callback, permission_set_id, fields, options) {
|
|
3192
|
-
var
|
|
3187
|
+
var _this364 = this;
|
|
3193
3188
|
return _asyncToGenerator(function* () {
|
|
3194
3189
|
permission_set_id = (0, _sdkRtl.encodeParam)(permission_set_id);
|
|
3195
|
-
return
|
|
3190
|
+
return _this364.authStream(callback, 'GET', "/permission_sets/".concat(permission_set_id), {
|
|
3196
3191
|
fields
|
|
3197
3192
|
}, null, options);
|
|
3198
3193
|
})();
|
|
3199
3194
|
}
|
|
3200
3195
|
update_permission_set(callback, permission_set_id, body, options) {
|
|
3201
|
-
var
|
|
3196
|
+
var _this365 = this;
|
|
3202
3197
|
return _asyncToGenerator(function* () {
|
|
3203
3198
|
permission_set_id = (0, _sdkRtl.encodeParam)(permission_set_id);
|
|
3204
|
-
return
|
|
3199
|
+
return _this365.authStream(callback, 'PATCH', "/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3205
3200
|
})();
|
|
3206
3201
|
}
|
|
3207
3202
|
delete_permission_set(callback, permission_set_id, options) {
|
|
3208
|
-
var
|
|
3203
|
+
var _this366 = this;
|
|
3209
3204
|
return _asyncToGenerator(function* () {
|
|
3210
3205
|
permission_set_id = (0, _sdkRtl.encodeParam)(permission_set_id);
|
|
3211
|
-
return
|
|
3206
|
+
return _this366.authStream(callback, 'DELETE', "/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3212
3207
|
})();
|
|
3213
3208
|
}
|
|
3214
3209
|
all_permission_sets(callback, fields, options) {
|
|
3215
|
-
var
|
|
3210
|
+
var _this367 = this;
|
|
3216
3211
|
return _asyncToGenerator(function* () {
|
|
3217
|
-
return
|
|
3212
|
+
return _this367.authStream(callback, 'GET', '/permission_sets', {
|
|
3218
3213
|
fields
|
|
3219
3214
|
}, null, options);
|
|
3220
3215
|
})();
|
|
3221
3216
|
}
|
|
3222
3217
|
create_permission_set(callback, body, options) {
|
|
3223
|
-
var
|
|
3218
|
+
var _this368 = this;
|
|
3224
3219
|
return _asyncToGenerator(function* () {
|
|
3225
|
-
return
|
|
3220
|
+
return _this368.authStream(callback, 'POST', '/permission_sets', null, body, options);
|
|
3226
3221
|
})();
|
|
3227
3222
|
}
|
|
3228
3223
|
all_roles(callback, request, options) {
|
|
3229
|
-
var
|
|
3224
|
+
var _this369 = this;
|
|
3230
3225
|
return _asyncToGenerator(function* () {
|
|
3231
|
-
return
|
|
3226
|
+
return _this369.authStream(callback, 'GET', '/roles', {
|
|
3232
3227
|
fields: request.fields,
|
|
3233
3228
|
ids: request.ids,
|
|
3234
3229
|
get_all_support_roles: request.get_all_support_roles
|
|
@@ -3236,15 +3231,15 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3236
3231
|
})();
|
|
3237
3232
|
}
|
|
3238
3233
|
create_role(callback, body, options) {
|
|
3239
|
-
var
|
|
3234
|
+
var _this370 = this;
|
|
3240
3235
|
return _asyncToGenerator(function* () {
|
|
3241
|
-
return
|
|
3236
|
+
return _this370.authStream(callback, 'POST', '/roles', null, body, options);
|
|
3242
3237
|
})();
|
|
3243
3238
|
}
|
|
3244
3239
|
search_roles(callback, request, options) {
|
|
3245
|
-
var
|
|
3240
|
+
var _this371 = this;
|
|
3246
3241
|
return _asyncToGenerator(function* () {
|
|
3247
|
-
return
|
|
3242
|
+
return _this371.authStream(callback, 'GET', '/roles/search', {
|
|
3248
3243
|
fields: request.fields,
|
|
3249
3244
|
limit: request.limit,
|
|
3250
3245
|
offset: request.offset,
|
|
@@ -3259,9 +3254,9 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3259
3254
|
})();
|
|
3260
3255
|
}
|
|
3261
3256
|
search_roles_with_user_count(callback, request, options) {
|
|
3262
|
-
var
|
|
3257
|
+
var _this372 = this;
|
|
3263
3258
|
return _asyncToGenerator(function* () {
|
|
3264
|
-
return
|
|
3259
|
+
return _this372.authStream(callback, 'GET', '/roles/search/with_user_count', {
|
|
3265
3260
|
fields: request.fields,
|
|
3266
3261
|
limit: request.limit,
|
|
3267
3262
|
offset: request.offset,
|
|
@@ -3274,95 +3269,95 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3274
3269
|
})();
|
|
3275
3270
|
}
|
|
3276
3271
|
role(callback, role_id, options) {
|
|
3277
|
-
var
|
|
3272
|
+
var _this373 = this;
|
|
3278
3273
|
return _asyncToGenerator(function* () {
|
|
3279
3274
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3280
|
-
return
|
|
3275
|
+
return _this373.authStream(callback, 'GET', "/roles/".concat(role_id), null, null, options);
|
|
3281
3276
|
})();
|
|
3282
3277
|
}
|
|
3283
3278
|
update_role(callback, role_id, body, options) {
|
|
3284
|
-
var
|
|
3279
|
+
var _this374 = this;
|
|
3285
3280
|
return _asyncToGenerator(function* () {
|
|
3286
3281
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3287
|
-
return
|
|
3282
|
+
return _this374.authStream(callback, 'PATCH', "/roles/".concat(role_id), null, body, options);
|
|
3288
3283
|
})();
|
|
3289
3284
|
}
|
|
3290
3285
|
delete_role(callback, role_id, options) {
|
|
3291
|
-
var
|
|
3286
|
+
var _this375 = this;
|
|
3292
3287
|
return _asyncToGenerator(function* () {
|
|
3293
3288
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3294
|
-
return
|
|
3289
|
+
return _this375.authStream(callback, 'DELETE', "/roles/".concat(role_id), null, null, options);
|
|
3295
3290
|
})();
|
|
3296
3291
|
}
|
|
3297
3292
|
role_groups(callback, role_id, fields, options) {
|
|
3298
|
-
var
|
|
3293
|
+
var _this376 = this;
|
|
3299
3294
|
return _asyncToGenerator(function* () {
|
|
3300
3295
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3301
|
-
return
|
|
3296
|
+
return _this376.authStream(callback, 'GET', "/roles/".concat(role_id, "/groups"), {
|
|
3302
3297
|
fields
|
|
3303
3298
|
}, null, options);
|
|
3304
3299
|
})();
|
|
3305
3300
|
}
|
|
3306
3301
|
set_role_groups(callback, role_id, body, options) {
|
|
3307
|
-
var
|
|
3302
|
+
var _this377 = this;
|
|
3308
3303
|
return _asyncToGenerator(function* () {
|
|
3309
3304
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3310
|
-
return
|
|
3305
|
+
return _this377.authStream(callback, 'PUT', "/roles/".concat(role_id, "/groups"), null, body, options);
|
|
3311
3306
|
})();
|
|
3312
3307
|
}
|
|
3313
3308
|
role_users(callback, request, options) {
|
|
3314
|
-
var
|
|
3309
|
+
var _this378 = this;
|
|
3315
3310
|
return _asyncToGenerator(function* () {
|
|
3316
3311
|
request.role_id = (0, _sdkRtl.encodeParam)(request.role_id);
|
|
3317
|
-
return
|
|
3312
|
+
return _this378.authStream(callback, 'GET', "/roles/".concat(request.role_id, "/users"), {
|
|
3318
3313
|
fields: request.fields,
|
|
3319
3314
|
direct_association_only: request.direct_association_only
|
|
3320
3315
|
}, null, options);
|
|
3321
3316
|
})();
|
|
3322
3317
|
}
|
|
3323
3318
|
set_role_users(callback, role_id, body, options) {
|
|
3324
|
-
var
|
|
3319
|
+
var _this379 = this;
|
|
3325
3320
|
return _asyncToGenerator(function* () {
|
|
3326
3321
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3327
|
-
return
|
|
3322
|
+
return _this379.authStream(callback, 'PUT', "/roles/".concat(role_id, "/users"), null, body, options);
|
|
3328
3323
|
})();
|
|
3329
3324
|
}
|
|
3330
3325
|
scheduled_plans_for_space(callback, space_id, fields, options) {
|
|
3331
|
-
var
|
|
3326
|
+
var _this380 = this;
|
|
3332
3327
|
return _asyncToGenerator(function* () {
|
|
3333
3328
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
3334
|
-
return
|
|
3329
|
+
return _this380.authStream(callback, 'GET', "/scheduled_plans/space/".concat(space_id), {
|
|
3335
3330
|
fields
|
|
3336
3331
|
}, null, options);
|
|
3337
3332
|
})();
|
|
3338
3333
|
}
|
|
3339
3334
|
scheduled_plan(callback, scheduled_plan_id, fields, options) {
|
|
3340
|
-
var
|
|
3335
|
+
var _this381 = this;
|
|
3341
3336
|
return _asyncToGenerator(function* () {
|
|
3342
3337
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
3343
|
-
return
|
|
3338
|
+
return _this381.authStream(callback, 'GET', "/scheduled_plans/".concat(scheduled_plan_id), {
|
|
3344
3339
|
fields
|
|
3345
3340
|
}, null, options);
|
|
3346
3341
|
})();
|
|
3347
3342
|
}
|
|
3348
3343
|
update_scheduled_plan(callback, scheduled_plan_id, body, options) {
|
|
3349
|
-
var
|
|
3344
|
+
var _this382 = this;
|
|
3350
3345
|
return _asyncToGenerator(function* () {
|
|
3351
3346
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
3352
|
-
return
|
|
3347
|
+
return _this382.authStream(callback, 'PATCH', "/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
3353
3348
|
})();
|
|
3354
3349
|
}
|
|
3355
3350
|
delete_scheduled_plan(callback, scheduled_plan_id, options) {
|
|
3356
|
-
var
|
|
3351
|
+
var _this383 = this;
|
|
3357
3352
|
return _asyncToGenerator(function* () {
|
|
3358
3353
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
3359
|
-
return
|
|
3354
|
+
return _this383.authStream(callback, 'DELETE', "/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
3360
3355
|
})();
|
|
3361
3356
|
}
|
|
3362
3357
|
all_scheduled_plans(callback, request, options) {
|
|
3363
|
-
var
|
|
3358
|
+
var _this384 = this;
|
|
3364
3359
|
return _asyncToGenerator(function* () {
|
|
3365
|
-
return
|
|
3360
|
+
return _this384.authStream(callback, 'GET', '/scheduled_plans', {
|
|
3366
3361
|
user_id: request.user_id,
|
|
3367
3362
|
fields: request.fields,
|
|
3368
3363
|
all_users: request.all_users
|
|
@@ -3370,21 +3365,21 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3370
3365
|
})();
|
|
3371
3366
|
}
|
|
3372
3367
|
create_scheduled_plan(callback, body, options) {
|
|
3373
|
-
var
|
|
3368
|
+
var _this385 = this;
|
|
3374
3369
|
return _asyncToGenerator(function* () {
|
|
3375
|
-
return
|
|
3370
|
+
return _this385.authStream(callback, 'POST', '/scheduled_plans', null, body, options);
|
|
3376
3371
|
})();
|
|
3377
3372
|
}
|
|
3378
3373
|
scheduled_plan_run_once(callback, body, options) {
|
|
3379
|
-
var
|
|
3374
|
+
var _this386 = this;
|
|
3380
3375
|
return _asyncToGenerator(function* () {
|
|
3381
|
-
return
|
|
3376
|
+
return _this386.authStream(callback, 'POST', '/scheduled_plans/run_once', null, body, options);
|
|
3382
3377
|
})();
|
|
3383
3378
|
}
|
|
3384
3379
|
search_scheduled_plans(callback, request, options) {
|
|
3385
|
-
var
|
|
3380
|
+
var _this387 = this;
|
|
3386
3381
|
return _asyncToGenerator(function* () {
|
|
3387
|
-
return
|
|
3382
|
+
return _this387.authStream(callback, 'GET', '/scheduled_plans/search', {
|
|
3388
3383
|
user_id: request.user_id,
|
|
3389
3384
|
fields: request.fields,
|
|
3390
3385
|
all_users: request.all_users,
|
|
@@ -3405,10 +3400,10 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3405
3400
|
})();
|
|
3406
3401
|
}
|
|
3407
3402
|
scheduled_plans_for_look(callback, request, options) {
|
|
3408
|
-
var
|
|
3403
|
+
var _this388 = this;
|
|
3409
3404
|
return _asyncToGenerator(function* () {
|
|
3410
3405
|
request.look_id = (0, _sdkRtl.encodeParam)(request.look_id);
|
|
3411
|
-
return
|
|
3406
|
+
return _this388.authStream(callback, 'GET', "/scheduled_plans/look/".concat(request.look_id), {
|
|
3412
3407
|
user_id: request.user_id,
|
|
3413
3408
|
fields: request.fields,
|
|
3414
3409
|
all_users: request.all_users
|
|
@@ -3416,10 +3411,10 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3416
3411
|
})();
|
|
3417
3412
|
}
|
|
3418
3413
|
scheduled_plans_for_dashboard(callback, request, options) {
|
|
3419
|
-
var
|
|
3414
|
+
var _this389 = this;
|
|
3420
3415
|
return _asyncToGenerator(function* () {
|
|
3421
3416
|
request.dashboard_id = (0, _sdkRtl.encodeParam)(request.dashboard_id);
|
|
3422
|
-
return
|
|
3417
|
+
return _this389.authStream(callback, 'GET', "/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
3423
3418
|
user_id: request.user_id,
|
|
3424
3419
|
all_users: request.all_users,
|
|
3425
3420
|
fields: request.fields
|
|
@@ -3427,10 +3422,10 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3427
3422
|
})();
|
|
3428
3423
|
}
|
|
3429
3424
|
scheduled_plans_for_lookml_dashboard(callback, request, options) {
|
|
3430
|
-
var
|
|
3425
|
+
var _this390 = this;
|
|
3431
3426
|
return _asyncToGenerator(function* () {
|
|
3432
3427
|
request.lookml_dashboard_id = (0, _sdkRtl.encodeParam)(request.lookml_dashboard_id);
|
|
3433
|
-
return
|
|
3428
|
+
return _this390.authStream(callback, 'GET', "/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
3434
3429
|
user_id: request.user_id,
|
|
3435
3430
|
fields: request.fields,
|
|
3436
3431
|
all_users: request.all_users
|
|
@@ -3438,70 +3433,70 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3438
3433
|
})();
|
|
3439
3434
|
}
|
|
3440
3435
|
scheduled_plan_run_once_by_id(callback, scheduled_plan_id, body, options) {
|
|
3441
|
-
var
|
|
3436
|
+
var _this391 = this;
|
|
3442
3437
|
return _asyncToGenerator(function* () {
|
|
3443
3438
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
3444
|
-
return
|
|
3439
|
+
return _this391.authStream(callback, 'POST', "/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
3445
3440
|
})();
|
|
3446
3441
|
}
|
|
3447
3442
|
update_self_service_explore_certification(callback, model_name, body, options) {
|
|
3448
|
-
var
|
|
3443
|
+
var _this392 = this;
|
|
3449
3444
|
return _asyncToGenerator(function* () {
|
|
3450
3445
|
model_name = (0, _sdkRtl.encodeParam)(model_name);
|
|
3451
|
-
return
|
|
3446
|
+
return _this392.authStream(callback, 'PATCH', "/self_service_models/".concat(model_name, "/certification"), null, body, options);
|
|
3452
3447
|
})();
|
|
3453
3448
|
}
|
|
3454
3449
|
session(callback, options) {
|
|
3455
|
-
var
|
|
3450
|
+
var _this393 = this;
|
|
3456
3451
|
return _asyncToGenerator(function* () {
|
|
3457
|
-
return
|
|
3452
|
+
return _this393.authStream(callback, 'GET', '/session', null, null, options);
|
|
3458
3453
|
})();
|
|
3459
3454
|
}
|
|
3460
3455
|
update_session(callback, body, options) {
|
|
3461
|
-
var
|
|
3456
|
+
var _this394 = this;
|
|
3462
3457
|
return _asyncToGenerator(function* () {
|
|
3463
|
-
return
|
|
3458
|
+
return _this394.authStream(callback, 'PATCH', '/session', null, body, options);
|
|
3464
3459
|
})();
|
|
3465
3460
|
}
|
|
3466
3461
|
sql_interface_metadata(callback, avatica_request, options) {
|
|
3467
|
-
var
|
|
3462
|
+
var _this395 = this;
|
|
3468
3463
|
return _asyncToGenerator(function* () {
|
|
3469
|
-
return
|
|
3464
|
+
return _this395.authStream(callback, 'GET', '/sql_interface_queries/metadata', {
|
|
3470
3465
|
avatica_request
|
|
3471
3466
|
}, null, options);
|
|
3472
3467
|
})();
|
|
3473
3468
|
}
|
|
3474
3469
|
run_sql_interface_query(callback, query_id, result_format, options) {
|
|
3475
|
-
var
|
|
3470
|
+
var _this396 = this;
|
|
3476
3471
|
return _asyncToGenerator(function* () {
|
|
3477
3472
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
3478
|
-
return
|
|
3473
|
+
return _this396.authStream(callback, 'GET', "/sql_interface_queries/".concat(query_id, "/run/").concat(result_format), null, null, options);
|
|
3479
3474
|
})();
|
|
3480
3475
|
}
|
|
3481
3476
|
create_sql_interface_query(callback, body, options) {
|
|
3482
|
-
var
|
|
3477
|
+
var _this397 = this;
|
|
3483
3478
|
return _asyncToGenerator(function* () {
|
|
3484
|
-
return
|
|
3479
|
+
return _this397.authStream(callback, 'POST', '/sql_interface_queries', null, body, options);
|
|
3485
3480
|
})();
|
|
3486
3481
|
}
|
|
3487
3482
|
all_themes(callback, fields, options) {
|
|
3488
|
-
var
|
|
3483
|
+
var _this398 = this;
|
|
3489
3484
|
return _asyncToGenerator(function* () {
|
|
3490
|
-
return
|
|
3485
|
+
return _this398.authStream(callback, 'GET', '/themes', {
|
|
3491
3486
|
fields
|
|
3492
3487
|
}, null, options);
|
|
3493
3488
|
})();
|
|
3494
3489
|
}
|
|
3495
3490
|
create_theme(callback, body, options) {
|
|
3496
|
-
var
|
|
3491
|
+
var _this399 = this;
|
|
3497
3492
|
return _asyncToGenerator(function* () {
|
|
3498
|
-
return
|
|
3493
|
+
return _this399.authStream(callback, 'POST', '/themes', null, body, options);
|
|
3499
3494
|
})();
|
|
3500
3495
|
}
|
|
3501
3496
|
search_themes(callback, request, options) {
|
|
3502
|
-
var
|
|
3497
|
+
var _this400 = this;
|
|
3503
3498
|
return _asyncToGenerator(function* () {
|
|
3504
|
-
return
|
|
3499
|
+
return _this400.authStream(callback, 'GET', '/themes/search', {
|
|
3505
3500
|
id: request.id,
|
|
3506
3501
|
name: request.name,
|
|
3507
3502
|
begin_at: request.begin_at,
|
|
@@ -3515,25 +3510,25 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3515
3510
|
})();
|
|
3516
3511
|
}
|
|
3517
3512
|
default_theme(callback, ts, options) {
|
|
3518
|
-
var
|
|
3513
|
+
var _this401 = this;
|
|
3519
3514
|
return _asyncToGenerator(function* () {
|
|
3520
|
-
return
|
|
3515
|
+
return _this401.authStream(callback, 'GET', '/themes/default', {
|
|
3521
3516
|
ts
|
|
3522
3517
|
}, null, options);
|
|
3523
3518
|
})();
|
|
3524
3519
|
}
|
|
3525
3520
|
set_default_theme(callback, name, options) {
|
|
3526
|
-
var
|
|
3521
|
+
var _this402 = this;
|
|
3527
3522
|
return _asyncToGenerator(function* () {
|
|
3528
|
-
return
|
|
3523
|
+
return _this402.authStream(callback, 'PUT', '/themes/default', {
|
|
3529
3524
|
name
|
|
3530
3525
|
}, null, options);
|
|
3531
3526
|
})();
|
|
3532
3527
|
}
|
|
3533
3528
|
active_themes(callback, request, options) {
|
|
3534
|
-
var
|
|
3529
|
+
var _this403 = this;
|
|
3535
3530
|
return _asyncToGenerator(function* () {
|
|
3536
|
-
return
|
|
3531
|
+
return _this403.authStream(callback, 'GET', '/themes/active', {
|
|
3537
3532
|
name: request.name,
|
|
3538
3533
|
ts: request.ts,
|
|
3539
3534
|
fields: request.fields
|
|
@@ -3541,47 +3536,47 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3541
3536
|
})();
|
|
3542
3537
|
}
|
|
3543
3538
|
theme_or_default(callback, name, ts, options) {
|
|
3544
|
-
var
|
|
3539
|
+
var _this404 = this;
|
|
3545
3540
|
return _asyncToGenerator(function* () {
|
|
3546
|
-
return
|
|
3541
|
+
return _this404.authStream(callback, 'GET', '/themes/theme_or_default', {
|
|
3547
3542
|
name,
|
|
3548
3543
|
ts
|
|
3549
3544
|
}, null, options);
|
|
3550
3545
|
})();
|
|
3551
3546
|
}
|
|
3552
3547
|
validate_theme(callback, body, options) {
|
|
3553
|
-
var
|
|
3548
|
+
var _this405 = this;
|
|
3554
3549
|
return _asyncToGenerator(function* () {
|
|
3555
|
-
return
|
|
3550
|
+
return _this405.authStream(callback, 'POST', '/themes/validate', null, body, options);
|
|
3556
3551
|
})();
|
|
3557
3552
|
}
|
|
3558
3553
|
theme(callback, theme_id, fields, options) {
|
|
3559
|
-
var
|
|
3554
|
+
var _this406 = this;
|
|
3560
3555
|
return _asyncToGenerator(function* () {
|
|
3561
3556
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
3562
|
-
return
|
|
3557
|
+
return _this406.authStream(callback, 'GET', "/themes/".concat(theme_id), {
|
|
3563
3558
|
fields
|
|
3564
3559
|
}, null, options);
|
|
3565
3560
|
})();
|
|
3566
3561
|
}
|
|
3567
3562
|
update_theme(callback, theme_id, body, options) {
|
|
3568
|
-
var
|
|
3563
|
+
var _this407 = this;
|
|
3569
3564
|
return _asyncToGenerator(function* () {
|
|
3570
3565
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
3571
|
-
return
|
|
3566
|
+
return _this407.authStream(callback, 'PATCH', "/themes/".concat(theme_id), null, body, options);
|
|
3572
3567
|
})();
|
|
3573
3568
|
}
|
|
3574
3569
|
delete_theme(callback, theme_id, options) {
|
|
3575
|
-
var
|
|
3570
|
+
var _this408 = this;
|
|
3576
3571
|
return _asyncToGenerator(function* () {
|
|
3577
3572
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
3578
|
-
return
|
|
3573
|
+
return _this408.authStream(callback, 'DELETE', "/themes/".concat(theme_id), null, null, options);
|
|
3579
3574
|
})();
|
|
3580
3575
|
}
|
|
3581
3576
|
search_credentials_email(callback, request, options) {
|
|
3582
|
-
var
|
|
3577
|
+
var _this409 = this;
|
|
3583
3578
|
return _asyncToGenerator(function* () {
|
|
3584
|
-
return
|
|
3579
|
+
return _this409.authStream(callback, 'GET', '/credentials_email/search', {
|
|
3585
3580
|
fields: request.fields,
|
|
3586
3581
|
limit: request.limit,
|
|
3587
3582
|
offset: request.offset,
|
|
@@ -3594,17 +3589,17 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3594
3589
|
})();
|
|
3595
3590
|
}
|
|
3596
3591
|
me(callback, fields, options) {
|
|
3597
|
-
var
|
|
3592
|
+
var _this410 = this;
|
|
3598
3593
|
return _asyncToGenerator(function* () {
|
|
3599
|
-
return
|
|
3594
|
+
return _this410.authStream(callback, 'GET', '/user', {
|
|
3600
3595
|
fields
|
|
3601
3596
|
}, null, options);
|
|
3602
3597
|
})();
|
|
3603
3598
|
}
|
|
3604
3599
|
all_users(callback, request, options) {
|
|
3605
|
-
var
|
|
3600
|
+
var _this411 = this;
|
|
3606
3601
|
return _asyncToGenerator(function* () {
|
|
3607
|
-
return
|
|
3602
|
+
return _this411.authStream(callback, 'GET', '/users', {
|
|
3608
3603
|
fields: request.fields,
|
|
3609
3604
|
page: request.page,
|
|
3610
3605
|
per_page: request.per_page,
|
|
@@ -3616,17 +3611,17 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3616
3611
|
})();
|
|
3617
3612
|
}
|
|
3618
3613
|
create_user(callback, body, fields, options) {
|
|
3619
|
-
var
|
|
3614
|
+
var _this412 = this;
|
|
3620
3615
|
return _asyncToGenerator(function* () {
|
|
3621
|
-
return
|
|
3616
|
+
return _this412.authStream(callback, 'POST', '/users', {
|
|
3622
3617
|
fields
|
|
3623
3618
|
}, body, options);
|
|
3624
3619
|
})();
|
|
3625
3620
|
}
|
|
3626
3621
|
search_users(callback, request, options) {
|
|
3627
|
-
var
|
|
3622
|
+
var _this413 = this;
|
|
3628
3623
|
return _asyncToGenerator(function* () {
|
|
3629
|
-
return
|
|
3624
|
+
return _this413.authStream(callback, 'GET', '/users/search', {
|
|
3630
3625
|
fields: request.fields,
|
|
3631
3626
|
page: request.page,
|
|
3632
3627
|
per_page: request.per_page,
|
|
@@ -3650,10 +3645,10 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3650
3645
|
})();
|
|
3651
3646
|
}
|
|
3652
3647
|
search_users_names(callback, request, options) {
|
|
3653
|
-
var
|
|
3648
|
+
var _this414 = this;
|
|
3654
3649
|
return _asyncToGenerator(function* () {
|
|
3655
3650
|
request.pattern = (0, _sdkRtl.encodeParam)(request.pattern);
|
|
3656
|
-
return
|
|
3651
|
+
return _this414.authStream(callback, 'GET', "/users/search/names/".concat(request.pattern), {
|
|
3657
3652
|
fields: request.fields,
|
|
3658
3653
|
page: request.page,
|
|
3659
3654
|
per_page: request.per_page,
|
|
@@ -3670,329 +3665,329 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
3670
3665
|
})();
|
|
3671
3666
|
}
|
|
3672
3667
|
user(callback, user_id, fields, options) {
|
|
3673
|
-
var
|
|
3668
|
+
var _this415 = this;
|
|
3674
3669
|
return _asyncToGenerator(function* () {
|
|
3675
3670
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3676
|
-
return
|
|
3671
|
+
return _this415.authStream(callback, 'GET', "/users/".concat(user_id), {
|
|
3677
3672
|
fields
|
|
3678
3673
|
}, null, options);
|
|
3679
3674
|
})();
|
|
3680
3675
|
}
|
|
3681
3676
|
update_user(callback, user_id, body, fields, options) {
|
|
3682
|
-
var
|
|
3677
|
+
var _this416 = this;
|
|
3683
3678
|
return _asyncToGenerator(function* () {
|
|
3684
3679
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3685
|
-
return
|
|
3680
|
+
return _this416.authStream(callback, 'PATCH', "/users/".concat(user_id), {
|
|
3686
3681
|
fields
|
|
3687
3682
|
}, body, options);
|
|
3688
3683
|
})();
|
|
3689
3684
|
}
|
|
3690
3685
|
delete_user(callback, user_id, options) {
|
|
3691
|
-
var
|
|
3686
|
+
var _this417 = this;
|
|
3692
3687
|
return _asyncToGenerator(function* () {
|
|
3693
3688
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3694
|
-
return
|
|
3689
|
+
return _this417.authStream(callback, 'DELETE', "/users/".concat(user_id), null, null, options);
|
|
3695
3690
|
})();
|
|
3696
3691
|
}
|
|
3697
3692
|
user_for_credential(callback, credential_type, credential_id, fields, options) {
|
|
3698
|
-
var
|
|
3693
|
+
var _this418 = this;
|
|
3699
3694
|
return _asyncToGenerator(function* () {
|
|
3700
3695
|
credential_type = (0, _sdkRtl.encodeParam)(credential_type);
|
|
3701
3696
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
3702
|
-
return
|
|
3697
|
+
return _this418.authStream(callback, 'GET', "/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
3703
3698
|
fields
|
|
3704
3699
|
}, null, options);
|
|
3705
3700
|
})();
|
|
3706
3701
|
}
|
|
3707
3702
|
update_service_account(callback, user_id, body, fields, options) {
|
|
3708
|
-
var
|
|
3703
|
+
var _this419 = this;
|
|
3709
3704
|
return _asyncToGenerator(function* () {
|
|
3710
3705
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3711
|
-
return
|
|
3706
|
+
return _this419.authStream(callback, 'PATCH', "/users/service_accounts/".concat(user_id), {
|
|
3712
3707
|
fields
|
|
3713
3708
|
}, body, options);
|
|
3714
3709
|
})();
|
|
3715
3710
|
}
|
|
3716
3711
|
delete_service_account(callback, user_id, options) {
|
|
3717
|
-
var
|
|
3712
|
+
var _this420 = this;
|
|
3718
3713
|
return _asyncToGenerator(function* () {
|
|
3719
3714
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3720
|
-
return
|
|
3715
|
+
return _this420.authStream(callback, 'DELETE', "/users/service_accounts/".concat(user_id), null, null, options);
|
|
3721
3716
|
})();
|
|
3722
3717
|
}
|
|
3723
3718
|
user_credentials_email(callback, user_id, fields, options) {
|
|
3724
|
-
var
|
|
3719
|
+
var _this421 = this;
|
|
3725
3720
|
return _asyncToGenerator(function* () {
|
|
3726
3721
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3727
|
-
return
|
|
3722
|
+
return _this421.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_email"), {
|
|
3728
3723
|
fields
|
|
3729
3724
|
}, null, options);
|
|
3730
3725
|
})();
|
|
3731
3726
|
}
|
|
3732
3727
|
create_user_credentials_email(callback, user_id, body, fields, options) {
|
|
3733
|
-
var
|
|
3728
|
+
var _this422 = this;
|
|
3734
3729
|
return _asyncToGenerator(function* () {
|
|
3735
3730
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3736
|
-
return
|
|
3731
|
+
return _this422.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_email"), {
|
|
3737
3732
|
fields
|
|
3738
3733
|
}, body, options);
|
|
3739
3734
|
})();
|
|
3740
3735
|
}
|
|
3741
3736
|
update_user_credentials_email(callback, user_id, body, fields, options) {
|
|
3742
|
-
var
|
|
3737
|
+
var _this423 = this;
|
|
3743
3738
|
return _asyncToGenerator(function* () {
|
|
3744
3739
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3745
|
-
return
|
|
3740
|
+
return _this423.authStream(callback, 'PATCH', "/users/".concat(user_id, "/credentials_email"), {
|
|
3746
3741
|
fields
|
|
3747
3742
|
}, body, options);
|
|
3748
3743
|
})();
|
|
3749
3744
|
}
|
|
3750
3745
|
delete_user_credentials_email(callback, user_id, options) {
|
|
3751
|
-
var
|
|
3746
|
+
var _this424 = this;
|
|
3752
3747
|
return _asyncToGenerator(function* () {
|
|
3753
3748
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3754
|
-
return
|
|
3749
|
+
return _this424.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
3755
3750
|
})();
|
|
3756
3751
|
}
|
|
3757
3752
|
user_credentials_totp(callback, user_id, fields, options) {
|
|
3758
|
-
var
|
|
3753
|
+
var _this425 = this;
|
|
3759
3754
|
return _asyncToGenerator(function* () {
|
|
3760
3755
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3761
|
-
return
|
|
3756
|
+
return _this425.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_totp"), {
|
|
3762
3757
|
fields
|
|
3763
3758
|
}, null, options);
|
|
3764
3759
|
})();
|
|
3765
3760
|
}
|
|
3766
3761
|
create_user_credentials_totp(callback, user_id, body, fields, options) {
|
|
3767
|
-
var
|
|
3762
|
+
var _this426 = this;
|
|
3768
3763
|
return _asyncToGenerator(function* () {
|
|
3769
3764
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3770
|
-
return
|
|
3765
|
+
return _this426.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_totp"), {
|
|
3771
3766
|
fields
|
|
3772
3767
|
}, body, options);
|
|
3773
3768
|
})();
|
|
3774
3769
|
}
|
|
3775
3770
|
delete_user_credentials_totp(callback, user_id, options) {
|
|
3776
|
-
var
|
|
3771
|
+
var _this427 = this;
|
|
3777
3772
|
return _asyncToGenerator(function* () {
|
|
3778
3773
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3779
|
-
return
|
|
3774
|
+
return _this427.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
3780
3775
|
})();
|
|
3781
3776
|
}
|
|
3782
3777
|
user_credentials_ldap(callback, user_id, fields, options) {
|
|
3783
|
-
var
|
|
3778
|
+
var _this428 = this;
|
|
3784
3779
|
return _asyncToGenerator(function* () {
|
|
3785
3780
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3786
|
-
return
|
|
3781
|
+
return _this428.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_ldap"), {
|
|
3787
3782
|
fields
|
|
3788
3783
|
}, null, options);
|
|
3789
3784
|
})();
|
|
3790
3785
|
}
|
|
3791
3786
|
delete_user_credentials_ldap(callback, user_id, options) {
|
|
3792
|
-
var
|
|
3787
|
+
var _this429 = this;
|
|
3793
3788
|
return _asyncToGenerator(function* () {
|
|
3794
3789
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3795
|
-
return
|
|
3790
|
+
return _this429.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
3796
3791
|
})();
|
|
3797
3792
|
}
|
|
3798
3793
|
user_credentials_google(callback, user_id, fields, options) {
|
|
3799
|
-
var
|
|
3794
|
+
var _this430 = this;
|
|
3800
3795
|
return _asyncToGenerator(function* () {
|
|
3801
3796
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3802
|
-
return
|
|
3797
|
+
return _this430.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_google"), {
|
|
3803
3798
|
fields
|
|
3804
3799
|
}, null, options);
|
|
3805
3800
|
})();
|
|
3806
3801
|
}
|
|
3807
3802
|
delete_user_credentials_google(callback, user_id, options) {
|
|
3808
|
-
var
|
|
3803
|
+
var _this431 = this;
|
|
3809
3804
|
return _asyncToGenerator(function* () {
|
|
3810
3805
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3811
|
-
return
|
|
3806
|
+
return _this431.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
3812
3807
|
})();
|
|
3813
3808
|
}
|
|
3814
3809
|
user_credentials_saml(callback, user_id, fields, options) {
|
|
3815
|
-
var
|
|
3810
|
+
var _this432 = this;
|
|
3816
3811
|
return _asyncToGenerator(function* () {
|
|
3817
3812
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3818
|
-
return
|
|
3813
|
+
return _this432.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_saml"), {
|
|
3819
3814
|
fields
|
|
3820
3815
|
}, null, options);
|
|
3821
3816
|
})();
|
|
3822
3817
|
}
|
|
3823
3818
|
delete_user_credentials_saml(callback, user_id, options) {
|
|
3824
|
-
var
|
|
3819
|
+
var _this433 = this;
|
|
3825
3820
|
return _asyncToGenerator(function* () {
|
|
3826
3821
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3827
|
-
return
|
|
3822
|
+
return _this433.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
3828
3823
|
})();
|
|
3829
3824
|
}
|
|
3830
3825
|
user_credentials_oidc(callback, user_id, fields, options) {
|
|
3831
|
-
var
|
|
3826
|
+
var _this434 = this;
|
|
3832
3827
|
return _asyncToGenerator(function* () {
|
|
3833
3828
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3834
|
-
return
|
|
3829
|
+
return _this434.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_oidc"), {
|
|
3835
3830
|
fields
|
|
3836
3831
|
}, null, options);
|
|
3837
3832
|
})();
|
|
3838
3833
|
}
|
|
3839
3834
|
delete_user_credentials_oidc(callback, user_id, options) {
|
|
3840
|
-
var
|
|
3835
|
+
var _this435 = this;
|
|
3841
3836
|
return _asyncToGenerator(function* () {
|
|
3842
3837
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3843
|
-
return
|
|
3838
|
+
return _this435.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
3844
3839
|
})();
|
|
3845
3840
|
}
|
|
3846
3841
|
user_credentials_api3(callback, user_id, credentials_api3_id, fields, options) {
|
|
3847
|
-
var
|
|
3842
|
+
var _this436 = this;
|
|
3848
3843
|
return _asyncToGenerator(function* () {
|
|
3849
3844
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3850
3845
|
credentials_api3_id = (0, _sdkRtl.encodeParam)(credentials_api3_id);
|
|
3851
|
-
return
|
|
3846
|
+
return _this436.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
3852
3847
|
fields
|
|
3853
3848
|
}, null, options);
|
|
3854
3849
|
})();
|
|
3855
3850
|
}
|
|
3856
3851
|
update_user_credentials_api3(callback, user_id, credentials_api3_id, body, fields, options) {
|
|
3857
|
-
var
|
|
3852
|
+
var _this437 = this;
|
|
3858
3853
|
return _asyncToGenerator(function* () {
|
|
3859
3854
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3860
3855
|
credentials_api3_id = (0, _sdkRtl.encodeParam)(credentials_api3_id);
|
|
3861
|
-
return
|
|
3856
|
+
return _this437.authStream(callback, 'PATCH', "/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
3862
3857
|
fields
|
|
3863
3858
|
}, body, options);
|
|
3864
3859
|
})();
|
|
3865
3860
|
}
|
|
3866
3861
|
delete_user_credentials_api3(callback, user_id, credentials_api3_id, options) {
|
|
3867
|
-
var
|
|
3862
|
+
var _this438 = this;
|
|
3868
3863
|
return _asyncToGenerator(function* () {
|
|
3869
3864
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3870
3865
|
credentials_api3_id = (0, _sdkRtl.encodeParam)(credentials_api3_id);
|
|
3871
|
-
return
|
|
3866
|
+
return _this438.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
3872
3867
|
})();
|
|
3873
3868
|
}
|
|
3874
3869
|
all_user_credentials_api3s(callback, user_id, fields, options) {
|
|
3875
|
-
var
|
|
3870
|
+
var _this439 = this;
|
|
3876
3871
|
return _asyncToGenerator(function* () {
|
|
3877
3872
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3878
|
-
return
|
|
3873
|
+
return _this439.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_api3"), {
|
|
3879
3874
|
fields
|
|
3880
3875
|
}, null, options);
|
|
3881
3876
|
})();
|
|
3882
3877
|
}
|
|
3883
3878
|
create_user_credentials_api3(callback, user_id, fields, options) {
|
|
3884
|
-
var
|
|
3879
|
+
var _this440 = this;
|
|
3885
3880
|
return _asyncToGenerator(function* () {
|
|
3886
3881
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3887
|
-
return
|
|
3882
|
+
return _this440.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_api3"), {
|
|
3888
3883
|
fields
|
|
3889
3884
|
}, null, options);
|
|
3890
3885
|
})();
|
|
3891
3886
|
}
|
|
3892
3887
|
user_credentials_embed(callback, user_id, credentials_embed_id, fields, options) {
|
|
3893
|
-
var
|
|
3888
|
+
var _this441 = this;
|
|
3894
3889
|
return _asyncToGenerator(function* () {
|
|
3895
3890
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3896
3891
|
credentials_embed_id = (0, _sdkRtl.encodeParam)(credentials_embed_id);
|
|
3897
|
-
return
|
|
3892
|
+
return _this441.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
3898
3893
|
fields
|
|
3899
3894
|
}, null, options);
|
|
3900
3895
|
})();
|
|
3901
3896
|
}
|
|
3902
3897
|
delete_user_credentials_embed(callback, user_id, credentials_embed_id, options) {
|
|
3903
|
-
var
|
|
3898
|
+
var _this442 = this;
|
|
3904
3899
|
return _asyncToGenerator(function* () {
|
|
3905
3900
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3906
3901
|
credentials_embed_id = (0, _sdkRtl.encodeParam)(credentials_embed_id);
|
|
3907
|
-
return
|
|
3902
|
+
return _this442.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
3908
3903
|
})();
|
|
3909
3904
|
}
|
|
3910
3905
|
all_user_credentials_embeds(callback, user_id, fields, options) {
|
|
3911
|
-
var
|
|
3906
|
+
var _this443 = this;
|
|
3912
3907
|
return _asyncToGenerator(function* () {
|
|
3913
3908
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3914
|
-
return
|
|
3909
|
+
return _this443.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_embed"), {
|
|
3915
3910
|
fields
|
|
3916
3911
|
}, null, options);
|
|
3917
3912
|
})();
|
|
3918
3913
|
}
|
|
3919
3914
|
user_credentials_looker_openid(callback, user_id, fields, options) {
|
|
3920
|
-
var
|
|
3915
|
+
var _this444 = this;
|
|
3921
3916
|
return _asyncToGenerator(function* () {
|
|
3922
3917
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3923
|
-
return
|
|
3918
|
+
return _this444.authStream(callback, 'GET', "/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
3924
3919
|
fields
|
|
3925
3920
|
}, null, options);
|
|
3926
3921
|
})();
|
|
3927
3922
|
}
|
|
3928
3923
|
delete_user_credentials_looker_openid(callback, user_id, options) {
|
|
3929
|
-
var
|
|
3924
|
+
var _this445 = this;
|
|
3930
3925
|
return _asyncToGenerator(function* () {
|
|
3931
3926
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3932
|
-
return
|
|
3927
|
+
return _this445.authStream(callback, 'DELETE', "/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
3933
3928
|
})();
|
|
3934
3929
|
}
|
|
3935
3930
|
user_session(callback, user_id, session_id, fields, options) {
|
|
3936
|
-
var
|
|
3931
|
+
var _this446 = this;
|
|
3937
3932
|
return _asyncToGenerator(function* () {
|
|
3938
3933
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3939
3934
|
session_id = (0, _sdkRtl.encodeParam)(session_id);
|
|
3940
|
-
return
|
|
3935
|
+
return _this446.authStream(callback, 'GET', "/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
3941
3936
|
fields
|
|
3942
3937
|
}, null, options);
|
|
3943
3938
|
})();
|
|
3944
3939
|
}
|
|
3945
3940
|
delete_user_session(callback, user_id, session_id, options) {
|
|
3946
|
-
var
|
|
3941
|
+
var _this447 = this;
|
|
3947
3942
|
return _asyncToGenerator(function* () {
|
|
3948
3943
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3949
3944
|
session_id = (0, _sdkRtl.encodeParam)(session_id);
|
|
3950
|
-
return
|
|
3945
|
+
return _this447.authStream(callback, 'DELETE', "/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
3951
3946
|
})();
|
|
3952
3947
|
}
|
|
3953
3948
|
all_user_sessions(callback, user_id, fields, options) {
|
|
3954
|
-
var
|
|
3949
|
+
var _this448 = this;
|
|
3955
3950
|
return _asyncToGenerator(function* () {
|
|
3956
3951
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3957
|
-
return
|
|
3952
|
+
return _this448.authStream(callback, 'GET', "/users/".concat(user_id, "/sessions"), {
|
|
3958
3953
|
fields
|
|
3959
3954
|
}, null, options);
|
|
3960
3955
|
})();
|
|
3961
3956
|
}
|
|
3962
3957
|
create_user_credentials_email_password_reset(callback, request, options) {
|
|
3963
|
-
var
|
|
3958
|
+
var _this449 = this;
|
|
3964
3959
|
return _asyncToGenerator(function* () {
|
|
3965
3960
|
request.user_id = (0, _sdkRtl.encodeParam)(request.user_id);
|
|
3966
|
-
return
|
|
3961
|
+
return _this449.authStream(callback, 'POST', "/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
3967
3962
|
expires: request.expires,
|
|
3968
3963
|
fields: request.fields
|
|
3969
3964
|
}, null, options);
|
|
3970
3965
|
})();
|
|
3971
3966
|
}
|
|
3972
3967
|
user_roles(callback, request, options) {
|
|
3973
|
-
var
|
|
3968
|
+
var _this450 = this;
|
|
3974
3969
|
return _asyncToGenerator(function* () {
|
|
3975
3970
|
request.user_id = (0, _sdkRtl.encodeParam)(request.user_id);
|
|
3976
|
-
return
|
|
3971
|
+
return _this450.authStream(callback, 'GET', "/users/".concat(request.user_id, "/roles"), {
|
|
3977
3972
|
fields: request.fields,
|
|
3978
3973
|
direct_association_only: request.direct_association_only
|
|
3979
3974
|
}, null, options);
|
|
3980
3975
|
})();
|
|
3981
3976
|
}
|
|
3982
3977
|
set_user_roles(callback, user_id, body, fields, options) {
|
|
3983
|
-
var
|
|
3978
|
+
var _this451 = this;
|
|
3984
3979
|
return _asyncToGenerator(function* () {
|
|
3985
3980
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
3986
|
-
return
|
|
3981
|
+
return _this451.authStream(callback, 'PUT', "/users/".concat(user_id, "/roles"), {
|
|
3987
3982
|
fields
|
|
3988
3983
|
}, body, options);
|
|
3989
3984
|
})();
|
|
3990
3985
|
}
|
|
3991
3986
|
user_attribute_user_values(callback, request, options) {
|
|
3992
|
-
var
|
|
3987
|
+
var _this452 = this;
|
|
3993
3988
|
return _asyncToGenerator(function* () {
|
|
3994
3989
|
request.user_id = (0, _sdkRtl.encodeParam)(request.user_id);
|
|
3995
|
-
return
|
|
3990
|
+
return _this452.authStream(callback, 'GET', "/users/".concat(request.user_id, "/attribute_values"), {
|
|
3996
3991
|
fields: request.fields,
|
|
3997
3992
|
user_attribute_ids: request.user_attribute_ids,
|
|
3998
3993
|
all_values: request.all_values,
|
|
@@ -4001,122 +3996,122 @@ class Looker40SDKStream extends _sdkRtl.APIMethods {
|
|
|
4001
3996
|
})();
|
|
4002
3997
|
}
|
|
4003
3998
|
set_user_attribute_user_value(callback, user_id, user_attribute_id, body, options) {
|
|
4004
|
-
var
|
|
3999
|
+
var _this453 = this;
|
|
4005
4000
|
return _asyncToGenerator(function* () {
|
|
4006
4001
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4007
4002
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4008
|
-
return
|
|
4003
|
+
return _this453.authStream(callback, 'PATCH', "/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4009
4004
|
})();
|
|
4010
4005
|
}
|
|
4011
4006
|
delete_user_attribute_user_value(callback, user_id, user_attribute_id, options) {
|
|
4012
|
-
var
|
|
4007
|
+
var _this454 = this;
|
|
4013
4008
|
return _asyncToGenerator(function* () {
|
|
4014
4009
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4015
4010
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4016
|
-
return
|
|
4011
|
+
return _this454.authStream(callback, 'DELETE', "/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4017
4012
|
})();
|
|
4018
4013
|
}
|
|
4019
4014
|
send_user_credentials_email_password_reset(callback, user_id, fields, options) {
|
|
4020
|
-
var
|
|
4015
|
+
var _this455 = this;
|
|
4021
4016
|
return _asyncToGenerator(function* () {
|
|
4022
4017
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4023
|
-
return
|
|
4018
|
+
return _this455.authStream(callback, 'POST', "/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4024
4019
|
fields
|
|
4025
4020
|
}, null, options);
|
|
4026
4021
|
})();
|
|
4027
4022
|
}
|
|
4028
4023
|
wipeout_user_emails(callback, user_id, body, fields, options) {
|
|
4029
|
-
var
|
|
4024
|
+
var _this456 = this;
|
|
4030
4025
|
return _asyncToGenerator(function* () {
|
|
4031
4026
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4032
|
-
return
|
|
4027
|
+
return _this456.authStream(callback, 'POST', "/users/".concat(user_id, "/update_emails"), {
|
|
4033
4028
|
fields
|
|
4034
4029
|
}, body, options);
|
|
4035
4030
|
})();
|
|
4036
4031
|
}
|
|
4037
4032
|
create_embed_user(callback, body, options) {
|
|
4038
|
-
var
|
|
4033
|
+
var _this457 = this;
|
|
4039
4034
|
return _asyncToGenerator(function* () {
|
|
4040
|
-
return
|
|
4035
|
+
return _this457.authStream(callback, 'POST', '/users/embed_user', null, body, options);
|
|
4041
4036
|
})();
|
|
4042
4037
|
}
|
|
4043
4038
|
create_service_account(callback, body, fields, options) {
|
|
4044
|
-
var
|
|
4039
|
+
var _this458 = this;
|
|
4045
4040
|
return _asyncToGenerator(function* () {
|
|
4046
|
-
return
|
|
4041
|
+
return _this458.authStream(callback, 'POST', '/users/service_accounts', {
|
|
4047
4042
|
fields
|
|
4048
4043
|
}, body, options);
|
|
4049
4044
|
})();
|
|
4050
4045
|
}
|
|
4051
4046
|
all_user_attributes(callback, request, options) {
|
|
4052
|
-
var
|
|
4047
|
+
var _this459 = this;
|
|
4053
4048
|
return _asyncToGenerator(function* () {
|
|
4054
|
-
return
|
|
4049
|
+
return _this459.authStream(callback, 'GET', '/user_attributes', {
|
|
4055
4050
|
fields: request.fields,
|
|
4056
4051
|
sorts: request.sorts
|
|
4057
4052
|
}, null, options);
|
|
4058
4053
|
})();
|
|
4059
4054
|
}
|
|
4060
4055
|
create_user_attribute(callback, body, fields, options) {
|
|
4061
|
-
var
|
|
4056
|
+
var _this460 = this;
|
|
4062
4057
|
return _asyncToGenerator(function* () {
|
|
4063
|
-
return
|
|
4058
|
+
return _this460.authStream(callback, 'POST', '/user_attributes', {
|
|
4064
4059
|
fields
|
|
4065
4060
|
}, body, options);
|
|
4066
4061
|
})();
|
|
4067
4062
|
}
|
|
4068
4063
|
user_attribute(callback, user_attribute_id, fields, options) {
|
|
4069
|
-
var
|
|
4064
|
+
var _this461 = this;
|
|
4070
4065
|
return _asyncToGenerator(function* () {
|
|
4071
4066
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4072
|
-
return
|
|
4067
|
+
return _this461.authStream(callback, 'GET', "/user_attributes/".concat(user_attribute_id), {
|
|
4073
4068
|
fields
|
|
4074
4069
|
}, null, options);
|
|
4075
4070
|
})();
|
|
4076
4071
|
}
|
|
4077
4072
|
update_user_attribute(callback, user_attribute_id, body, fields, options) {
|
|
4078
|
-
var
|
|
4073
|
+
var _this462 = this;
|
|
4079
4074
|
return _asyncToGenerator(function* () {
|
|
4080
4075
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4081
|
-
return
|
|
4076
|
+
return _this462.authStream(callback, 'PATCH', "/user_attributes/".concat(user_attribute_id), {
|
|
4082
4077
|
fields
|
|
4083
4078
|
}, body, options);
|
|
4084
4079
|
})();
|
|
4085
4080
|
}
|
|
4086
4081
|
delete_user_attribute(callback, user_attribute_id, options) {
|
|
4087
|
-
var
|
|
4082
|
+
var _this463 = this;
|
|
4088
4083
|
return _asyncToGenerator(function* () {
|
|
4089
4084
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4090
|
-
return
|
|
4085
|
+
return _this463.authStream(callback, 'DELETE', "/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
4091
4086
|
})();
|
|
4092
4087
|
}
|
|
4093
4088
|
all_user_attribute_group_values(callback, user_attribute_id, fields, options) {
|
|
4094
|
-
var
|
|
4089
|
+
var _this464 = this;
|
|
4095
4090
|
return _asyncToGenerator(function* () {
|
|
4096
4091
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4097
|
-
return
|
|
4092
|
+
return _this464.authStream(callback, 'GET', "/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
4098
4093
|
fields
|
|
4099
4094
|
}, null, options);
|
|
4100
4095
|
})();
|
|
4101
4096
|
}
|
|
4102
4097
|
set_user_attribute_group_values(callback, user_attribute_id, body, options) {
|
|
4103
|
-
var
|
|
4098
|
+
var _this465 = this;
|
|
4104
4099
|
return _asyncToGenerator(function* () {
|
|
4105
4100
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4106
|
-
return
|
|
4101
|
+
return _this465.authStream(callback, 'POST', "/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
4107
4102
|
})();
|
|
4108
4103
|
}
|
|
4109
4104
|
all_workspaces(callback, options) {
|
|
4110
|
-
var
|
|
4105
|
+
var _this466 = this;
|
|
4111
4106
|
return _asyncToGenerator(function* () {
|
|
4112
|
-
return
|
|
4107
|
+
return _this466.authStream(callback, 'GET', '/workspaces', null, null, options);
|
|
4113
4108
|
})();
|
|
4114
4109
|
}
|
|
4115
4110
|
workspace(callback, workspace_id, options) {
|
|
4116
|
-
var
|
|
4111
|
+
var _this467 = this;
|
|
4117
4112
|
return _asyncToGenerator(function* () {
|
|
4118
4113
|
workspace_id = (0, _sdkRtl.encodeParam)(workspace_id);
|
|
4119
|
-
return
|
|
4114
|
+
return _this467.authStream(callback, 'GET', "/workspaces/".concat(workspace_id), null, null, options);
|
|
4120
4115
|
})();
|
|
4121
4116
|
}
|
|
4122
4117
|
}
|