@looker/sdk 23.14.1 → 23.18.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.
Files changed (68) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +1 -3
  3. package/lib/4.0/funcs.d.ts +6 -3
  4. package/lib/4.0/funcs.js +922 -891
  5. package/lib/4.0/funcs.js.map +1 -1
  6. package/lib/4.0/methods.d.ts +6 -3
  7. package/lib/4.0/methods.js +612 -590
  8. package/lib/4.0/methods.js.map +1 -1
  9. package/lib/4.0/methodsInterface.d.ts +6 -3
  10. package/lib/4.0/methodsInterface.js.map +1 -1
  11. package/lib/4.0/models.d.ts +18 -3
  12. package/lib/4.0/models.js.map +1 -1
  13. package/lib/4.0/streams.d.ts +6 -3
  14. package/lib/4.0/streams.js +612 -590
  15. package/lib/4.0/streams.js.map +1 -1
  16. package/lib/browserSdk.d.ts +0 -2
  17. package/lib/browserSdk.js +2 -9
  18. package/lib/browserSdk.js.map +1 -1
  19. package/lib/constants.d.ts +1 -1
  20. package/lib/constants.js +1 -1
  21. package/lib/constants.js.map +1 -1
  22. package/lib/esm/4.0/funcs.js +1633 -2046
  23. package/lib/esm/4.0/funcs.js.map +1 -1
  24. package/lib/esm/4.0/methods.js +915 -900
  25. package/lib/esm/4.0/methods.js.map +1 -1
  26. package/lib/esm/4.0/methodsInterface.js.map +1 -1
  27. package/lib/esm/4.0/models.js +22 -50
  28. package/lib/esm/4.0/models.js.map +1 -1
  29. package/lib/esm/4.0/streams.js +915 -900
  30. package/lib/esm/4.0/streams.js.map +1 -1
  31. package/lib/esm/browserSdk.js +8 -23
  32. package/lib/esm/browserSdk.js.map +1 -1
  33. package/lib/esm/constants.js +2 -10
  34. package/lib/esm/constants.js.map +1 -1
  35. package/lib/esm/extensionSdk.js +5 -12
  36. package/lib/esm/extensionSdk.js.map +1 -1
  37. package/lib/esm/index.js +9 -141
  38. package/lib/esm/index.js.map +1 -1
  39. package/lib/extensionSdk.js.map +1 -1
  40. package/lib/index.d.ts +0 -8
  41. package/lib/index.js +15 -56
  42. package/lib/index.js.map +1 -1
  43. package/package.json +2 -2
  44. package/lib/3.1/funcs.d.ts +0 -358
  45. package/lib/3.1/funcs.js +0 -4025
  46. package/lib/3.1/funcs.js.map +0 -1
  47. package/lib/3.1/methods.d.ts +0 -363
  48. package/lib/3.1/methods.js +0 -2965
  49. package/lib/3.1/methods.js.map +0 -1
  50. package/lib/3.1/methodsInterface.d.ts +0 -359
  51. package/lib/3.1/methodsInterface.js +0 -2
  52. package/lib/3.1/methodsInterface.js.map +0 -1
  53. package/lib/3.1/models.d.ts +0 -3263
  54. package/lib/3.1/models.js +0 -159
  55. package/lib/3.1/models.js.map +0 -1
  56. package/lib/3.1/streams.d.ts +0 -363
  57. package/lib/3.1/streams.js +0 -2965
  58. package/lib/3.1/streams.js.map +0 -1
  59. package/lib/esm/3.1/funcs.js +0 -4025
  60. package/lib/esm/3.1/funcs.js.map +0 -1
  61. package/lib/esm/3.1/methods.js +0 -2965
  62. package/lib/esm/3.1/methods.js.map +0 -1
  63. package/lib/esm/3.1/methodsInterface.js +0 -2
  64. package/lib/esm/3.1/methodsInterface.js.map +0 -1
  65. package/lib/esm/3.1/models.js +0 -159
  66. package/lib/esm/3.1/models.js.map +0 -1
  67. package/lib/esm/3.1/streams.js +0 -2965
  68. package/lib/esm/3.1/streams.js.map +0 -1
