@looker/sdk 25.20.0 → 26.0.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.
@@ -340,6 +340,8 @@ export interface IContentSearch {
340
340
  view_count?: number | null;
341
341
  preferred_viewer?: string | null;
342
342
  model?: string | null;
343
+ created_by_id?: number | null;
344
+ certification_status?: string | null;
343
345
  }
344
346
  export interface IContentSummary {
345
347
  can?: IDictionary<boolean>;
@@ -762,6 +764,7 @@ export interface IDashboard {
762
764
  view_count?: number | null;
763
765
  appearance?: IDashboardAppearance;
764
766
  url?: string | null;
767
+ layout_granularity?: string | null;
765
768
  }
766
769
  export interface IDashboardAggregateTableLookml {
767
770
  dashboard_id?: string | null;
@@ -875,6 +878,10 @@ export interface IDashboardLayoutComponent {
875
878
  element_title?: string | null;
876
879
  element_title_hidden?: boolean;
877
880
  vis_type?: string | null;
881
+ granular_row?: number | null;
882
+ granular_column?: number | null;
883
+ granular_width?: number | null;
884
+ granular_height?: number | null;
878
885
  }
879
886
  export interface IDashboardLookml {
880
887
  dashboard_id?: string | null;
@@ -939,6 +946,7 @@ export interface IDBConnection {
939
946
  port?: string | null;
940
947
  username?: string | null;
941
948
  password?: string | null;
949
+ has_password?: boolean;
942
950
  uses_oauth?: boolean;
943
951
  uses_key_pair_auth?: boolean;
944
952
  uses_instance_oauth?: boolean;
@@ -1097,6 +1105,7 @@ export interface IDialectInfoOptions {
1097
1105
  disable_context_comment?: boolean;
1098
1106
  host?: boolean;
1099
1107
  instance_name?: boolean;
1108
+ key_pair_authentication?: boolean;
1100
1109
  max_billing_gigabytes?: boolean;
1101
1110
  oauth_credentials?: boolean;
1102
1111
  pdts_for_oauth?: boolean;
@@ -2216,6 +2225,9 @@ export interface IPasswordConfig {
2216
2225
  require_numeric?: boolean;
2217
2226
  require_upperlower?: boolean;
2218
2227
  require_special?: boolean;
2228
+ expiration_enabled?: boolean;
2229
+ expiration_duration_days?: number | null;
2230
+ policy_enabled_at?: Date | null;
2219
2231
  }
2220
2232
  export declare enum Period {
2221
2233
  year = "year",
@@ -2284,6 +2296,7 @@ export interface IProject {
2284
2296
  git_release_mgmt_enabled?: boolean;
2285
2297
  allow_warnings?: boolean;
2286
2298
  is_example?: boolean;
2299
+ has_production_counterpart?: boolean;
2287
2300
  dependency_status?: string | null;
2288
2301
  }
2289
2302
  export interface IProjectError {
@@ -2812,6 +2825,7 @@ export interface IRequestSearchContentFavorites {
2812
2825
  dashboard_id?: string | null;
2813
2826
  look_id?: string | null;
2814
2827
  board_id?: string | null;
2828
+ lookml_dashboard_id?: string | null;
2815
2829
  include_board_items?: boolean | null;
2816
2830
  limit?: number | null;
2817
2831
  offset?: number | null;
@@ -3162,6 +3176,7 @@ export interface IRole {
3162
3176
  permission_set_id?: string | null;
3163
3177
  model_set?: IModelSet;
3164
3178
  model_set_id?: string | null;
3179
+ internal?: boolean;
3165
3180
  url?: string | null;
3166
3181
  users_url?: string | null;
3167
3182
  }
@@ -3173,6 +3188,7 @@ export interface IRoleSearch {
3173
3188
  permission_set_id?: string | null;
3174
3189
  model_set?: IModelSet;
3175
3190
  model_set_id?: string | null;
3191
+ internal?: boolean;
3176
3192
  user_count?: number | null;
3177
3193
  url?: string | null;
3178
3194
  users_url?: string | null;
@@ -3234,6 +3250,8 @@ export interface ISamlConfig {
3234
3250
  can?: IDictionary<boolean>;
3235
3251
  enabled?: boolean;
3236
3252
  idp_cert?: string | null;
3253
+ idp_cert_multi?: ISamlIdpCertMulti;
3254
+ multi_certs_supported?: boolean | null;
3237
3255
  idp_url?: string | null;
3238
3256
  idp_issuer?: string | null;
3239
3257
  idp_audience?: string | null;
@@ -3281,11 +3299,15 @@ export interface ISamlGroupWrite {
3281
3299
  role_ids?: string[] | null;
3282
3300
  url?: string | null;
3283
3301
  }
3302
+ export interface ISamlIdpCertMulti {
3303
+ signing?: string[] | null;
3304
+ }
3284
3305
  export interface ISamlMetadataParseResult {
3285
3306
  can?: IDictionary<boolean>;
3286
3307
  idp_issuer?: string | null;
3287
3308
  idp_url?: string | null;
3288
3309
  idp_cert?: string | null;
3310
+ idp_cert_multi?: ISamlIdpCertMulti;
3289
3311
  }
3290
3312
  export interface ISamlUserAttributeRead {
3291
3313
  name?: string | null;
@@ -3454,6 +3476,7 @@ export interface ISetting {
3454
3476
  dashboard_auto_refresh_restriction?: boolean;
3455
3477
  dashboard_auto_refresh_minimum_interval?: string | null;
3456
3478
  managed_certificate_uri?: string[] | null;
3479
+ content_certification_documentation_link?: string | null;
3457
3480
  }
3458
3481
  export interface ISmtpNodeStatus {
3459
3482
  is_valid?: boolean;
@@ -4007,6 +4030,7 @@ export interface IWriteDashboard {
4007
4030
  tile_text_color?: string | null;
4008
4031
  title_color?: string | null;
4009
4032
  appearance?: IDashboardAppearance | null;
4033
+ layout_granularity?: string | null;
4010
4034
  }
4011
4035
  export interface IWriteDashboardBase {
4012
4036
  folder?: IWriteFolderBase | null;
@@ -4067,6 +4091,10 @@ export interface IWriteDashboardLayoutComponent {
4067
4091
  column?: number | null;
4068
4092
  width?: number | null;
4069
4093
  height?: number | null;
4094
+ granular_row?: number | null;
4095
+ granular_column?: number | null;
4096
+ granular_width?: number | null;
4097
+ granular_height?: number | null;
4070
4098
  }
4071
4099
  export interface IWriteDashboardLookml {
4072
4100
  folder_id?: string | null;
@@ -4318,6 +4346,8 @@ export interface IWritePasswordConfig {
4318
4346
  require_numeric?: boolean;
4319
4347
  require_upperlower?: boolean;
4320
4348
  require_special?: boolean;
4349
+ expiration_enabled?: boolean;
4350
+ expiration_duration_days?: number | null;
4321
4351
  }
4322
4352
  export interface IWritePermissionSet {
4323
4353
  name?: string | null;
@@ -4404,6 +4434,8 @@ export interface IWriteRole {
4404
4434
  export interface IWriteSamlConfig {
4405
4435
  enabled?: boolean;
4406
4436
  idp_cert?: string | null;
4437
+ idp_cert_multi?: ISamlIdpCertMulti | null;
4438
+ multi_certs_supported?: boolean | null;
4407
4439
  idp_url?: string | null;
4408
4440
  idp_issuer?: string | null;
4409
4441
  idp_audience?: string | null;
@@ -4491,6 +4523,7 @@ export interface IWriteSetting {
4491
4523
  dashboard_auto_refresh_restriction?: boolean;
4492
4524
  dashboard_auto_refresh_minimum_interval?: string | null;
4493
4525
  managed_certificate_uri?: string[] | null;
4526
+ content_certification_documentation_link?: string | null;
4494
4527
  }
4495
4528
  export interface IWriteSqlInterfaceQueryCreate {
4496
4529
  sql: string | null;