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