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