@@ -1,3263 +0,0 @@
1
- import type { IDictionary, Url, DelimArray } from '@looker/sdk-rtl';
2
- export interface IAccessToken {
3
- access_token?: string;
4
- token_type?: string;
5
- expires_in?: number;
6
- }
7
- export declare enum Align {
8
- left = "left",
9
- right = "right"
10
- }
11
- export interface IApiSession {
12
- can?: IDictionary<boolean>;
13
- workspace_id?: string | null;
14
- sudo_user_id?: number | null;
15
- }
16
- export interface IApiVersion {
17
- looker_release_version?: string | null;
18
- current_version?: IApiVersionElement;
19
- supported_versions?: IApiVersionElement[] | null;
20
- api_server_url?: string;
21
- web_server_url?: string;
22
- }
23
- export interface IApiVersionElement {
24
- version?: string | null;
25
- full_version?: string | null;
26
- status?: string | null;
27
- swagger_url?: Url | null;
28
- }
29
- export interface IBackupConfiguration {
30
- can?: IDictionary<boolean>;
31
- type?: string | null;
32
- custom_s3_bucket?: string | null;
33
- custom_s3_bucket_region?: string | null;
34
- custom_s3_key?: string | null;
35
- custom_s3_secret?: string | null;
36
- url?: Url | null;
37
- }
38
- export declare enum Category {
39
- parameter = "parameter",
40
- filter = "filter",
41
- measure = "measure",
42
- dimension = "dimension"
43
- }
44
- export interface IColorCollection {
45
- id?: string;
46
- label?: string;
47
- categoricalPalettes?: IDiscretePalette[];
48
- sequentialPalettes?: IContinuousPalette[];
49
- divergingPalettes?: IContinuousPalette[];
50
- }
51
- export interface IColorStop {
52
- color?: string;
53
- offset?: number;
54
- }
55
- export interface IContentFavorite {
56
- id?: number;
57
- user_id?: number;
58
- content_metadata_id?: number;
59
- look_id?: number | null;
60
- dashboard_id?: number | null;
61
- look?: ILookBasic;
62
- dashboard?: IDashboardBase;
63
- }
64
- export interface IContentMeta {
65
- can?: IDictionary<boolean>;
66
- id?: number;
67
- name?: string | null;
68
- parent_id?: number | null;
69
- dashboard_id?: string | null;
70
- look_id?: number | null;
71
- folder_id?: string | null;
72
- content_type?: string | null;
73
- inherits?: boolean;
74
- inheriting_id?: number | null;
75
- slug?: string | null;
76
- space_id?: string | null;
77
- }
78
- export interface IContentMetaGroupUser {
79
- can?: IDictionary<boolean>;
80
- id?: string;
81
- content_metadata_id?: string | null;
82
- permission_type?: PermissionType | null;
83
- group_id?: number | null;
84
- user_id?: number | null;
85
- }
86
- export interface IContentValidation {
87
- content_with_errors?: IContentValidatorError[] | null;
88
- computation_time?: number | null;
89
- total_looks_validated?: number | null;
90
- total_dashboard_elements_validated?: number | null;
91
- total_dashboard_filters_validated?: number | null;
92
- total_scheduled_plans_validated?: number | null;
93
- total_alerts_validated?: number | null;
94
- total_explores_validated?: number | null;
95
- }
96
- export interface IContentValidationAlert {
97
- id?: number;
98
- lookml_dashboard_id?: string | null;
99
- lookml_link_id?: string | null;
100
- custom_url_base?: string | null;
101
- custom_url_params?: string | null;
102
- custom_url_label?: string | null;
103
- show_custom_url?: boolean;
104
- custom_title?: string | null;
105
- }
106
- export interface IContentValidationDashboard {
107
- description?: string | null;
108
- id?: string;
109
- folder?: IContentValidationFolder;
110
- title?: string | null;
111
- space?: IContentValidationSpace;
112
- }
113
- export interface IContentValidationDashboardElement {
114
- body_text?: string | null;
115
- dashboard_id?: string | null;
116
- id?: string;
117
- look_id?: string | null;
118
- note_display?: string | null;
119
- note_state?: string | null;
120
- note_text?: string | null;
121
- note_text_as_html?: string | null;
122
- query_id?: number | null;
123
- subtitle_text?: string | null;
124
- title?: string | null;
125
- title_hidden?: boolean;
126
- title_text?: string | null;
127
- type?: string | null;
128
- rich_content_json?: string | null;
129
- }
130
- export interface IContentValidationDashboardFilter {
131
- id?: string;
132
- dashboard_id?: string | null;
133
- name?: string | null;
134
- title?: string | null;
135
- type?: string | null;
136
- default_value?: string | null;
137
- model?: string | null;
138
- explore?: string | null;
139
- dimension?: string | null;
140
- }
141
- export interface IContentValidationError {
142
- message?: string | null;
143
- field_name?: string | null;
144
- model_name?: string | null;
145
- explore_name?: string | null;
146
- removable?: boolean;
147
- }
148
- export interface IContentValidationFolder {
149
- name: string;
150
- id?: string;
151
- }
152
- export interface IContentValidationLook {
153
- id?: number;
154
- title?: string | null;
155
- short_url?: string | null;
156
- folder?: IContentValidationFolder;
157
- space?: IContentValidationSpace;
158
- }
159
- export interface IContentValidationLookMLDashboard {
160
- id?: string;
161
- title?: string | null;
162
- space_id?: string | null;
163
- space?: ISpaceBase;
164
- }
165
- export interface IContentValidationLookMLDashboardElement {
166
- lookml_link_id?: string | null;
167
- title?: string | null;
168
- }
169
- export interface IContentValidationScheduledPlan {
170
- name?: string | null;
171
- look_id?: number | null;
172
- id?: number;
173
- }
174
- export interface IContentValidationSpace {
175
- name: string;
176
- id?: string;
177
- }
178
- export interface IContentValidatorError {
179
- look?: IContentValidationLook;
180
- dashboard?: IContentValidationDashboard;
181
- dashboard_element?: IContentValidationDashboardElement;
182
- dashboard_filter?: IContentValidationDashboardFilter;
183
- scheduled_plan?: IContentValidationScheduledPlan;
184
- alert?: IContentValidationAlert;
185
- lookml_dashboard?: IContentValidationLookMLDashboard;
186
- lookml_dashboard_element?: IContentValidationLookMLDashboardElement;
187
- errors?: IContentValidationError[] | null;
188
- id?: string;
189
- }
190
- export interface IContentView {
191
- can?: IDictionary<boolean>;
192
- id?: number;
193
- look_id?: number | null;
194
- dashboard_id?: number | null;
195
- title?: string | null;
196
- content_metadata_id?: number | null;
197
- user_id?: number | null;
198
- group_id?: number | null;
199
- view_count?: number | null;
200
- favorite_count?: number | null;
201
- last_viewed_at?: string | null;
202
- start_of_week_date?: string | null;
203
- }
204
- export interface IContinuousPalette {
205
- id?: string;
206
- label?: string | null;
207
- type?: string;
208
- stops?: IColorStop[];
209
- }
210
- export interface ICreateDashboardFilter {
211
- id?: string;
212
- dashboard_id: string | null;
213
- name: string | null;
214
- title: string | null;
215
- type: string | null;
216
- default_value?: string | null;
217
- model?: string | null;
218
- explore?: string | null;
219
- dimension?: string | null;
220
- field?: IDictionary<any> | null;
221
- row?: number | null;
222
- listens_to_filters?: string[] | null;
223
- allow_multiple_values?: boolean;
224
- required?: boolean;
225
- ui_config?: IDictionary<any> | null;
226
- }
227
- export interface ICreateDashboardRenderTask {
228
- dashboard_filters?: string | null;
229
- dashboard_style?: string | null;
230
- }
231
- export interface ICreateFolder {
232
- name: string;
233
- parent_id: string;
234
- }
235
- export interface ICreateQueryTask {
236
- can?: IDictionary<boolean>;
237
- query_id: number | null;
238
- result_format: ResultFormat | null;
239
- source?: string | null;
240
- deferred?: boolean;
241
- look_id?: number | null;
242
- dashboard_id?: string | null;
243
- }
244
- export interface ICreateSpace {
245
- name: string;
246
- parent_id: string;
247
- }
248
- export interface ICredentialsApi3 {
249
- can?: IDictionary<boolean>;
250
- id?: number;
251
- client_id?: string | null;
252
- created_at?: string | null;
253
- is_disabled?: boolean;
254
- type?: string | null;
255
- url?: Url | null;
256
- }
257
- export interface ICredentialsEmail {
258
- can?: IDictionary<boolean>;
259
- created_at?: string | null;
260
- email?: string | null;
261
- forced_password_reset_at_next_login?: boolean;
262
- user_id?: string | null;
263
- is_disabled?: boolean;
264
- logged_in_at?: string | null;
265
- password_reset_url?: string | null;
266
- account_setup_url?: string | null;
267
- type?: string | null;
268
- url?: Url | null;
269
- user_url?: Url | null;
270
- }
271
- export interface ICredentialsEmbed {
272
- can?: IDictionary<boolean>;
273
- created_at?: string | null;
274
- external_group_id?: string | null;
275
- external_user_id?: string | null;
276
- id?: number;
277
- is_disabled?: boolean;
278
- logged_in_at?: string | null;
279
- type?: string | null;
280
- url?: Url | null;
281
- }
282
- export interface ICredentialsGoogle {
283
- can?: IDictionary<boolean>;
284
- created_at?: string | null;
285
- domain?: string | null;
286
- email?: string | null;
287
- google_user_id?: string | null;
288
- is_disabled?: boolean;
289
- logged_in_at?: string | null;
290
- type?: string | null;
291
- url?: Url | null;
292
- }
293
- export interface ICredentialsLDAP {
294
- can?: IDictionary<boolean>;
295
- created_at?: string | null;
296
- email?: string | null;
297
- is_disabled?: boolean;
298
- ldap_dn?: string | null;
299
- ldap_id?: string | null;
300
- logged_in_at?: string | null;
301
- type?: string | null;
302
- url?: Url | null;
303
- }
304
- export interface ICredentialsLookerOpenid {
305
- can?: IDictionary<boolean>;
306
- created_at?: string | null;
307
- email?: string | null;
308
- is_disabled?: boolean;
309
- logged_in_at?: string | null;
310
- logged_in_ip?: string | null;
311
- type?: string | null;
312
- url?: Url | null;
313
- user_url?: Url | null;
314
- }
315
- export interface ICredentialsOIDC {
316
- can?: IDictionary<boolean>;
317
- created_at?: string | null;
318
- email?: string | null;
319
- is_disabled?: boolean;
320
- logged_in_at?: string | null;
321
- oidc_user_id?: string | null;
322
- type?: string | null;
323
- url?: Url | null;
324
- }
325
- export interface ICredentialsSaml {
326
- can?: IDictionary<boolean>;
327
- created_at?: string | null;
328
- email?: string | null;
329
- is_disabled?: boolean;
330
- logged_in_at?: string | null;
331
- saml_user_id?: string | null;
332
- type?: string | null;
333
- url?: Url | null;
334
- }
335
- export interface ICredentialsTotp {
336
- can?: IDictionary<boolean>;
337
- created_at?: string | null;
338
- is_disabled?: boolean;
339
- type?: string | null;
340
- verified?: boolean;
341
- url?: Url | null;
342
- }
343
- export interface ICustomWelcomeEmail {
344
- can?: IDictionary<boolean>;
345
- enabled?: boolean;
346
- content?: string | null;
347
- subject?: string | null;
348
- header?: string | null;
349
- }
350
- export interface IDashboard {
351
- can?: IDictionary<boolean>;
352
- content_favorite_id?: number | null;
353
- content_metadata_id?: number | null;
354
- description?: string | null;
355
- hidden?: boolean;
356
- id?: string;
357
- model?: ILookModel;
358
- query_timezone?: string;
359
- readonly?: boolean;
360
- refresh_interval?: string | null;
361
- refresh_interval_to_i?: number | null;
362
- folder?: IFolderBase;
363
- title?: string | null;
364
- user_id?: number | null;
365
- slug?: string | null;
366
- preferred_viewer?: string | null;
367
- space?: ISpaceBase;
368
- alert_sync_with_dashboard_filter_enabled?: boolean;
369
- background_color?: string;
370
- created_at?: Date | null;
371
- crossfilter_enabled?: boolean;
372
- dashboard_elements?: IDashboardElement[] | null;
373
- dashboard_filters?: IDashboardFilter[] | null;
374
- dashboard_layouts?: IDashboardLayout[] | null;
375
- deleted?: boolean;
376
- deleted_at?: Date | null;
377
- deleter_id?: number | null;
378
- edit_uri?: Url | null;
379
- enable_viz_full_screen?: boolean;
380
- favorite_count?: number | null;
381
- filters_bar_collapsed?: boolean;
382
- filters_location_top?: boolean;
383
- last_accessed_at?: Date | null;
384
- last_viewed_at?: Date | null;
385
- updated_at?: Date | null;
386
- last_updater_id?: number | null;
387
- last_updater_name?: string | null;
388
- user_name?: string | null;
389
- load_configuration?: string | null;
390
- lookml_link_id?: string | null;
391
- show_filters_bar?: boolean;
392
- show_title?: boolean;
393
- space_id?: string | null;
394
- folder_id?: string | null;
395
- text_tile_text_color?: string;
396
- tile_background_color?: string;
397
- tile_text_color?: string;
398
- title_color?: string;
399
- view_count?: number | null;
400
- appearance?: IDashboardAppearance;
401
- }
402
- export interface IDashboardAggregateTableLookml {
403
- dashboard_id?: string | null;
404
- aggregate_table_lookml?: string | null;
405
- }
406
- export interface IDashboardAppearance {
407
- page_side_margins?: number | null;
408
- page_background_color?: string | null;
409
- tile_title_alignment?: string | null;
410
- tile_space_between?: number | null;
411
- tile_background_color?: string | null;
412
- tile_shadow?: boolean | null;
413
- key_color?: string | null;
414
- }
415
- export interface IDashboardBase {
416
- can?: IDictionary<boolean>;
417
- content_favorite_id?: number | null;
418
- content_metadata_id?: number | null;
419
- description?: string | null;
420
- hidden?: boolean;
421
- id?: string;
422
- model?: ILookModel;
423
- query_timezone?: string;
424
- readonly?: boolean;
425
- refresh_interval?: string | null;
426
- refresh_interval_to_i?: number | null;
427
- folder?: IFolderBase;
428
- title?: string | null;
429
- user_id?: number | null;
430
- slug?: string | null;
431
- preferred_viewer?: string | null;
432
- space?: ISpaceBase;
433
- }
434
- export interface IDashboardElement {
435
- can?: IDictionary<boolean>;
436
- body_text?: string | null;
437
- body_text_as_html?: string | null;
438
- dashboard_id?: string | null;
439
- edit_uri?: Url | null;
440
- id?: string;
441
- look?: ILookWithQuery;
442
- look_id?: string | null;
443
- lookml_link_id?: string | null;
444
- merge_result_id?: string | null;
445
- note_display?: string | null;
446
- note_state?: string | null;
447
- note_text?: string | null;
448
- note_text_as_html?: string | null;
449
- query?: IQuery;
450
- query_id?: number | null;
451
- refresh_interval?: string | null;
452
- refresh_interval_to_i?: number | null;
453
- result_maker?: IResultMakerWithIdVisConfigAndDynamicFields;
454
- result_maker_id?: number | null;
455
- subtitle_text?: string | null;
456
- title?: string | null;
457
- title_hidden?: boolean;
458
- title_text?: string | null;
459
- type?: string | null;
460
- alert_count?: number | null;
461
- rich_content_json?: string | null;
462
- title_text_as_html?: string | null;
463
- subtitle_text_as_html?: string | null;
464
- }
465
- export interface IDashboardFilter {
466
- can?: IDictionary<boolean>;
467
- id?: string;
468
- dashboard_id?: string | null;
469
- name?: string | null;
470
- title?: string | null;
471
- type?: string | null;
472
- default_value?: string | null;
473
- model?: string | null;
474
- explore?: string | null;
475
- dimension?: string | null;
476
- field?: IDictionary<any> | null;
477
- row?: number | null;
478
- listens_to_filters?: string[] | null;
479
- allow_multiple_values?: boolean;
480
- required?: boolean;
481
- ui_config?: IDictionary<any> | null;
482
- }
483
- export interface IDashboardLayout {
484
- can?: IDictionary<boolean>;
485
- id?: string;
486
- dashboard_id?: string | null;
487
- type?: string | null;
488
- active?: boolean;
489
- column_width?: number | null;
490
- width?: number | null;
491
- deleted?: boolean;
492
- dashboard_title?: string | null;
493
- dashboard_layout_components?: IDashboardLayoutComponent[] | null;
494
- }
495
- export interface IDashboardLayoutComponent {
496
- can?: IDictionary<boolean>;
497
- id?: string;
498
- dashboard_layout_id?: string | null;
499
- dashboard_element_id?: string | null;
500
- row?: number | null;
501
- column?: number | null;
502
- width?: number | null;
503
- height?: number | null;
504
- deleted?: boolean;
505
- element_title?: string | null;
506
- element_title_hidden?: boolean;
507
- vis_type?: string | null;
508
- }
509
- export interface IDashboardLookml {
510
- dashboard_id?: string | null;
511
- folder_id?: string | null;
512
- lookml?: string | null;
513
- }
514
- export interface IDataActionForm {
515
- state?: IDataActionUserState;
516
- fields?: IDataActionFormField[] | null;
517
- }
518
- export interface IDataActionFormField {
519
- name?: string | null;
520
- label?: string | null;
521
- description?: string | null;
522
- type?: string | null;
523
- default?: string | null;
524
- oauth_url?: string | null;
525
- interactive?: boolean;
526
- required?: boolean;
527
- options?: IDataActionFormSelectOption[] | null;
528
- }
529
- export interface IDataActionFormSelectOption {
530
- name?: string | null;
531
- label?: string | null;
532
- }
533
- export interface IDataActionRequest {
534
- action?: IDictionary<any> | null;
535
- form_values?: IDictionary<string> | null;
536
- }
537
- export interface IDataActionResponse {
538
- webhook_id?: string | null;
539
- success?: boolean;
540
- refresh_query?: boolean;
541
- validation_errors?: IValidationError;
542
- message?: string | null;
543
- }
544
- export interface IDataActionUserState {
545
- data?: string | null;
546
- refresh_time?: number | null;
547
- }
548
- export interface IDatagroup {
549
- can?: IDictionary<boolean>;
550
- created_at?: number | null;
551
- id?: number;
552
- model_name?: string | null;
553
- name?: string | null;
554
- stale_before?: number | null;
555
- trigger_check_at?: number | null;
556
- trigger_error?: string | null;
557
- trigger_value?: string | null;
558
- triggered_at?: number | null;
559
- }
560
- export interface IDBConnection {
561
- can?: IDictionary<boolean>;
562
- name?: string;
563
- dialect?: IDialect;
564
- snippets?: ISnippet[];
565
- pdts_enabled?: boolean;
566
- host?: string | null;
567
- port?: string | null;
568
- username?: string | null;
569
- password?: string | null;
570
- uses_oauth?: boolean;
571
- certificate?: string | null;
572
- file_type?: string | null;
573
- database?: string | null;
574
- db_timezone?: string | null;
575
- query_timezone?: string | null;
576
- schema?: string | null;
577
- max_connections?: number | null;
578
- max_billing_gigabytes?: string | null;
579
- ssl?: boolean;
580
- verify_ssl?: boolean;
581
- tmp_db_name?: string | null;
582
- jdbc_additional_params?: string | null;
583
- pool_timeout?: number | null;
584
- dialect_name?: string | null;
585
- supports_data_studio_link?: boolean;
586
- created_at?: string | null;
587
- user_id?: string | null;
588
- example?: boolean;
589
- user_db_credentials?: boolean | null;
590
- user_attribute_fields?: string[] | null;
591
- maintenance_cron?: string | null;
592
- last_regen_at?: string | null;
593
- last_reap_at?: string | null;
594
- sql_runner_precache_tables?: boolean;
595
- sql_writing_with_info_schema?: boolean;
596
- after_connect_statements?: string | null;
597
- pdt_context_override?: IDBConnectionOverride;
598
- managed?: boolean;
599
- uses_tns?: boolean | null;
600
- }
601
- export interface IDBConnectionBase {
602
- can?: IDictionary<boolean>;
603
- name?: string;
604
- dialect?: IDialect;
605
- snippets?: ISnippet[];
606
- pdts_enabled?: boolean;
607
- }
608
- export interface IDBConnectionOverride {
609
- context?: string;
610
- host?: string | null;
611
- port?: string | null;
612
- username?: string | null;
613
- password?: string | null;
614
- has_password?: boolean;
615
- certificate?: string | null;
616
- file_type?: string | null;
617
- database?: string | null;
618
- schema?: string | null;
619
- jdbc_additional_params?: string | null;
620
- after_connect_statements?: string | null;
621
- }
622
- export interface IDBConnectionTestResult {
623
- can?: IDictionary<boolean>;
624
- connection_string?: string | null;
625
- message?: string | null;
626
- name?: string | null;
627
- status?: string | null;
628
- }
629
- export interface IDelegateOauthTest {
630
- name?: string;
631
- installation_target_id?: string;
632
- installation_id?: number;
633
- success?: boolean;
634
- }
635
- export interface IDependencyGraph {
636
- graph_text?: string;
637
- }
638
- export declare enum DependencyStatus {
639
- lock_optional = "lock_optional",
640
- lock_required = "lock_required",
641
- lock_error = "lock_error",
642
- install_none = "install_none"
643
- }
644
- export interface IDialect {
645
- name?: string;
646
- label?: string;
647
- supports_cost_estimate?: boolean;
648
- cost_estimate_style?: string | null;
649
- persistent_table_indexes?: string;
650
- persistent_table_sortkeys?: string;
651
- persistent_table_distkey?: string;
652
- supports_streaming?: boolean;
653
- automatically_run_sql_runner_snippets?: boolean;
654
- connection_tests?: string[];
655
- supports_inducer?: boolean;
656
- supports_multiple_databases?: boolean;
657
- supports_persistent_derived_tables?: boolean;
658
- has_ssl_support?: boolean;
659
- }
660
- export interface IDialectInfo {
661
- can?: IDictionary<boolean>;
662
- default_max_connections?: string | null;
663
- default_port?: string | null;
664
- installed?: boolean;
665
- label?: string | null;
666
- label_for_database_equivalent?: string | null;
667
- name?: string | null;
668
- supported_options?: IDialectInfoOptions;
669
- }
670
- export interface IDialectInfoOptions {
671
- additional_params?: boolean;
672
- after_connect_statements?: boolean;
673
- analytical_view_dataset?: boolean;
674
- auth?: boolean;
675
- cost_estimate?: boolean;
676
- disable_context_comment?: boolean;
677
- host?: boolean;
678
- instance_name?: boolean;
679
- max_billing_gigabytes?: boolean;
680
- oauth_credentials?: boolean;
681
- pdts_for_oauth?: boolean;
682
- port?: boolean;
683
- project_name?: boolean;
684
- schema?: boolean;
685
- service_account_credentials?: boolean;
686
- ssl?: boolean;
687
- timezone?: boolean;
688
- tmp_table?: boolean;
689
- tns?: boolean;
690
- username?: boolean;
691
- username_required?: boolean;
692
- can?: IDictionary<boolean>;
693
- }
694
- export interface IDigestEmails {
695
- is_enabled?: boolean;
696
- }
697
- export interface IDigestEmailSend {
698
- configuration_delivered?: boolean;
699
- }
700
- export interface IDiscretePalette {
701
- id?: string;
702
- label?: string | null;
703
- type?: string;
704
- colors?: string[];
705
- }
706
- export interface IEmbedSsoParams {
707
- target_url: Url;
708
- session_length?: number | null;
709
- force_logout_login?: boolean;
710
- external_user_id?: string | null;
711
- first_name?: string | null;
712
- last_name?: string | null;
713
- user_timezone?: string | null;
714
- permissions?: string[] | null;
715
- models?: string[] | null;
716
- group_ids?: number[] | null;
717
- external_group_id?: string | null;
718
- user_attributes?: IDictionary<any> | null;
719
- secret_id?: number | null;
720
- embed_domain?: string | null;
721
- }
722
- export interface IEmbedUrlResponse {
723
- url?: string;
724
- }
725
- export interface IError {
726
- message: string | null;
727
- documentation_url: Url | null;
728
- }
729
- export declare enum FillStyle {
730
- enumeration = "enumeration",
731
- range = "range"
732
- }
733
- export interface IFolder {
734
- name: string;
735
- parent_id?: string | null;
736
- id?: string;
737
- content_metadata_id?: number | null;
738
- created_at?: Date | null;
739
- creator_id?: number | null;
740
- child_count?: number | null;
741
- external_id?: string | null;
742
- is_embed?: boolean;
743
- is_embed_shared_root?: boolean;
744
- is_embed_users_root?: boolean;
745
- is_personal?: boolean;
746
- is_personal_descendant?: boolean;
747
- is_shared_root?: boolean;
748
- is_users_root?: boolean;
749
- can?: IDictionary<boolean>;
750
- dashboards?: IDashboardBase[] | null;
751
- looks?: ILookWithDashboards[] | null;
752
- }
753
- export interface IFolderBase {
754
- name: string;
755
- parent_id?: string | null;
756
- id?: string;
757
- content_metadata_id?: number | null;
758
- created_at?: Date | null;
759
- creator_id?: number | null;
760
- child_count?: number | null;
761
- external_id?: string | null;
762
- is_embed?: boolean;
763
- is_embed_shared_root?: boolean;
764
- is_embed_users_root?: boolean;
765
- is_personal?: boolean;
766
- is_personal_descendant?: boolean;
767
- is_shared_root?: boolean;
768
- is_users_root?: boolean;
769
- can?: IDictionary<boolean>;
770
- }
771
- export declare enum Format {
772
- topojson = "topojson",
773
- vector_tile_region = "vector_tile_region"
774
- }
775
- export interface IGitBranch {
776
- can?: IDictionary<boolean>;
777
- name?: string | null;
778
- remote?: string | null;
779
- remote_name?: string | null;
780
- error?: string | null;
781
- message?: string | null;
782
- owner_name?: string | null;
783
- readonly?: boolean;
784
- personal?: boolean;
785
- is_local?: boolean;
786
- is_remote?: boolean;
787
- is_production?: boolean;
788
- ahead_count?: number | null;
789
- behind_count?: number | null;
790
- commit_at?: number;
791
- ref?: string | null;
792
- remote_ref?: string | null;
793
- }
794
- export interface IGitConnectionTest {
795
- can?: IDictionary<boolean>;
796
- description?: string | null;
797
- id?: string;
798
- }
799
- export interface IGitConnectionTestResult {
800
- can?: IDictionary<boolean>;
801
- id?: string;
802
- message?: string | null;
803
- status?: string | null;
804
- }
805
- export interface IGitStatus {
806
- action?: string | null;
807
- conflict?: boolean;
808
- revertable?: boolean;
809
- text?: string | null;
810
- can?: IDictionary<boolean>;
811
- }
812
- export interface IGroup {
813
- can?: IDictionary<boolean>;
814
- can_add_to_content_metadata?: boolean;
815
- contains_current_user?: boolean;
816
- external_group_id?: string | null;
817
- externally_managed?: boolean;
818
- id?: number;
819
- include_by_default?: boolean;
820
- name?: string | null;
821
- user_count?: number | null;
822
- }
823
- export interface IGroupIdForGroupInclusion {
824
- group_id?: number | null;
825
- }
826
- export interface IGroupIdForGroupUserInclusion {
827
- user_id?: number | null;
828
- }
829
- export interface IHomepage {
830
- can?: IDictionary<boolean>;
831
- content_metadata_id?: number | null;
832
- created_at?: Date | null;
833
- deleted_at?: Date | null;
834
- description?: string | null;
835
- homepage_sections?: IHomepageSection[] | null;
836
- id?: number;
837
- section_order?: number[] | null;
838
- title?: string | null;
839
- updated_at?: Date | null;
840
- user_id?: number | null;
841
- primary_homepage?: boolean;
842
- }
843
- export interface IHomepageItem {
844
- can?: IDictionary<boolean>;
845
- content_created_by?: string | null;
846
- content_favorite_id?: number | null;
847
- content_metadata_id?: number | null;
848
- content_updated_at?: string | null;
849
- custom_description?: string | null;
850
- custom_image_data_base64?: string | null;
851
- custom_image_url?: string | null;
852
- custom_title?: string | null;
853
- custom_url?: string | null;
854
- dashboard_id?: number | null;
855
- description?: string | null;
856
- favorite_count?: number | null;
857
- homepage_section_id?: number | null;
858
- id?: number;
859
- image_url?: string | null;
860
- location?: string | null;
861
- look_id?: number | null;
862
- lookml_dashboard_id?: string | null;
863
- order?: number | null;
864
- section_fetch_time?: number | null;
865
- title?: string | null;
866
- url?: string | null;
867
- use_custom_description?: boolean;
868
- use_custom_image?: boolean;
869
- use_custom_title?: boolean;
870
- use_custom_url?: boolean;
871
- view_count?: number | null;
872
- }
873
- export interface IHomepageSection {
874
- can?: IDictionary<boolean>;
875
- created_at?: Date | null;
876
- deleted_at?: Date | null;
877
- detail_url?: string | null;
878
- homepage_id?: number | null;
879
- homepage_items?: IHomepageItem[] | null;
880
- id?: number;
881
- is_header?: boolean;
882
- item_order?: number[] | null;
883
- title?: string | null;
884
- updated_at?: Date | null;
885
- description?: string | null;
886
- visible_item_order?: string[] | null;
887
- }
888
- export interface IImportedProject {
889
- name?: string | null;
890
- url?: string | null;
891
- ref?: string | null;
892
- is_remote?: boolean;
893
- can?: IDictionary<boolean>;
894
- }
895
- export interface IIntegration {
896
- can?: IDictionary<boolean>;
897
- id?: string;
898
- integration_hub_id?: number;
899
- label?: string;
900
- description?: string | null;
901
- enabled?: boolean;
902
- params?: IIntegrationParam[];
903
- supported_formats?: SupportedFormats[];
904
- supported_action_types?: SupportedActionTypes[];
905
- supported_formattings?: SupportedFormattings[];
906
- supported_visualization_formattings?: SupportedVisualizationFormattings[];
907
- supported_download_settings?: SupportedDownloadSettings[];
908
- icon_url?: string | null;
909
- uses_oauth?: boolean | null;
910
- required_fields?: IIntegrationRequiredField[];
911
- privacy_link?: string | null;
912
- delegate_oauth?: boolean | null;
913
- installed_delegate_oauth_targets?: number[];
914
- }
915
- export interface IIntegrationHub {
916
- can?: IDictionary<boolean>;
917
- id?: number;
918
- url?: string;
919
- label?: string;
920
- official?: boolean;
921
- fetch_error_message?: string | null;
922
- authorization_token?: string | null;
923
- has_authorization_token?: boolean;
924
- legal_agreement_signed?: boolean;
925
- legal_agreement_required?: boolean;
926
- legal_agreement_text?: string | null;
927
- }
928
- export interface IIntegrationParam {
929
- name?: string | null;
930
- label?: string | null;
931
- description?: string | null;
932
- required?: boolean;
933
- has_value?: boolean;
934
- value?: string | null;
935
- user_attribute_name?: string | null;
936
- sensitive?: boolean;
937
- per_user?: boolean;
938
- delegate_oauth_url?: string | null;
939
- }
940
- export interface IIntegrationRequiredField {
941
- tag?: string | null;
942
- any_tag?: string[] | null;
943
- all_tags?: string[] | null;
944
- }
945
- export interface IIntegrationTestResult {
946
- success?: boolean;
947
- message?: string | null;
948
- delegate_oauth_result?: IDelegateOauthTest[] | null;
949
- }
950
- export interface IInternalHelpResources {
951
- can?: IDictionary<boolean>;
952
- enabled?: boolean;
953
- }
954
- export interface IInternalHelpResourcesContent {
955
- can?: IDictionary<boolean>;
956
- organization_name?: string | null;
957
- markdown_content?: string | null;
958
- }
959
- export interface ILDAPConfig {
960
- can?: IDictionary<boolean>;
961
- alternate_email_login_allowed?: boolean;
962
- auth_password?: string | null;
963
- auth_requires_role?: boolean;
964
- auth_username?: string | null;
965
- connection_host?: string | null;
966
- connection_port?: string | null;
967
- connection_tls?: boolean;
968
- connection_tls_no_verify?: boolean;
969
- default_new_user_group_ids?: number[] | null;
970
- default_new_user_groups?: IGroup[] | null;
971
- default_new_user_role_ids?: number[] | null;
972
- default_new_user_roles?: IRole[] | null;
973
- enabled?: boolean;
974
- force_no_page?: boolean;
975
- groups?: ILDAPGroupRead[] | null;
976
- groups_base_dn?: string | null;
977
- groups_finder_type?: string | null;
978
- groups_member_attribute?: string | null;
979
- groups_objectclasses?: string | null;
980
- groups_user_attribute?: string | null;
981
- groups_with_role_ids?: ILDAPGroupWrite[] | null;
982
- has_auth_password?: boolean;
983
- merge_new_users_by_email?: boolean;
984
- modified_at?: string | null;
985
- modified_by?: string | null;
986
- set_roles_from_groups?: boolean;
987
- test_ldap_password?: string | null;
988
- test_ldap_user?: string | null;
989
- user_attribute_map_email?: string | null;
990
- user_attribute_map_first_name?: string | null;
991
- user_attribute_map_last_name?: string | null;
992
- user_attribute_map_ldap_id?: string | null;
993
- user_attributes?: ILDAPUserAttributeRead[] | null;
994
- user_attributes_with_ids?: ILDAPUserAttributeWrite[] | null;
995
- user_bind_base_dn?: string | null;
996
- user_custom_filter?: string | null;
997
- user_id_attribute_names?: string | null;
998
- user_objectclass?: string | null;
999
- allow_normal_group_membership?: boolean;
1000
- allow_roles_from_normal_groups?: boolean;
1001
- allow_direct_roles?: boolean;
1002
- url?: Url | null;
1003
- }
1004
- export interface ILDAPConfigTestIssue {
1005
- severity?: string | null;
1006
- message?: string | null;
1007
- can?: IDictionary<boolean>;
1008
- }
1009
- export interface ILDAPConfigTestResult {
1010
- details?: string | null;
1011
- issues?: ILDAPConfigTestIssue[] | null;
1012
- message?: string | null;
1013
- status?: string | null;
1014
- trace?: string | null;
1015
- user?: ILDAPUser;
1016
- url?: Url | null;
1017
- }
1018
- export interface ILDAPGroupRead {
1019
- id?: number;
1020
- looker_group_id?: number | null;
1021
- looker_group_name?: string | null;
1022
- name?: string | null;
1023
- roles?: IRole[] | null;
1024
- url?: Url | null;
1025
- }
1026
- export interface ILDAPGroupWrite {
1027
- id?: number | null;
1028
- looker_group_id?: number | null;
1029
- looker_group_name?: string | null;
1030
- name?: string | null;
1031
- role_ids?: number[] | null;
1032
- url?: Url | null;
1033
- }
1034
- export interface ILDAPUser {
1035
- all_emails?: string[] | null;
1036
- attributes?: IDictionary<string> | null;
1037
- email?: string | null;
1038
- first_name?: string | null;
1039
- groups?: string[] | null;
1040
- last_name?: string | null;
1041
- ldap_dn?: string | null;
1042
- ldap_id?: string | null;
1043
- roles?: string[] | null;
1044
- can?: IDictionary<boolean>;
1045
- url?: Url | null;
1046
- }
1047
- export interface ILDAPUserAttributeRead {
1048
- name?: string | null;
1049
- required?: boolean;
1050
- user_attributes?: IUserAttribute[] | null;
1051
- url?: Url | null;
1052
- }
1053
- export interface ILDAPUserAttributeWrite {
1054
- name?: string | null;
1055
- required?: boolean;
1056
- user_attribute_ids?: number[] | null;
1057
- url?: Url | null;
1058
- }
1059
- export interface ILegacyFeature {
1060
- can?: IDictionary<boolean>;
1061
- id?: string;
1062
- name?: string | null;
1063
- description?: string | null;
1064
- enabled_locally?: boolean;
1065
- enabled?: boolean;
1066
- disallowed_as_of_version?: string | null;
1067
- disable_on_upgrade_to_version?: string | null;
1068
- end_of_life_version?: string | null;
1069
- documentation_url?: string | null;
1070
- approximate_disable_date?: Date | null;
1071
- approximate_end_of_life_date?: Date | null;
1072
- has_disabled_on_upgrade?: boolean;
1073
- }
1074
- export interface ILocale {
1075
- code?: string | null;
1076
- native_name?: string | null;
1077
- english_name?: string | null;
1078
- }
1079
- export interface ILocalizationSettings {
1080
- default_locale?: string | null;
1081
- localization_level?: string | null;
1082
- can?: IDictionary<boolean>;
1083
- }
1084
- export interface ILook {
1085
- can?: IDictionary<boolean>;
1086
- content_metadata_id?: number | null;
1087
- id?: number;
1088
- title?: string | null;
1089
- content_favorite_id?: number | null;
1090
- created_at?: Date | null;
1091
- deleted?: boolean;
1092
- deleted_at?: Date | null;
1093
- deleter_id?: number | null;
1094
- description?: string | null;
1095
- embed_url?: string | null;
1096
- excel_file_url?: string | null;
1097
- favorite_count?: number | null;
1098
- google_spreadsheet_formula?: string | null;
1099
- image_embed_url?: string | null;
1100
- is_run_on_load?: boolean;
1101
- last_accessed_at?: Date | null;
1102
- last_updater_id?: number | null;
1103
- last_viewed_at?: Date | null;
1104
- model?: ILookModel;
1105
- public?: boolean | null;
1106
- public_slug?: string | null;
1107
- public_url?: string | null;
1108
- query_id?: number | null;
1109
- short_url?: string | null;
1110
- folder?: IFolderBase;
1111
- folder_id?: string | null;
1112
- updated_at?: Date | null;
1113
- user_id?: number | null;
1114
- view_count?: number | null;
1115
- user?: IUserIdOnly;
1116
- space_id?: string | null;
1117
- space?: ISpaceBase;
1118
- }
1119
- export interface ILookBasic {
1120
- can?: IDictionary<boolean>;
1121
- content_metadata_id?: number | null;
1122
- id?: number;
1123
- title?: string | null;
1124
- }
1125
- export interface ILookmlModel {
1126
- can?: IDictionary<boolean>;
1127
- allowed_db_connection_names?: string[] | null;
1128
- explores?: ILookmlModelNavExplore[] | null;
1129
- has_content?: boolean;
1130
- label?: string | null;
1131
- name?: string | null;
1132
- project_name?: string | null;
1133
- unlimited_db_connections?: boolean;
1134
- }
1135
- export interface ILookmlModelExplore {
1136
- id?: string;
1137
- name?: string | null;
1138
- description?: string;
1139
- label?: string | null;
1140
- scopes?: string[] | null;
1141
- can_total?: boolean;
1142
- can_save?: boolean;
1143
- can_explain?: boolean;
1144
- can_pivot_in_db?: boolean;
1145
- can_subtotal?: boolean;
1146
- has_timezone_support?: boolean;
1147
- supports_cost_estimate?: boolean;
1148
- connection_name?: string | null;
1149
- null_sort_treatment?: string | null;
1150
- files?: string[] | null;
1151
- source_file?: string | null;
1152
- project_name?: string | null;
1153
- model_name?: string | null;
1154
- view_name?: string | null;
1155
- hidden?: boolean;
1156
- sql_table_name?: string | null;
1157
- access_filter_fields?: string[] | null;
1158
- access_filters?: ILookmlModelExploreAccessFilter[] | null;
1159
- aliases?: ILookmlModelExploreAlias[] | null;
1160
- always_filter?: ILookmlModelExploreAlwaysFilter[] | null;
1161
- conditionally_filter?: ILookmlModelExploreConditionallyFilter[] | null;
1162
- index_fields?: string[] | null;
1163
- sets?: ILookmlModelExploreSet[] | null;
1164
- tags?: string[] | null;
1165
- errors?: ILookmlModelExploreError[] | null;
1166
- fields?: ILookmlModelExploreFieldset;
1167
- joins?: ILookmlModelExploreJoins[] | null;
1168
- group_label?: string | null;
1169
- supported_measure_types?: ILookmlModelExploreSupportedMeasureType[];
1170
- }
1171
- export interface ILookmlModelExploreAccessFilter {
1172
- field?: string | null;
1173
- user_attribute?: string | null;
1174
- }
1175
- export interface ILookmlModelExploreAlias {
1176
- name?: string | null;
1177
- value?: string | null;
1178
- }
1179
- export interface ILookmlModelExploreAlwaysFilter {
1180
- name?: string | null;
1181
- value?: string | null;
1182
- }
1183
- export interface ILookmlModelExploreConditionallyFilter {
1184
- name?: string | null;
1185
- value?: string | null;
1186
- }
1187
- export interface ILookmlModelExploreError {
1188
- message?: string | null;
1189
- details?: any | null;
1190
- error_pos?: string | null;
1191
- field_error?: boolean;
1192
- }
1193
- export interface ILookmlModelExploreField {
1194
- align?: Align;
1195
- can_filter?: boolean;
1196
- category?: Category | null;
1197
- default_filter_value?: string | null;
1198
- description?: string | null;
1199
- dimension_group?: string | null;
1200
- enumerations?: ILookmlModelExploreFieldEnumeration[] | null;
1201
- error?: string | null;
1202
- field_group_label?: string | null;
1203
- field_group_variant?: string | null;
1204
- fill_style?: FillStyle | null;
1205
- fiscal_month_offset?: number;
1206
- has_allowed_values?: boolean;
1207
- hidden?: boolean;
1208
- is_filter?: boolean;
1209
- is_fiscal?: boolean;
1210
- is_numeric?: boolean;
1211
- is_timeframe?: boolean;
1212
- can_time_filter?: boolean;
1213
- time_interval?: ILookmlModelExploreFieldTimeInterval;
1214
- label?: string;
1215
- label_from_parameter?: string | null;
1216
- label_short?: string;
1217
- lookml_link?: string | null;
1218
- map_layer?: ILookmlModelExploreFieldMapLayer;
1219
- measure?: boolean;
1220
- name?: string;
1221
- strict_value_format?: boolean;
1222
- parameter?: boolean;
1223
- permanent?: boolean | null;
1224
- primary_key?: boolean;
1225
- project_name?: string | null;
1226
- requires_refresh_on_sort?: boolean;
1227
- scope?: string;
1228
- sortable?: boolean;
1229
- source_file?: string;
1230
- source_file_path?: string;
1231
- sql?: string | null;
1232
- sql_case?: ILookmlModelExploreFieldSqlCase[] | null;
1233
- filters?: ILookmlModelExploreFieldMeasureFilters[] | null;
1234
- suggest_dimension?: string;
1235
- suggest_explore?: string;
1236
- suggestable?: boolean;
1237
- suggestions?: string[] | null;
1238
- tags?: string[];
1239
- type?: string;
1240
- user_attribute_filter_types?: UserAttributeFilterTypes[];
1241
- value_format?: string | null;
1242
- view?: string;
1243
- view_label?: string;
1244
- dynamic?: boolean;
1245
- week_start_day?: WeekStartDay;
1246
- }
1247
- export interface ILookmlModelExploreFieldEnumeration {
1248
- label?: string | null;
1249
- value?: any | null;
1250
- }
1251
- export interface ILookmlModelExploreFieldMapLayer {
1252
- url?: string;
1253
- name?: string;
1254
- feature_key?: string | null;
1255
- property_key?: string | null;
1256
- property_label_key?: string | null;
1257
- projection?: string | null;
1258
- format?: Format;
1259
- extents_json_url?: string | null;
1260
- max_zoom_level?: number | null;
1261
- min_zoom_level?: number | null;
1262
- }
1263
- export interface ILookmlModelExploreFieldMeasureFilters {
1264
- field?: string | null;
1265
- condition?: string | null;
1266
- }
1267
- export interface ILookmlModelExploreFieldset {
1268
- dimensions?: ILookmlModelExploreField[] | null;
1269
- measures?: ILookmlModelExploreField[] | null;
1270
- filters?: ILookmlModelExploreField[] | null;
1271
- parameters?: ILookmlModelExploreField[] | null;
1272
- }
1273
- export interface ILookmlModelExploreFieldSqlCase {
1274
- value?: string | null;
1275
- condition?: string | null;
1276
- }
1277
- export interface ILookmlModelExploreFieldTimeInterval {
1278
- name?: Name;
1279
- count?: number;
1280
- }
1281
- export interface ILookmlModelExploreJoins {
1282
- name?: string | null;
1283
- dependent_fields?: string[] | null;
1284
- fields?: string[];
1285
- foreign_key?: string;
1286
- from?: string;
1287
- outer_only?: boolean | null;
1288
- relationship?: string | null;
1289
- required_joins?: string[];
1290
- sql_foreign_key?: string;
1291
- sql_on?: string;
1292
- sql_table_name?: string;
1293
- type?: string;
1294
- view_label?: string;
1295
- }
1296
- export interface ILookmlModelExploreSet {
1297
- name?: string | null;
1298
- value?: string[] | null;
1299
- }
1300
- export interface ILookmlModelExploreSupportedMeasureType {
1301
- dimension_type?: string | null;
1302
- measure_types?: string[] | null;
1303
- }
1304
- export interface ILookmlModelNavExplore {
1305
- name?: string | null;
1306
- description?: string;
1307
- label?: string | null;
1308
- hidden?: boolean;
1309
- group_label?: string | null;
1310
- can?: IDictionary<boolean>;
1311
- }
1312
- export interface ILookmlTest {
1313
- can?: IDictionary<boolean>;
1314
- model_name?: string;
1315
- name?: string;
1316
- explore_name?: string;
1317
- query_url_params?: string;
1318
- file?: string;
1319
- line?: number | null;
1320
- }
1321
- export interface ILookmlTestResult {
1322
- can?: IDictionary<boolean>;
1323
- model_name?: string;
1324
- test_name?: string;
1325
- assertions_count?: number;
1326
- assertions_failed?: number;
1327
- errors?: IProjectError[] | null;
1328
- warnings?: IProjectError[] | null;
1329
- success?: boolean;
1330
- }
1331
- export interface ILookModel {
1332
- id?: string;
1333
- label?: string | null;
1334
- }
1335
- export interface ILookWithDashboards {
1336
- can?: IDictionary<boolean>;
1337
- content_metadata_id?: number | null;
1338
- id?: number;
1339
- title?: string | null;
1340
- content_favorite_id?: number | null;
1341
- created_at?: Date | null;
1342
- deleted?: boolean;
1343
- deleted_at?: Date | null;
1344
- deleter_id?: number | null;
1345
- description?: string | null;
1346
- embed_url?: string | null;
1347
- excel_file_url?: string | null;
1348
- favorite_count?: number | null;
1349
- google_spreadsheet_formula?: string | null;
1350
- image_embed_url?: string | null;
1351
- is_run_on_load?: boolean;
1352
- last_accessed_at?: Date | null;
1353
- last_updater_id?: number | null;
1354
- last_viewed_at?: Date | null;
1355
- model?: ILookModel;
1356
- public?: boolean | null;
1357
- public_slug?: string | null;
1358
- public_url?: string | null;
1359
- query_id?: number | null;
1360
- short_url?: string | null;
1361
- folder?: IFolderBase;
1362
- folder_id?: string | null;
1363
- updated_at?: Date | null;
1364
- user_id?: number | null;
1365
- view_count?: number | null;
1366
- user?: IUserIdOnly;
1367
- space_id?: string | null;
1368
- space?: ISpaceBase;
1369
- dashboards?: IDashboardBase[] | null;
1370
- }
1371
- export interface ILookWithQuery {
1372
- can?: IDictionary<boolean>;
1373
- content_metadata_id?: number | null;
1374
- id?: number;
1375
- title?: string | null;
1376
- content_favorite_id?: number | null;
1377
- created_at?: Date | null;
1378
- deleted?: boolean;
1379
- deleted_at?: Date | null;
1380
- deleter_id?: number | null;
1381
- description?: string | null;
1382
- embed_url?: string | null;
1383
- excel_file_url?: string | null;
1384
- favorite_count?: number | null;
1385
- google_spreadsheet_formula?: string | null;
1386
- image_embed_url?: string | null;
1387
- is_run_on_load?: boolean;
1388
- last_accessed_at?: Date | null;
1389
- last_updater_id?: number | null;
1390
- last_viewed_at?: Date | null;
1391
- model?: ILookModel;
1392
- public?: boolean | null;
1393
- public_slug?: string | null;
1394
- public_url?: string | null;
1395
- query_id?: number | null;
1396
- short_url?: string | null;
1397
- folder?: IFolderBase;
1398
- folder_id?: string | null;
1399
- updated_at?: Date | null;
1400
- user_id?: number | null;
1401
- view_count?: number | null;
1402
- user?: IUserIdOnly;
1403
- space_id?: string | null;
1404
- space?: ISpaceBase;
1405
- query?: IQuery;
1406
- url?: string | null;
1407
- }
1408
- export interface IManifest {
1409
- can?: IDictionary<boolean>;
1410
- name?: string | null;
1411
- imports?: IImportedProject[] | null;
1412
- localization_settings?: ILocalizationSettings;
1413
- }
1414
- export interface IMaterializePDT {
1415
- materialization_id?: string;
1416
- resp_text?: string | null;
1417
- }
1418
- export interface IMergeFields {
1419
- field_name?: string | null;
1420
- source_field_name?: string | null;
1421
- }
1422
- export interface IMergeQuery {
1423
- can?: IDictionary<boolean>;
1424
- column_limit?: string | null;
1425
- dynamic_fields?: string | null;
1426
- id?: string;
1427
- pivots?: string[] | null;
1428
- result_maker_id?: number | null;
1429
- sorts?: string[] | null;
1430
- source_queries?: IMergeQuerySourceQuery[] | null;
1431
- total?: boolean;
1432
- vis_config?: IDictionary<string> | null;
1433
- }
1434
- export interface IMergeQuerySourceQuery {
1435
- merge_fields?: IMergeFields[] | null;
1436
- name?: string | null;
1437
- query_id?: number | null;
1438
- }
1439
- export interface IModelSet {
1440
- can?: IDictionary<boolean>;
1441
- all_access?: boolean;
1442
- built_in?: boolean;
1443
- id?: number;
1444
- models?: string[] | null;
1445
- name?: string | null;
1446
- url?: Url | null;
1447
- }
1448
- export interface IModelsNotValidated {
1449
- name?: string | null;
1450
- project_file_id?: string | null;
1451
- }
1452
- export declare enum Name {
1453
- day = "day",
1454
- hour = "hour",
1455
- minute = "minute",
1456
- second = "second",
1457
- millisecond = "millisecond",
1458
- microsecond = "microsecond",
1459
- week = "week",
1460
- month = "month",
1461
- quarter = "quarter",
1462
- year = "year"
1463
- }
1464
- export interface IOIDCConfig {
1465
- can?: IDictionary<boolean>;
1466
- alternate_email_login_allowed?: boolean;
1467
- audience?: string | null;
1468
- auth_requires_role?: boolean;
1469
- authorization_endpoint?: Url | null;
1470
- default_new_user_group_ids?: number[] | null;
1471
- default_new_user_groups?: IGroup[] | null;
1472
- default_new_user_role_ids?: number[] | null;
1473
- default_new_user_roles?: IRole[] | null;
1474
- enabled?: boolean;
1475
- groups?: IOIDCGroupRead[] | null;
1476
- groups_attribute?: string | null;
1477
- groups_with_role_ids?: IOIDCGroupWrite[] | null;
1478
- identifier?: string | null;
1479
- issuer?: string | null;
1480
- modified_at?: Date | null;
1481
- modified_by?: number | null;
1482
- new_user_migration_types?: string | null;
1483
- scopes?: string[] | null;
1484
- secret?: string | null;
1485
- set_roles_from_groups?: boolean;
1486
- test_slug?: string | null;
1487
- token_endpoint?: string | null;
1488
- user_attribute_map_email?: string | null;
1489
- user_attribute_map_first_name?: string | null;
1490
- user_attribute_map_last_name?: string | null;
1491
- user_attributes?: IOIDCUserAttributeRead[] | null;
1492
- user_attributes_with_ids?: IOIDCUserAttributeWrite[] | null;
1493
- userinfo_endpoint?: Url | null;
1494
- allow_normal_group_membership?: boolean;
1495
- allow_roles_from_normal_groups?: boolean;
1496
- allow_direct_roles?: boolean;
1497
- url?: Url | null;
1498
- }
1499
- export interface IOIDCGroupRead {
1500
- id?: number;
1501
- looker_group_id?: number | null;
1502
- looker_group_name?: string | null;
1503
- name?: string | null;
1504
- roles?: IRole[] | null;
1505
- }
1506
- export interface IOIDCGroupWrite {
1507
- id?: number | null;
1508
- looker_group_id?: number | null;
1509
- looker_group_name?: string | null;
1510
- name?: string | null;
1511
- role_ids?: number[] | null;
1512
- can?: IDictionary<boolean>;
1513
- }
1514
- export interface IOIDCUserAttributeRead {
1515
- name?: string | null;
1516
- required?: boolean;
1517
- user_attributes?: IUserAttribute[] | null;
1518
- }
1519
- export interface IOIDCUserAttributeWrite {
1520
- name?: string | null;
1521
- required?: boolean;
1522
- user_attribute_ids?: number[] | null;
1523
- can?: IDictionary<boolean>;
1524
- }
1525
- export interface IPasswordConfig {
1526
- can?: IDictionary<boolean>;
1527
- min_length?: number | null;
1528
- require_numeric?: boolean;
1529
- require_upperlower?: boolean;
1530
- require_special?: boolean;
1531
- }
1532
- export interface IPermission {
1533
- can?: IDictionary<boolean>;
1534
- permission?: string | null;
1535
- parent?: string | null;
1536
- description?: string | null;
1537
- }
1538
- export interface IPermissionSet {
1539
- can?: IDictionary<boolean>;
1540
- all_access?: boolean;
1541
- built_in?: boolean;
1542
- id?: number;
1543
- name?: string | null;
1544
- permissions?: string[] | null;
1545
- url?: Url | null;
1546
- }
1547
- export declare enum PermissionType {
1548
- view = "view",
1549
- edit = "edit"
1550
- }
1551
- export interface IProject {
1552
- can?: IDictionary<boolean>;
1553
- id?: string;
1554
- name?: string;
1555
- uses_git?: boolean;
1556
- git_remote_url?: string | null;
1557
- git_username?: string | null;
1558
- git_password?: string | null;
1559
- git_production_branch_name?: string;
1560
- use_git_cookie_auth?: boolean;
1561
- git_username_user_attribute?: string | null;
1562
- git_password_user_attribute?: string | null;
1563
- git_service_name?: string | null;
1564
- git_application_server_http_port?: number | null;
1565
- git_application_server_http_scheme?: string | null;
1566
- deploy_secret?: string | null;
1567
- unset_deploy_secret?: boolean;
1568
- pull_request_mode?: PullRequestMode;
1569
- validation_required?: boolean;
1570
- git_release_mgmt_enabled?: boolean;
1571
- allow_warnings?: boolean;
1572
- is_example?: boolean;
1573
- }
1574
- export interface IProjectError {
1575
- code?: string | null;
1576
- severity?: string | null;
1577
- kind?: string | null;
1578
- message?: string | null;
1579
- field_name?: string | null;
1580
- file_path?: string | null;
1581
- line_number?: number | null;
1582
- model_id?: string | null;
1583
- explore?: string | null;
1584
- help_url?: string | null;
1585
- params?: IDictionary<string> | null;
1586
- sanitized_message?: string | null;
1587
- }
1588
- export interface IProjectFile {
1589
- can?: IDictionary<boolean>;
1590
- id?: string;
1591
- path?: string | null;
1592
- title?: string | null;
1593
- type?: string | null;
1594
- extension?: string | null;
1595
- mime_type?: string | null;
1596
- editable?: boolean;
1597
- git_status?: IGitStatus;
1598
- }
1599
- export interface IProjectValidation {
1600
- errors?: IProjectError[] | null;
1601
- project_digest?: string | null;
1602
- models_not_validated?: IModelsNotValidated[] | null;
1603
- computation_time?: number | null;
1604
- }
1605
- export interface IProjectValidationCache {
1606
- errors?: IProjectError[] | null;
1607
- project_digest?: string | null;
1608
- models_not_validated?: IModelsNotValidated[] | null;
1609
- computation_time?: number | null;
1610
- stale?: boolean;
1611
- }
1612
- export interface IProjectWorkspace {
1613
- can?: IDictionary<boolean>;
1614
- project_id?: string | null;
1615
- workspace_id?: string | null;
1616
- git_status?: string | null;
1617
- git_head?: string | null;
1618
- dependency_status?: DependencyStatus | null;
1619
- git_branch?: IGitBranch;
1620
- lookml_type?: string | null;
1621
- }
1622
- export declare enum PullRequestMode {
1623
- off = "off",
1624
- links = "links",
1625
- recommended = "recommended",
1626
- required = "required"
1627
- }
1628
- export interface IQuery {
1629
- can?: IDictionary<boolean>;
1630
- id?: number;
1631
- model: string;
1632
- view: string;
1633
- fields?: string[] | null;
1634
- pivots?: string[];
1635
- fill_fields?: string[];
1636
- filters?: IDictionary<string>;
1637
- filter_expression?: string;
1638
- sorts?: string[] | null;
1639
- limit?: string;
1640
- column_limit?: string;
1641
- total?: boolean | null;
1642
- row_total?: string;
1643
- subtotals?: string[];
1644
- vis_config?: IDictionary<any> | null;
1645
- filter_config?: IDictionary<any> | null;
1646
- visible_ui_sections?: string;
1647
- slug?: string | null;
1648
- dynamic_fields?: string;
1649
- client_id?: string | null;
1650
- share_url?: string | null;
1651
- expanded_share_url?: string | null;
1652
- url?: string | null;
1653
- query_timezone?: string;
1654
- has_table_calculations?: boolean;
1655
- runtime?: number;
1656
- }
1657
- export interface IQueryTask {
1658
- can?: IDictionary<boolean>;
1659
- id?: string;
1660
- query_id?: number | null;
1661
- query?: IQuery;
1662
- generate_links?: boolean;
1663
- force_production?: boolean;
1664
- path_prefix?: string | null;
1665
- cache?: boolean;
1666
- server_table_calcs?: boolean;
1667
- cache_only?: boolean;
1668
- cache_key?: string | null;
1669
- status?: string | null;
1670
- source?: string | null;
1671
- runtime?: number | null;
1672
- rebuild_pdts?: boolean;
1673
- result_source?: string | null;
1674
- look_id?: number | null;
1675
- dashboard_id?: string | null;
1676
- result_format?: string | null;
1677
- }
1678
- export interface IRenderTask {
1679
- can?: IDictionary<boolean>;
1680
- created_at?: string | null;
1681
- dashboard_filters?: string | null;
1682
- dashboard_id?: number | null;
1683
- dashboard_style?: string | null;
1684
- finalized_at?: string | null;
1685
- height?: number | null;
1686
- id?: string;
1687
- look_id?: number | null;
1688
- lookml_dashboard_id?: string | null;
1689
- query_id?: number | null;
1690
- dashboard_element_id?: string | null;
1691
- query_runtime?: number | null;
1692
- render_runtime?: number | null;
1693
- result_format?: string | null;
1694
- runtime?: number | null;
1695
- status?: string | null;
1696
- status_detail?: string | null;
1697
- user_id?: number | null;
1698
- width?: number | null;
1699
- }
1700
- export interface IRepositoryCredential {
1701
- can?: IDictionary<boolean>;
1702
- id?: string;
1703
- root_project_id?: string;
1704
- remote_url?: string;
1705
- git_username?: string | null;
1706
- git_password?: string | null;
1707
- ssh_public_key?: string | null;
1708
- is_configured?: boolean;
1709
- }
1710
- export interface IRequestActiveThemes {
1711
- name?: string | null;
1712
- ts?: Date | null;
1713
- fields?: string | null;
1714
- }
1715
- export interface IRequestAllGroups {
1716
- fields?: string | null;
1717
- page?: number | null;
1718
- per_page?: number | null;
1719
- sorts?: string | null;
1720
- ids?: DelimArray<number> | null;
1721
- content_metadata_id?: number | null;
1722
- can_add_to_content_metadata?: boolean | null;
1723
- }
1724
- export interface IRequestAllGroupUsers {
1725
- group_id: number;
1726
- fields?: string | null;
1727
- page?: number | null;
1728
- per_page?: number | null;
1729
- sorts?: string | null;
1730
- }
1731
- export interface IRequestAllHomepageItems {
1732
- fields?: string | null;
1733
- sorts?: string | null;
1734
- homepage_section_id?: string | null;
1735
- }
1736
- export interface IRequestAllHomepageSections {
1737
- fields?: string | null;
1738
- sorts?: string | null;
1739
- }
1740
- export interface IRequestAllIntegrations {
1741
- fields?: string | null;
1742
- integration_hub_id?: string | null;
1743
- }
1744
- export interface IRequestAllRoles {
1745
- fields?: string | null;
1746
- ids?: DelimArray<number> | null;
1747
- }
1748
- export interface IRequestAllScheduledPlans {
1749
- user_id?: number | null;
1750
- fields?: string | null;
1751
- all_users?: boolean | null;
1752
- }
1753
- export interface IRequestAllUserAttributes {
1754
- fields?: string | null;
1755
- sorts?: string | null;
1756
- }
1757
- export interface IRequestAllUsers {
1758
- fields?: string | null;
1759
- page?: number | null;
1760
- per_page?: number | null;
1761
- sorts?: string | null;
1762
- ids?: DelimArray<number> | null;
1763
- }
1764
- export interface IRequestContentThumbnail {
1765
- type: string;
1766
- resource_id: string;
1767
- reload?: string | null;
1768
- theme?: string | null;
1769
- format?: string | null;
1770
- width?: number | null;
1771
- height?: number | null;
1772
- }
1773
- export interface IRequestCreateDashboardElement {
1774
- body: IWriteDashboardElement;
1775
- fields?: string | null;
1776
- apply_filters?: boolean | null;
1777
- }
1778
- export interface IRequestCreateDashboardRenderTask {
1779
- dashboard_id: number;
1780
- result_format: string;
1781
- body: ICreateDashboardRenderTask;
1782
- width: number;
1783
- height: number;
1784
- fields?: string | null;
1785
- pdf_paper_size?: string | null;
1786
- pdf_landscape?: boolean | null;
1787
- }
1788
- export interface IRequestCreateLookmlDashboardRenderTask {
1789
- dashboard_id: string;
1790
- result_format: string;
1791
- body: ICreateDashboardRenderTask;
1792
- width: number;
1793
- height: number;
1794
- fields?: string | null;
1795
- pdf_paper_size?: string | null;
1796
- pdf_landscape?: boolean | null;
1797
- }
1798
- export interface IRequestCreateQueryTask {
1799
- body: IWriteCreateQueryTask;
1800
- limit?: number | null;
1801
- apply_formatting?: boolean | null;
1802
- apply_vis?: boolean | null;
1803
- cache?: boolean | null;
1804
- generate_drill_links?: boolean | null;
1805
- force_production?: boolean | null;
1806
- cache_only?: boolean | null;
1807
- path_prefix?: string | null;
1808
- rebuild_pdts?: boolean | null;
1809
- server_table_calcs?: boolean | null;
1810
- image_width?: number | null;
1811
- image_height?: number | null;
1812
- fields?: string | null;
1813
- }
1814
- export interface IRequestCreateUserCredentialsEmailPasswordReset {
1815
- user_id: number;
1816
- expires?: boolean | null;
1817
- fields?: string | null;
1818
- }
1819
- export interface IRequestDeployRefToProduction {
1820
- project_id: string;
1821
- branch?: string | null;
1822
- ref?: string | null;
1823
- }
1824
- export interface IRequestFolderChildren {
1825
- folder_id: string;
1826
- fields?: string | null;
1827
- page?: number | null;
1828
- per_page?: number | null;
1829
- sorts?: string | null;
1830
- }
1831
- export interface IRequestFolderChildrenSearch {
1832
- folder_id: string;
1833
- fields?: string | null;
1834
- sorts?: string | null;
1835
- name?: string | null;
1836
- }
1837
- export interface IRequestGraphDerivedTablesForModel {
1838
- model: string;
1839
- format?: string | null;
1840
- color?: string | null;
1841
- }
1842
- export interface IRequestGraphDerivedTablesForView {
1843
- view: string;
1844
- models?: string | null;
1845
- workspace?: string | null;
1846
- }
1847
- export interface IRequestLogin {
1848
- client_id?: string | null;
1849
- client_secret?: string | null;
1850
- }
1851
- export interface IRequestRoleUsers {
1852
- role_id: number;
1853
- fields?: string | null;
1854
- direct_association_only?: boolean | null;
1855
- }
1856
- export interface IRequestRunGitConnectionTest {
1857
- project_id: string;
1858
- test_id: string;
1859
- remote_url?: string | null;
1860
- use_production?: string | null;
1861
- }
1862
- export interface IRequestRunInlineQuery {
1863
- result_format: string;
1864
- body: IWriteQuery;
1865
- limit?: number | null;
1866
- apply_formatting?: boolean | null;
1867
- apply_vis?: boolean | null;
1868
- cache?: boolean | null;
1869
- image_width?: number | null;
1870
- image_height?: number | null;
1871
- generate_drill_links?: boolean | null;
1872
- force_production?: boolean | null;
1873
- cache_only?: boolean | null;
1874
- path_prefix?: string | null;
1875
- rebuild_pdts?: boolean | null;
1876
- server_table_calcs?: boolean | null;
1877
- }
1878
- export interface IRequestRunLook {
1879
- look_id: number;
1880
- result_format: string;
1881
- limit?: number | null;
1882
- apply_formatting?: boolean | null;
1883
- apply_vis?: boolean | null;
1884
- cache?: boolean | null;
1885
- image_width?: number | null;
1886
- image_height?: number | null;
1887
- generate_drill_links?: boolean | null;
1888
- force_production?: boolean | null;
1889
- cache_only?: boolean | null;
1890
- path_prefix?: string | null;
1891
- rebuild_pdts?: boolean | null;
1892
- server_table_calcs?: boolean | null;
1893
- }
1894
- export interface IRequestRunLookmlTest {
1895
- project_id: string;
1896
- file_id?: string | null;
1897
- test?: string | null;
1898
- model?: string | null;
1899
- }
1900
- export interface IRequestRunQuery {
1901
- query_id: number;
1902
- result_format: string;
1903
- limit?: number | null;
1904
- apply_formatting?: boolean | null;
1905
- apply_vis?: boolean | null;
1906
- cache?: boolean | null;
1907
- image_width?: number | null;
1908
- image_height?: number | null;
1909
- generate_drill_links?: boolean | null;
1910
- force_production?: boolean | null;
1911
- cache_only?: boolean | null;
1912
- path_prefix?: string | null;
1913
- rebuild_pdts?: boolean | null;
1914
- server_table_calcs?: boolean | null;
1915
- }
1916
- export interface IRequestScheduledPlansForDashboard {
1917
- dashboard_id: number;
1918
- user_id?: number | null;
1919
- all_users?: boolean | null;
1920
- fields?: string | null;
1921
- }
1922
- export interface IRequestScheduledPlansForLook {
1923
- look_id: number;
1924
- user_id?: number | null;
1925
- fields?: string | null;
1926
- all_users?: boolean | null;
1927
- }
1928
- export interface IRequestScheduledPlansForLookmlDashboard {
1929
- lookml_dashboard_id: string;
1930
- user_id?: number | null;
1931
- fields?: string | null;
1932
- all_users?: boolean | null;
1933
- }
1934
- export interface IRequestSearchContentFavorites {
1935
- id?: number | null;
1936
- user_id?: number | null;
1937
- content_metadata_id?: number | null;
1938
- dashboard_id?: number | null;
1939
- look_id?: number | null;
1940
- limit?: number | null;
1941
- offset?: number | null;
1942
- sorts?: string | null;
1943
- fields?: string | null;
1944
- filter_or?: boolean | null;
1945
- }
1946
- export interface IRequestSearchContentViews {
1947
- view_count?: number | null;
1948
- group_id?: number | null;
1949
- look_id?: string | null;
1950
- dashboard_id?: string | null;
1951
- content_metadata_id?: number | null;
1952
- start_of_week_date?: string | null;
1953
- all_time?: boolean | null;
1954
- user_id?: number | null;
1955
- fields?: string | null;
1956
- limit?: number | null;
1957
- offset?: number | null;
1958
- sorts?: string | null;
1959
- filter_or?: boolean | null;
1960
- }
1961
- export interface IRequestSearchDashboardElements {
1962
- dashboard_id?: number | null;
1963
- look_id?: number | null;
1964
- title?: string | null;
1965
- deleted?: boolean | null;
1966
- fields?: string | null;
1967
- filter_or?: boolean | null;
1968
- sorts?: string | null;
1969
- }
1970
- export interface IRequestSearchDashboards {
1971
- id?: number | null;
1972
- slug?: string | null;
1973
- title?: string | null;
1974
- description?: string | null;
1975
- content_favorite_id?: number | null;
1976
- space_id?: string | null;
1977
- folder_id?: string | null;
1978
- deleted?: string | null;
1979
- user_id?: string | null;
1980
- view_count?: string | null;
1981
- content_metadata_id?: number | null;
1982
- curate?: boolean | null;
1983
- fields?: string | null;
1984
- page?: number | null;
1985
- per_page?: number | null;
1986
- sorts?: string | null;
1987
- filter_or?: boolean | null;
1988
- }
1989
- export interface IRequestSearchFolders {
1990
- fields?: string | null;
1991
- page?: number | null;
1992
- per_page?: number | null;
1993
- limit?: number | null;
1994
- offset?: number | null;
1995
- sorts?: string | null;
1996
- name?: string | null;
1997
- id?: number | null;
1998
- parent_id?: string | null;
1999
- creator_id?: string | null;
2000
- filter_or?: boolean | null;
2001
- is_shared_root?: boolean | null;
2002
- is_users_root?: boolean | null;
2003
- }
2004
- export interface IRequestSearchGroups {
2005
- fields?: string | null;
2006
- limit?: number | null;
2007
- offset?: number | null;
2008
- sorts?: string | null;
2009
- filter_or?: boolean | null;
2010
- id?: number | null;
2011
- name?: string | null;
2012
- external_group_id?: string | null;
2013
- externally_managed?: boolean | null;
2014
- externally_orphaned?: boolean | null;
2015
- }
2016
- export interface IRequestSearchHomepages {
2017
- title?: string | null;
2018
- created_at?: string | null;
2019
- first_name?: string | null;
2020
- last_name?: string | null;
2021
- fields?: string | null;
2022
- favorited?: boolean | null;
2023
- creator_id?: string | null;
2024
- page?: number | null;
2025
- per_page?: number | null;
2026
- offset?: number | null;
2027
- limit?: number | null;
2028
- sorts?: string | null;
2029
- filter_or?: boolean | null;
2030
- }
2031
- export interface IRequestSearchLooks {
2032
- id?: string | null;
2033
- title?: string | null;
2034
- description?: string | null;
2035
- content_favorite_id?: number | null;
2036
- space_id?: string | null;
2037
- user_id?: string | null;
2038
- view_count?: string | null;
2039
- deleted?: boolean | null;
2040
- query_id?: number | null;
2041
- curate?: boolean | null;
2042
- fields?: string | null;
2043
- page?: number | null;
2044
- per_page?: number | null;
2045
- sorts?: string | null;
2046
- filter_or?: boolean | null;
2047
- }
2048
- export interface IRequestSearchModelSets {
2049
- fields?: string | null;
2050
- limit?: number | null;
2051
- offset?: number | null;
2052
- sorts?: string | null;
2053
- id?: number | null;
2054
- name?: string | null;
2055
- all_access?: boolean | null;
2056
- built_in?: boolean | null;
2057
- filter_or?: boolean | null;
2058
- }
2059
- export interface IRequestSearchPermissionSets {
2060
- fields?: string | null;
2061
- limit?: number | null;
2062
- offset?: number | null;
2063
- sorts?: string | null;
2064
- id?: number | null;
2065
- name?: string | null;
2066
- all_access?: boolean | null;
2067
- built_in?: boolean | null;
2068
- filter_or?: boolean | null;
2069
- }
2070
- export interface IRequestSearchRoles {
2071
- fields?: string | null;
2072
- limit?: number | null;
2073
- offset?: number | null;
2074
- sorts?: string | null;
2075
- id?: number | null;
2076
- name?: string | null;
2077
- built_in?: boolean | null;
2078
- filter_or?: boolean | null;
2079
- }
2080
- export interface IRequestSearchSpaces {
2081
- fields?: string | null;
2082
- page?: number | null;
2083
- per_page?: number | null;
2084
- limit?: number | null;
2085
- offset?: number | null;
2086
- sorts?: string | null;
2087
- name?: string | null;
2088
- id?: number | null;
2089
- parent_id?: string | null;
2090
- creator_id?: string | null;
2091
- filter_or?: boolean | null;
2092
- is_shared_root?: boolean | null;
2093
- is_users_root?: boolean | null;
2094
- }
2095
- export interface IRequestSearchThemes {
2096
- id?: number | null;
2097
- name?: string | null;
2098
- begin_at?: Date | null;
2099
- end_at?: Date | null;
2100
- limit?: number | null;
2101
- offset?: number | null;
2102
- sorts?: string | null;
2103
- fields?: string | null;
2104
- filter_or?: boolean | null;
2105
- }
2106
- export interface IRequestSearchUserLoginLockouts {
2107
- fields?: string | null;
2108
- page?: number | null;
2109
- per_page?: number | null;
2110
- sorts?: string | null;
2111
- auth_type?: string | null;
2112
- full_name?: string | null;
2113
- email?: string | null;
2114
- remote_id?: string | null;
2115
- filter_or?: boolean | null;
2116
- }
2117
- export interface IRequestSearchUsers {
2118
- fields?: string | null;
2119
- page?: number | null;
2120
- per_page?: number | null;
2121
- sorts?: string | null;
2122
- id?: number | null;
2123
- first_name?: string | null;
2124
- last_name?: string | null;
2125
- verified_looker_employee?: boolean | null;
2126
- embed_user?: boolean | null;
2127
- email?: string | null;
2128
- is_disabled?: boolean | null;
2129
- filter_or?: boolean | null;
2130
- content_metadata_id?: number | null;
2131
- group_id?: number | null;
2132
- }
2133
- export interface IRequestSearchUsersNames {
2134
- pattern: string;
2135
- fields?: string | null;
2136
- page?: number | null;
2137
- per_page?: number | null;
2138
- sorts?: string | null;
2139
- id?: number | null;
2140
- first_name?: string | null;
2141
- last_name?: string | null;
2142
- verified_looker_employee?: boolean | null;
2143
- email?: string | null;
2144
- is_disabled?: boolean | null;
2145
- }
2146
- export interface IRequestSpaceChildren {
2147
- space_id: string;
2148
- fields?: string | null;
2149
- page?: number | null;
2150
- per_page?: number | null;
2151
- sorts?: string | null;
2152
- }
2153
- export interface IRequestSpaceChildrenSearch {
2154
- space_id: string;
2155
- fields?: string | null;
2156
- sorts?: string | null;
2157
- name?: string | null;
2158
- }
2159
- export interface IRequestStartPdtBuild {
2160
- model_name: string;
2161
- view_name: string;
2162
- force_rebuild?: string | null;
2163
- force_full_incremental?: string | null;
2164
- workspace?: string | null;
2165
- source?: string | null;
2166
- }
2167
- export interface IRequestTagRef {
2168
- project_id: string;
2169
- body: IWriteProject;
2170
- commit_sha?: string | null;
2171
- tag_name?: string | null;
2172
- tag_message?: string | null;
2173
- }
2174
- export interface IRequestUserAttributeUserValues {
2175
- user_id: number;
2176
- fields?: string | null;
2177
- user_attribute_ids?: DelimArray<number> | null;
2178
- all_values?: boolean | null;
2179
- include_unset?: boolean | null;
2180
- }
2181
- export interface IRequestUserRoles {
2182
- user_id: number;
2183
- fields?: string | null;
2184
- direct_association_only?: boolean | null;
2185
- }
2186
- export declare enum ResultFormat {
2187
- inline_json = "inline_json",
2188
- json = "json",
2189
- json_detail = "json_detail",
2190
- json_fe = "json_fe",
2191
- json_bi = "json_bi",
2192
- csv = "csv",
2193
- html = "html",
2194
- md = "md",
2195
- txt = "txt",
2196
- xlsx = "xlsx",
2197
- gsxml = "gsxml",
2198
- sql = "sql"
2199
- }
2200
- export interface IResultMakerFilterables {
2201
- model?: string | null;
2202
- view?: string | null;
2203
- name?: string | null;
2204
- listen?: IResultMakerFilterablesListen[] | null;
2205
- }
2206
- export interface IResultMakerFilterablesListen {
2207
- dashboard_filter_name?: string | null;
2208
- field?: string | null;
2209
- }
2210
- export interface IResultMakerWithIdVisConfigAndDynamicFields {
2211
- id?: number;
2212
- dynamic_fields?: string | null;
2213
- filterables?: IResultMakerFilterables[] | null;
2214
- sorts?: string[] | null;
2215
- merge_result_id?: string | null;
2216
- total?: boolean;
2217
- query_id?: number | null;
2218
- sql_query_id?: string | null;
2219
- query?: IQuery;
2220
- vis_config?: IDictionary<string> | null;
2221
- }
2222
- export interface IRole {
2223
- can?: IDictionary<boolean>;
2224
- id?: number;
2225
- name?: string | null;
2226
- permission_set?: IPermissionSet;
2227
- permission_set_id?: number | null;
2228
- model_set?: IModelSet;
2229
- model_set_id?: number | null;
2230
- url?: Url | null;
2231
- users_url?: Url | null;
2232
- }
2233
- export interface IRunningQueries {
2234
- can?: IDictionary<boolean>;
2235
- id?: number;
2236
- user?: IUserPublic;
2237
- query?: IQuery;
2238
- sql_query?: ISqlQuery;
2239
- look?: ILookBasic;
2240
- created_at?: string | null;
2241
- completed_at?: string | null;
2242
- query_id?: string | null;
2243
- source?: string | null;
2244
- node_id?: string | null;
2245
- slug?: string | null;
2246
- query_task_id?: string | null;
2247
- cache_key?: string | null;
2248
- connection_name?: string | null;
2249
- dialect?: string | null;
2250
- connection_id?: string | null;
2251
- message?: string | null;
2252
- status?: string | null;
2253
- runtime?: number | null;
2254
- sql?: string | null;
2255
- }
2256
- export interface ISamlConfig {
2257
- can?: IDictionary<boolean>;
2258
- enabled?: boolean;
2259
- idp_cert?: string | null;
2260
- idp_url?: string | null;
2261
- idp_issuer?: string | null;
2262
- idp_audience?: string | null;
2263
- allowed_clock_drift?: number | null;
2264
- user_attribute_map_email?: string | null;
2265
- user_attribute_map_first_name?: string | null;
2266
- user_attribute_map_last_name?: string | null;
2267
- new_user_migration_types?: string | null;
2268
- alternate_email_login_allowed?: boolean;
2269
- test_slug?: string | null;
2270
- modified_at?: string | null;
2271
- modified_by?: string | null;
2272
- default_new_user_roles?: IRole[] | null;
2273
- default_new_user_groups?: IGroup[] | null;
2274
- default_new_user_role_ids?: number[] | null;
2275
- default_new_user_group_ids?: number[] | null;
2276
- set_roles_from_groups?: boolean;
2277
- groups_attribute?: string | null;
2278
- groups?: ISamlGroupRead[] | null;
2279
- groups_with_role_ids?: ISamlGroupWrite[] | null;
2280
- auth_requires_role?: boolean;
2281
- user_attributes?: ISamlUserAttributeRead[] | null;
2282
- user_attributes_with_ids?: ISamlUserAttributeWrite[] | null;
2283
- groups_finder_type?: string | null;
2284
- groups_member_value?: string | null;
2285
- bypass_login_page?: boolean;
2286
- allow_normal_group_membership?: boolean;
2287
- allow_roles_from_normal_groups?: boolean;
2288
- allow_direct_roles?: boolean;
2289
- url?: Url | null;
2290
- }
2291
- export interface ISamlGroupRead {
2292
- id?: number;
2293
- looker_group_id?: number | null;
2294
- looker_group_name?: string | null;
2295
- name?: string | null;
2296
- roles?: IRole[] | null;
2297
- url?: Url | null;
2298
- }
2299
- export interface ISamlGroupWrite {
2300
- id?: number | null;
2301
- looker_group_id?: number | null;
2302
- looker_group_name?: string | null;
2303
- name?: string | null;
2304
- role_ids?: number[] | null;
2305
- url?: Url | null;
2306
- }
2307
- export interface ISamlMetadataParseResult {
2308
- can?: IDictionary<boolean>;
2309
- idp_issuer?: string | null;
2310
- idp_url?: string | null;
2311
- idp_cert?: string | null;
2312
- }
2313
- export interface ISamlUserAttributeRead {
2314
- name?: string | null;
2315
- required?: boolean;
2316
- user_attributes?: IUserAttribute[] | null;
2317
- url?: Url | null;
2318
- }
2319
- export interface ISamlUserAttributeWrite {
2320
- name?: string | null;
2321
- required?: boolean;
2322
- user_attribute_ids?: number[] | null;
2323
- url?: Url | null;
2324
- }
2325
- export interface IScheduledPlan {
2326
- name?: string | null;
2327
- user_id?: number | null;
2328
- run_as_recipient?: boolean;
2329
- enabled?: boolean;
2330
- look_id?: number | null;
2331
- dashboard_id?: number | null;
2332
- lookml_dashboard_id?: string | null;
2333
- filters_string?: string | null;
2334
- dashboard_filters?: string | null;
2335
- require_results?: boolean;
2336
- require_no_results?: boolean;
2337
- require_change?: boolean;
2338
- send_all_results?: boolean;
2339
- crontab?: string | null;
2340
- datagroup?: string | null;
2341
- timezone?: string | null;
2342
- query_id?: string | null;
2343
- scheduled_plan_destination?: IScheduledPlanDestination[] | null;
2344
- run_once?: boolean;
2345
- include_links?: boolean;
2346
- custom_url_base?: string | null;
2347
- custom_url_params?: string | null;
2348
- custom_url_label?: string | null;
2349
- show_custom_url?: boolean;
2350
- pdf_paper_size?: string | null;
2351
- pdf_landscape?: boolean;
2352
- embed?: boolean;
2353
- color_theme?: string | null;
2354
- long_tables?: boolean;
2355
- inline_table_width?: number | null;
2356
- id?: number;
2357
- created_at?: Date | null;
2358
- updated_at?: Date | null;
2359
- title?: string | null;
2360
- user?: IUserPublic;
2361
- next_run_at?: Date | null;
2362
- last_run_at?: Date | null;
2363
- can?: IDictionary<boolean>;
2364
- }
2365
- export interface IScheduledPlanDestination {
2366
- id?: number;
2367
- scheduled_plan_id?: number | null;
2368
- format?: string | null;
2369
- apply_formatting?: boolean;
2370
- apply_vis?: boolean;
2371
- address?: string | null;
2372
- looker_recipient?: boolean;
2373
- type?: string | null;
2374
- parameters?: string | null;
2375
- secret_parameters?: string | null;
2376
- message?: string | null;
2377
- }
2378
- export interface ISession {
2379
- can?: IDictionary<boolean>;
2380
- id?: number;
2381
- ip_address?: string | null;
2382
- browser?: string | null;
2383
- operating_system?: string | null;
2384
- city?: string | null;
2385
- state?: string | null;
2386
- country?: string | null;
2387
- credentials_type?: string | null;
2388
- extended_at?: string | null;
2389
- extended_count?: number | null;
2390
- sudo_user_id?: number | null;
2391
- created_at?: string | null;
2392
- expires_at?: string | null;
2393
- url?: Url | null;
2394
- }
2395
- export interface ISessionConfig {
2396
- can?: IDictionary<boolean>;
2397
- allow_persistent_sessions?: boolean;
2398
- session_minutes?: number | null;
2399
- unlimited_sessions_per_user?: boolean;
2400
- use_inactivity_based_logout?: boolean;
2401
- track_session_location?: boolean;
2402
- }
2403
- export interface ISmtpSettings {
2404
- address?: string;
2405
- from?: string;
2406
- user_name?: string;
2407
- password?: string;
2408
- port?: number;
2409
- enable_starttls_auto?: boolean;
2410
- ssl_version?: SslVersion | null;
2411
- default_smtp?: boolean | null;
2412
- }
2413
- export interface ISnippet {
2414
- name?: string;
2415
- label?: string;
2416
- sql?: string;
2417
- can?: IDictionary<boolean>;
2418
- }
2419
- export interface ISpace {
2420
- name: string;
2421
- parent_id?: string | null;
2422
- id?: string;
2423
- content_metadata_id?: number | null;
2424
- created_at?: Date | null;
2425
- creator_id?: number | null;
2426
- child_count?: number | null;
2427
- external_id?: string | null;
2428
- is_embed?: boolean;
2429
- is_embed_shared_root?: boolean;
2430
- is_embed_users_root?: boolean;
2431
- is_personal?: boolean;
2432
- is_personal_descendant?: boolean;
2433
- is_shared_root?: boolean;
2434
- is_users_root?: boolean;
2435
- can?: IDictionary<boolean>;
2436
- dashboards?: IDashboardBase[] | null;
2437
- looks?: ILookWithDashboards[] | null;
2438
- }
2439
- export interface ISpaceBase {
2440
- name: string;
2441
- parent_id?: string | null;
2442
- id?: string;
2443
- content_metadata_id?: number | null;
2444
- created_at?: Date | null;
2445
- creator_id?: number | null;
2446
- child_count?: number | null;
2447
- external_id?: string | null;
2448
- is_embed?: boolean;
2449
- is_embed_shared_root?: boolean;
2450
- is_embed_users_root?: boolean;
2451
- is_personal?: boolean;
2452
- is_personal_descendant?: boolean;
2453
- is_shared_root?: boolean;
2454
- is_users_root?: boolean;
2455
- can?: IDictionary<boolean>;
2456
- }
2457
- export interface ISqlQuery {
2458
- can?: IDictionary<boolean>;
2459
- slug?: string;
2460
- last_runtime?: number | null;
2461
- run_count?: number;
2462
- browser_limit?: number;
2463
- sql?: string;
2464
- last_run_at?: string | null;
2465
- connection?: IDBConnectionBase;
2466
- model_name?: string | null;
2467
- creator?: IUserPublic;
2468
- explore_url?: string | null;
2469
- plaintext?: boolean;
2470
- vis_config?: IDictionary<any> | null;
2471
- result_maker_id?: number | null;
2472
- }
2473
- export interface ISqlQueryCreate {
2474
- connection_name?: string | null;
2475
- connection_id?: string | null;
2476
- model_name?: string | null;
2477
- sql?: string | null;
2478
- vis_config?: IDictionary<any> | null;
2479
- }
2480
- export declare enum SslVersion {
2481
- TLSv1_1 = "TLSv1_1",
2482
- SSLv23 = "SSLv23",
2483
- TLSv1_2 = "TLSv1_2"
2484
- }
2485
- export declare enum SupportedActionTypes {
2486
- cell = "cell",
2487
- query = "query",
2488
- dashboard = "dashboard",
2489
- none = "none"
2490
- }
2491
- export declare enum SupportedDownloadSettings {
2492
- push = "push",
2493
- url = "url"
2494
- }
2495
- export declare enum SupportedFormats {
2496
- txt = "txt",
2497
- csv = "csv",
2498
- inline_json = "inline_json",
2499
- json = "json",
2500
- json_label = "json_label",
2501
- json_detail = "json_detail",
2502
- json_detail_lite_stream = "json_detail_lite_stream",
2503
- xlsx = "xlsx",
2504
- html = "html",
2505
- wysiwyg_pdf = "wysiwyg_pdf",
2506
- assembled_pdf = "assembled_pdf",
2507
- wysiwyg_png = "wysiwyg_png",
2508
- csv_zip = "csv_zip"
2509
- }
2510
- export declare enum SupportedFormattings {
2511
- formatted = "formatted",
2512
- unformatted = "unformatted"
2513
- }
2514
- export declare enum SupportedVisualizationFormattings {
2515
- apply = "apply",
2516
- noapply = "noapply"
2517
- }
2518
- export interface ITheme {
2519
- can?: IDictionary<boolean>;
2520
- begin_at?: Date | null;
2521
- end_at?: Date | null;
2522
- id?: number;
2523
- name?: string;
2524
- settings?: IThemeSettings;
2525
- }
2526
- export interface IThemeSettings {
2527
- background_color?: string;
2528
- base_font_size?: string | null;
2529
- color_collection_id?: string;
2530
- font_color?: string | null;
2531
- font_family?: string;
2532
- font_source?: string | null;
2533
- info_button_color?: string;
2534
- primary_button_color?: string;
2535
- show_filters_bar?: boolean;
2536
- show_title?: boolean;
2537
- text_tile_text_color?: string;
2538
- tile_background_color?: string;
2539
- text_tile_background_color?: string;
2540
- tile_text_color?: string;
2541
- title_color?: string;
2542
- warn_button_color?: string;
2543
- tile_title_alignment?: string;
2544
- tile_shadow?: boolean;
2545
- show_last_updated_indicator?: boolean;
2546
- show_reload_data_icon?: boolean;
2547
- show_dashboard_menu?: boolean;
2548
- show_filters_toggle?: boolean;
2549
- show_dashboard_header?: boolean;
2550
- center_dashboard_title?: boolean;
2551
- dashboard_title_font_size?: string;
2552
- box_shadow?: string;
2553
- page_margin_top?: string;
2554
- page_margin_bottom?: string;
2555
- page_margin_sides?: string;
2556
- show_explore_header?: boolean;
2557
- show_explore_title?: boolean;
2558
- show_explore_last_run?: boolean;
2559
- show_explore_timezone?: boolean;
2560
- show_explore_run_stop_button?: boolean;
2561
- show_explore_actions_button?: boolean;
2562
- show_look_header?: boolean;
2563
- show_look_title?: boolean;
2564
- show_look_last_run?: boolean;
2565
- show_look_timezone?: boolean;
2566
- show_look_run_stop_button?: boolean;
2567
- show_look_actions_button?: boolean;
2568
- tile_title_font_size?: string;
2569
- column_gap_size?: string;
2570
- row_gap_size?: string;
2571
- border_radius?: string;
2572
- }
2573
- export interface ITimezone {
2574
- value?: string | null;
2575
- label?: string | null;
2576
- group?: string | null;
2577
- }
2578
- export interface IUpdateFolder {
2579
- name?: string;
2580
- parent_id?: string;
2581
- }
2582
- export interface IUpdateSpace {
2583
- name?: string;
2584
- parent_id?: string;
2585
- }
2586
- export interface IUser {
2587
- can?: IDictionary<boolean>;
2588
- avatar_url?: Url | null;
2589
- avatar_url_without_sizing?: Url | null;
2590
- credentials_api3?: ICredentialsApi3[] | null;
2591
- credentials_email?: ICredentialsEmail;
2592
- credentials_embed?: ICredentialsEmbed[] | null;
2593
- credentials_google?: ICredentialsGoogle;
2594
- credentials_ldap?: ICredentialsLDAP;
2595
- credentials_looker_openid?: ICredentialsLookerOpenid;
2596
- credentials_oidc?: ICredentialsOIDC;
2597
- credentials_saml?: ICredentialsSaml;
2598
- credentials_totp?: ICredentialsTotp;
2599
- display_name?: string | null;
2600
- email?: string | null;
2601
- embed_group_space_id?: number | null;
2602
- first_name?: string | null;
2603
- group_ids?: number[] | null;
2604
- home_space_id?: string | null;
2605
- home_folder_id?: string | null;
2606
- id?: number;
2607
- is_disabled?: boolean;
2608
- last_name?: string | null;
2609
- locale?: string | null;
2610
- looker_versions?: string[] | null;
2611
- models_dir_validated?: boolean | null;
2612
- personal_space_id?: number | null;
2613
- personal_folder_id?: number | null;
2614
- presumed_looker_employee?: boolean;
2615
- role_ids?: number[] | null;
2616
- sessions?: ISession[] | null;
2617
- ui_state?: IDictionary<string> | null;
2618
- verified_looker_employee?: boolean;
2619
- roles_externally_managed?: boolean;
2620
- allow_direct_roles?: boolean;
2621
- allow_normal_group_membership?: boolean;
2622
- allow_roles_from_normal_groups?: boolean;
2623
- url?: Url | null;
2624
- }
2625
- export interface IUserAttribute {
2626
- can?: IDictionary<boolean>;
2627
- id?: number;
2628
- name?: string | null;
2629
- label?: string | null;
2630
- type?: string | null;
2631
- default_value?: string | null;
2632
- is_system?: boolean;
2633
- is_permanent?: boolean;
2634
- value_is_hidden?: boolean;
2635
- user_can_view?: boolean;
2636
- user_can_edit?: boolean;
2637
- hidden_value_domain_whitelist?: string;
2638
- }
2639
- export declare enum UserAttributeFilterTypes {
2640
- advanced_filter_string = "advanced_filter_string",
2641
- advanced_filter_number = "advanced_filter_number",
2642
- advanced_filter_datetime = "advanced_filter_datetime",
2643
- string = "string",
2644
- number = "number",
2645
- datetime = "datetime",
2646
- relative_url = "relative_url",
2647
- yesno = "yesno",
2648
- zipcode = "zipcode"
2649
- }
2650
- export interface IUserAttributeGroupValue {
2651
- can?: IDictionary<boolean>;
2652
- id?: number;
2653
- group_id?: number | null;
2654
- user_attribute_id?: number | null;
2655
- value_is_hidden?: boolean;
2656
- rank?: number | null;
2657
- value?: string | null;
2658
- }
2659
- export interface IUserAttributeWithValue {
2660
- can?: IDictionary<boolean>;
2661
- name?: string | null;
2662
- label?: string | null;
2663
- rank?: number | null;
2664
- value?: string | null;
2665
- user_id?: number | null;
2666
- user_can_edit?: boolean;
2667
- value_is_hidden?: boolean;
2668
- user_attribute_id?: number | null;
2669
- source?: string | null;
2670
- hidden_value_domain_whitelist?: string;
2671
- }
2672
- export interface IUserIdOnly {
2673
- id?: number;
2674
- }
2675
- export interface IUserLoginLockout {
2676
- can?: IDictionary<boolean>;
2677
- key?: string | null;
2678
- auth_type?: string | null;
2679
- ip?: string | null;
2680
- user_id?: number | null;
2681
- remote_id?: string | null;
2682
- full_name?: string | null;
2683
- email?: string | null;
2684
- fail_count?: number | null;
2685
- lockout_at?: Date | null;
2686
- }
2687
- export interface IUserPublic {
2688
- can?: IDictionary<boolean>;
2689
- id?: number;
2690
- first_name?: string;
2691
- last_name?: string;
2692
- display_name?: string | null;
2693
- avatar_url?: Url;
2694
- url?: Url | null;
2695
- }
2696
- export interface IValidationError {
2697
- message: string | null;
2698
- errors?: IValidationErrorDetail[] | null;
2699
- documentation_url: Url | null;
2700
- }
2701
- export interface IValidationErrorDetail {
2702
- field?: string | null;
2703
- code?: string | null;
2704
- message?: string | null;
2705
- documentation_url: Url | null;
2706
- }
2707
- export declare enum WeekStartDay {
2708
- monday = "monday",
2709
- tuesday = "tuesday",
2710
- wednesday = "wednesday",
2711
- thursday = "thursday",
2712
- friday = "friday",
2713
- saturday = "saturday",
2714
- sunday = "sunday"
2715
- }
2716
- export interface IWelcomeEmailTest {
2717
- content?: string | null;
2718
- subject?: string | null;
2719
- header?: string | null;
2720
- }
2721
- export interface IWhitelabelConfiguration {
2722
- id?: number;
2723
- logo_file?: string | null;
2724
- logo_url?: string | null;
2725
- favicon_file?: string | null;
2726
- favicon_url?: string | null;
2727
- default_title?: string | null;
2728
- show_help_menu?: boolean;
2729
- show_docs?: boolean;
2730
- show_email_sub_options?: boolean;
2731
- allow_looker_mentions?: boolean;
2732
- allow_looker_links?: boolean;
2733
- custom_welcome_email_advanced?: boolean;
2734
- setup_mentions?: boolean;
2735
- alerts_logo?: boolean;
2736
- alerts_links?: boolean;
2737
- folders_mentions?: boolean;
2738
- }
2739
- export interface IWorkspace {
2740
- can?: IDictionary<boolean>;
2741
- id?: string;
2742
- projects?: IProject[] | null;
2743
- }
2744
- export interface IWriteApiSession {
2745
- workspace_id?: string | null;
2746
- }
2747
- export interface IWriteBackupConfiguration {
2748
- type?: string | null;
2749
- custom_s3_bucket?: string | null;
2750
- custom_s3_bucket_region?: string | null;
2751
- custom_s3_key?: string | null;
2752
- custom_s3_secret?: string | null;
2753
- }
2754
- export interface IWriteColorCollection {
2755
- label?: string;
2756
- categoricalPalettes?: IDiscretePalette[] | null;
2757
- sequentialPalettes?: IContinuousPalette[] | null;
2758
- divergingPalettes?: IContinuousPalette[] | null;
2759
- }
2760
- export interface IWriteContentFavorite {
2761
- user_id?: number;
2762
- content_metadata_id?: number;
2763
- dashboard?: IWriteDashboardBase | null;
2764
- }
2765
- export interface IWriteContentMeta {
2766
- inherits?: boolean;
2767
- }
2768
- export interface IWriteCreateDashboardFilter {
2769
- dashboard_id: string | null;
2770
- name: string | null;
2771
- title: string | null;
2772
- type: string | null;
2773
- default_value?: string | null;
2774
- model?: string | null;
2775
- explore?: string | null;
2776
- dimension?: string | null;
2777
- row?: number | null;
2778
- listens_to_filters?: string[] | null;
2779
- allow_multiple_values?: boolean;
2780
- required?: boolean;
2781
- ui_config?: IDictionary<any> | null;
2782
- }
2783
- export interface IWriteCreateQueryTask {
2784
- query_id: number | null;
2785
- result_format: ResultFormat | null;
2786
- source?: string | null;
2787
- deferred?: boolean;
2788
- look_id?: number | null;
2789
- dashboard_id?: string | null;
2790
- }
2791
- export interface IWriteCredentialsEmail {
2792
- email?: string | null;
2793
- forced_password_reset_at_next_login?: boolean;
2794
- }
2795
- export interface IWriteCustomWelcomeEmail {
2796
- enabled?: boolean;
2797
- content?: string | null;
2798
- subject?: string | null;
2799
- header?: string | null;
2800
- }
2801
- export interface IWriteDashboard {
2802
- description?: string | null;
2803
- hidden?: boolean;
2804
- query_timezone?: string;
2805
- refresh_interval?: string | null;
2806
- folder?: IWriteFolderBase | null;
2807
- title?: string | null;
2808
- slug?: string | null;
2809
- preferred_viewer?: string | null;
2810
- space?: IWriteSpaceBase | null;
2811
- alert_sync_with_dashboard_filter_enabled?: boolean;
2812
- background_color?: string;
2813
- crossfilter_enabled?: boolean;
2814
- deleted?: boolean;
2815
- enable_viz_full_screen?: boolean;
2816
- filters_bar_collapsed?: boolean;
2817
- filters_location_top?: boolean;
2818
- load_configuration?: string | null;
2819
- lookml_link_id?: string | null;
2820
- show_filters_bar?: boolean;
2821
- show_title?: boolean;
2822
- space_id?: string | null;
2823
- folder_id?: string | null;
2824
- text_tile_text_color?: string;
2825
- tile_background_color?: string;
2826
- tile_text_color?: string;
2827
- title_color?: string;
2828
- appearance?: IDashboardAppearance | null;
2829
- }
2830
- export interface IWriteDashboardBase {
2831
- folder?: IWriteFolderBase | null;
2832
- space?: IWriteSpaceBase | null;
2833
- }
2834
- export interface IWriteDashboardElement {
2835
- body_text?: string | null;
2836
- dashboard_id?: string | null;
2837
- look?: IWriteLookWithQuery | null;
2838
- look_id?: string | null;
2839
- merge_result_id?: string | null;
2840
- note_display?: string | null;
2841
- note_state?: string | null;
2842
- note_text?: string | null;
2843
- query?: IWriteQuery | null;
2844
- query_id?: number | null;
2845
- refresh_interval?: string | null;
2846
- result_maker?: IWriteResultMakerWithIdVisConfigAndDynamicFields | null;
2847
- result_maker_id?: number | null;
2848
- subtitle_text?: string | null;
2849
- title?: string | null;
2850
- title_hidden?: boolean;
2851
- title_text?: string | null;
2852
- type?: string | null;
2853
- rich_content_json?: string | null;
2854
- }
2855
- export interface IWriteDashboardFilter {
2856
- name?: string | null;
2857
- title?: string | null;
2858
- type?: string | null;
2859
- default_value?: string | null;
2860
- model?: string | null;
2861
- explore?: string | null;
2862
- dimension?: string | null;
2863
- row?: number | null;
2864
- listens_to_filters?: string[] | null;
2865
- allow_multiple_values?: boolean;
2866
- required?: boolean;
2867
- ui_config?: IDictionary<any> | null;
2868
- }
2869
- export interface IWriteDashboardLayout {
2870
- dashboard_id?: string | null;
2871
- type?: string | null;
2872
- active?: boolean;
2873
- column_width?: number | null;
2874
- width?: number | null;
2875
- }
2876
- export interface IWriteDashboardLayoutComponent {
2877
- dashboard_layout_id?: string | null;
2878
- dashboard_element_id?: string | null;
2879
- row?: number | null;
2880
- column?: number | null;
2881
- width?: number | null;
2882
- height?: number | null;
2883
- }
2884
- export interface IWriteDatagroup {
2885
- stale_before?: number | null;
2886
- triggered_at?: number | null;
2887
- }
2888
- export interface IWriteDBConnection {
2889
- name?: string;
2890
- host?: string | null;
2891
- port?: string | null;
2892
- username?: string | null;
2893
- password?: string | null;
2894
- certificate?: string | null;
2895
- file_type?: string | null;
2896
- database?: string | null;
2897
- db_timezone?: string | null;
2898
- query_timezone?: string | null;
2899
- schema?: string | null;
2900
- max_connections?: number | null;
2901
- max_billing_gigabytes?: string | null;
2902
- ssl?: boolean;
2903
- verify_ssl?: boolean;
2904
- tmp_db_name?: string | null;
2905
- jdbc_additional_params?: string | null;
2906
- pool_timeout?: number | null;
2907
- dialect_name?: string | null;
2908
- user_db_credentials?: boolean | null;
2909
- user_attribute_fields?: string[] | null;
2910
- maintenance_cron?: string | null;
2911
- sql_runner_precache_tables?: boolean;
2912
- sql_writing_with_info_schema?: boolean;
2913
- after_connect_statements?: string | null;
2914
- pdt_context_override?: IWriteDBConnectionOverride | null;
2915
- uses_tns?: boolean | null;
2916
- }
2917
- export interface IWriteDBConnectionOverride {
2918
- context?: string;
2919
- host?: string | null;
2920
- port?: string | null;
2921
- username?: string | null;
2922
- password?: string | null;
2923
- certificate?: string | null;
2924
- file_type?: string | null;
2925
- database?: string | null;
2926
- schema?: string | null;
2927
- jdbc_additional_params?: string | null;
2928
- after_connect_statements?: string | null;
2929
- }
2930
- export interface IWriteFolderBase {
2931
- name: string;
2932
- parent_id?: string | null;
2933
- }
2934
- export interface IWriteGitBranch {
2935
- name?: string | null;
2936
- ref?: string | null;
2937
- }
2938
- export interface IWriteGroup {
2939
- can_add_to_content_metadata?: boolean;
2940
- name?: string | null;
2941
- }
2942
- export interface IWriteHomepage {
2943
- deleted_at?: Date | null;
2944
- description?: string | null;
2945
- section_order?: number[] | null;
2946
- title?: string | null;
2947
- }
2948
- export interface IWriteHomepageItem {
2949
- custom_description?: string | null;
2950
- custom_image_data_base64?: string | null;
2951
- custom_title?: string | null;
2952
- custom_url?: string | null;
2953
- dashboard_id?: number | null;
2954
- homepage_section_id?: number | null;
2955
- look_id?: number | null;
2956
- lookml_dashboard_id?: string | null;
2957
- order?: number | null;
2958
- use_custom_description?: boolean;
2959
- use_custom_image?: boolean;
2960
- use_custom_title?: boolean;
2961
- use_custom_url?: boolean;
2962
- }
2963
- export interface IWriteHomepageSection {
2964
- deleted_at?: Date | null;
2965
- homepage_id?: number | null;
2966
- item_order?: number[] | null;
2967
- title?: string | null;
2968
- description?: string | null;
2969
- }
2970
- export interface IWriteIntegration {
2971
- enabled?: boolean;
2972
- params?: IIntegrationParam[] | null;
2973
- installed_delegate_oauth_targets?: number[] | null;
2974
- }
2975
- export interface IWriteIntegrationHub {
2976
- url?: string;
2977
- authorization_token?: string | null;
2978
- }
2979
- export interface IWriteInternalHelpResources {
2980
- enabled?: boolean;
2981
- }
2982
- export interface IWriteInternalHelpResourcesContent {
2983
- organization_name?: string | null;
2984
- markdown_content?: string | null;
2985
- }
2986
- export interface IWriteLDAPConfig {
2987
- alternate_email_login_allowed?: boolean;
2988
- auth_password?: string | null;
2989
- auth_requires_role?: boolean;
2990
- auth_username?: string | null;
2991
- connection_host?: string | null;
2992
- connection_port?: string | null;
2993
- connection_tls?: boolean;
2994
- connection_tls_no_verify?: boolean;
2995
- default_new_user_group_ids?: number[] | null;
2996
- default_new_user_role_ids?: number[] | null;
2997
- enabled?: boolean;
2998
- force_no_page?: boolean;
2999
- groups_base_dn?: string | null;
3000
- groups_finder_type?: string | null;
3001
- groups_member_attribute?: string | null;
3002
- groups_objectclasses?: string | null;
3003
- groups_user_attribute?: string | null;
3004
- groups_with_role_ids?: ILDAPGroupWrite[] | null;
3005
- merge_new_users_by_email?: boolean;
3006
- set_roles_from_groups?: boolean;
3007
- test_ldap_password?: string | null;
3008
- test_ldap_user?: string | null;
3009
- user_attribute_map_email?: string | null;
3010
- user_attribute_map_first_name?: string | null;
3011
- user_attribute_map_last_name?: string | null;
3012
- user_attribute_map_ldap_id?: string | null;
3013
- user_attributes_with_ids?: ILDAPUserAttributeWrite[] | null;
3014
- user_bind_base_dn?: string | null;
3015
- user_custom_filter?: string | null;
3016
- user_id_attribute_names?: string | null;
3017
- user_objectclass?: string | null;
3018
- allow_normal_group_membership?: boolean;
3019
- allow_roles_from_normal_groups?: boolean;
3020
- allow_direct_roles?: boolean;
3021
- }
3022
- export interface IWriteLegacyFeature {
3023
- enabled_locally?: boolean;
3024
- }
3025
- export interface IWriteLookmlModel {
3026
- allowed_db_connection_names?: string[] | null;
3027
- name?: string | null;
3028
- project_name?: string | null;
3029
- unlimited_db_connections?: boolean;
3030
- }
3031
- export interface IWriteLookWithQuery {
3032
- title?: string | null;
3033
- deleted?: boolean;
3034
- description?: string | null;
3035
- is_run_on_load?: boolean;
3036
- public?: boolean | null;
3037
- query_id?: number | null;
3038
- folder?: IWriteFolderBase | null;
3039
- folder_id?: string | null;
3040
- user_id?: number | null;
3041
- space_id?: string | null;
3042
- space?: IWriteSpaceBase | null;
3043
- query?: IWriteQuery | null;
3044
- }
3045
- export interface IWriteMergeQuery {
3046
- column_limit?: string | null;
3047
- dynamic_fields?: string | null;
3048
- pivots?: string[] | null;
3049
- sorts?: string[] | null;
3050
- source_queries?: IMergeQuerySourceQuery[] | null;
3051
- total?: boolean;
3052
- vis_config?: IDictionary<string> | null;
3053
- }
3054
- export interface IWriteModelSet {
3055
- models?: string[] | null;
3056
- name?: string | null;
3057
- }
3058
- export interface IWriteOIDCConfig {
3059
- alternate_email_login_allowed?: boolean;
3060
- audience?: string | null;
3061
- auth_requires_role?: boolean;
3062
- authorization_endpoint?: Url | null;
3063
- default_new_user_group_ids?: number[] | null;
3064
- default_new_user_role_ids?: number[] | null;
3065
- enabled?: boolean;
3066
- groups_attribute?: string | null;
3067
- groups_with_role_ids?: IOIDCGroupWrite[] | null;
3068
- identifier?: string | null;
3069
- issuer?: string | null;
3070
- new_user_migration_types?: string | null;
3071
- scopes?: string[] | null;
3072
- secret?: string | null;
3073
- set_roles_from_groups?: boolean;
3074
- token_endpoint?: string | null;
3075
- user_attribute_map_email?: string | null;
3076
- user_attribute_map_first_name?: string | null;
3077
- user_attribute_map_last_name?: string | null;
3078
- user_attributes_with_ids?: IOIDCUserAttributeWrite[] | null;
3079
- userinfo_endpoint?: Url | null;
3080
- allow_normal_group_membership?: boolean;
3081
- allow_roles_from_normal_groups?: boolean;
3082
- allow_direct_roles?: boolean;
3083
- }
3084
- export interface IWritePasswordConfig {
3085
- min_length?: number | null;
3086
- require_numeric?: boolean;
3087
- require_upperlower?: boolean;
3088
- require_special?: boolean;
3089
- }
3090
- export interface IWritePermissionSet {
3091
- name?: string | null;
3092
- permissions?: string[] | null;
3093
- }
3094
- export interface IWriteProject {
3095
- name?: string;
3096
- git_remote_url?: string | null;
3097
- git_username?: string | null;
3098
- git_password?: string | null;
3099
- git_production_branch_name?: string;
3100
- use_git_cookie_auth?: boolean;
3101
- git_username_user_attribute?: string | null;
3102
- git_password_user_attribute?: string | null;
3103
- git_service_name?: string | null;
3104
- git_application_server_http_port?: number | null;
3105
- git_application_server_http_scheme?: string | null;
3106
- deploy_secret?: string | null;
3107
- unset_deploy_secret?: boolean;
3108
- pull_request_mode?: PullRequestMode | null;
3109
- validation_required?: boolean;
3110
- git_release_mgmt_enabled?: boolean;
3111
- allow_warnings?: boolean;
3112
- }
3113
- export interface IWriteQuery {
3114
- model: string;
3115
- view: string;
3116
- fields?: string[] | null;
3117
- pivots?: string[] | null;
3118
- fill_fields?: string[] | null;
3119
- filters?: IDictionary<string> | null;
3120
- filter_expression?: string;
3121
- sorts?: string[] | null;
3122
- limit?: string;
3123
- column_limit?: string;
3124
- total?: boolean | null;
3125
- row_total?: string;
3126
- subtotals?: string[] | null;
3127
- vis_config?: IDictionary<any> | null;
3128
- filter_config?: IDictionary<any> | null;
3129
- visible_ui_sections?: string;
3130
- dynamic_fields?: string;
3131
- client_id?: string | null;
3132
- query_timezone?: string;
3133
- runtime?: number;
3134
- }
3135
- export interface IWriteRepositoryCredential {
3136
- git_username?: string | null;
3137
- git_password?: string | null;
3138
- ssh_public_key?: string | null;
3139
- }
3140
- export interface IWriteResultMakerWithIdVisConfigAndDynamicFields {
3141
- query?: IWriteQuery | null;
3142
- }
3143
- export interface IWriteRole {
3144
- name?: string | null;
3145
- permission_set?: IWritePermissionSet | null;
3146
- permission_set_id?: number | null;
3147
- model_set?: IWriteModelSet | null;
3148
- model_set_id?: number | null;
3149
- }
3150
- export interface IWriteSamlConfig {
3151
- enabled?: boolean;
3152
- idp_cert?: string | null;
3153
- idp_url?: string | null;
3154
- idp_issuer?: string | null;
3155
- idp_audience?: string | null;
3156
- allowed_clock_drift?: number | null;
3157
- user_attribute_map_email?: string | null;
3158
- user_attribute_map_first_name?: string | null;
3159
- user_attribute_map_last_name?: string | null;
3160
- new_user_migration_types?: string | null;
3161
- alternate_email_login_allowed?: boolean;
3162
- default_new_user_role_ids?: number[] | null;
3163
- default_new_user_group_ids?: number[] | null;
3164
- set_roles_from_groups?: boolean;
3165
- groups_attribute?: string | null;
3166
- groups_with_role_ids?: ISamlGroupWrite[] | null;
3167
- auth_requires_role?: boolean;
3168
- user_attributes_with_ids?: ISamlUserAttributeWrite[] | null;
3169
- groups_finder_type?: string | null;
3170
- groups_member_value?: string | null;
3171
- bypass_login_page?: boolean;
3172
- allow_normal_group_membership?: boolean;
3173
- allow_roles_from_normal_groups?: boolean;
3174
- allow_direct_roles?: boolean;
3175
- }
3176
- export interface IWriteScheduledPlan {
3177
- name?: string | null;
3178
- user_id?: number | null;
3179
- run_as_recipient?: boolean;
3180
- enabled?: boolean;
3181
- look_id?: number | null;
3182
- dashboard_id?: number | null;
3183
- lookml_dashboard_id?: string | null;
3184
- filters_string?: string | null;
3185
- dashboard_filters?: string | null;
3186
- require_results?: boolean;
3187
- require_no_results?: boolean;
3188
- require_change?: boolean;
3189
- send_all_results?: boolean;
3190
- crontab?: string | null;
3191
- datagroup?: string | null;
3192
- timezone?: string | null;
3193
- query_id?: string | null;
3194
- scheduled_plan_destination?: IScheduledPlanDestination[] | null;
3195
- run_once?: boolean;
3196
- include_links?: boolean;
3197
- custom_url_base?: string | null;
3198
- custom_url_params?: string | null;
3199
- custom_url_label?: string | null;
3200
- show_custom_url?: boolean;
3201
- pdf_paper_size?: string | null;
3202
- pdf_landscape?: boolean;
3203
- embed?: boolean;
3204
- color_theme?: string | null;
3205
- long_tables?: boolean;
3206
- inline_table_width?: number | null;
3207
- }
3208
- export interface IWriteSessionConfig {
3209
- allow_persistent_sessions?: boolean;
3210
- session_minutes?: number | null;
3211
- unlimited_sessions_per_user?: boolean;
3212
- use_inactivity_based_logout?: boolean;
3213
- track_session_location?: boolean;
3214
- }
3215
- export interface IWriteSpaceBase {
3216
- name: string;
3217
- parent_id?: string | null;
3218
- }
3219
- export interface IWriteTheme {
3220
- begin_at?: Date | null;
3221
- end_at?: Date | null;
3222
- name?: string;
3223
- settings?: IThemeSettings | null;
3224
- }
3225
- export interface IWriteUser {
3226
- credentials_email?: IWriteCredentialsEmail | null;
3227
- first_name?: string | null;
3228
- home_space_id?: string | null;
3229
- home_folder_id?: string | null;
3230
- is_disabled?: boolean;
3231
- last_name?: string | null;
3232
- locale?: string | null;
3233
- models_dir_validated?: boolean | null;
3234
- ui_state?: IDictionary<string> | null;
3235
- }
3236
- export interface IWriteUserAttribute {
3237
- name?: string | null;
3238
- label?: string | null;
3239
- type?: string | null;
3240
- default_value?: string | null;
3241
- value_is_hidden?: boolean;
3242
- user_can_view?: boolean;
3243
- user_can_edit?: boolean;
3244
- hidden_value_domain_whitelist?: string;
3245
- }
3246
- export interface IWriteUserAttributeWithValue {
3247
- value?: string | null;
3248
- }
3249
- export interface IWriteWhitelabelConfiguration {
3250
- logo_file?: string | null;
3251
- favicon_file?: string | null;
3252
- default_title?: string | null;
3253
- show_help_menu?: boolean;
3254
- show_docs?: boolean;
3255
- show_email_sub_options?: boolean;
3256
- allow_looker_mentions?: boolean;
3257
- allow_looker_links?: boolean;
3258
- custom_welcome_email_advanced?: boolean;
3259
- setup_mentions?: boolean;
3260
- alerts_logo?: boolean;
3261
- alerts_links?: boolean;
3262
- folders_mentions?: boolean;
3263
- }