@looker/sdk 25.2.0 → 25.4.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.
@@ -820,7 +820,8 @@ export interface IDBConnection {
820
820
  dialect?: IDialect;
821
821
  snippets?: ISnippet[];
822
822
  pdts_enabled?: boolean;
823
- named_driver_version?: string | null;
823
+ named_driver_version_requested?: string | null;
824
+ named_driver_version_actual?: string | null;
824
825
  host?: string | null;
825
826
  port?: string | null;
826
827
  username?: string | null;
@@ -886,16 +887,26 @@ export interface IDBConnectionBase {
886
887
  export interface IDBConnectionOverride {
887
888
  context?: string;
888
889
  host?: string | null;
890
+ pdt_host?: string | null;
889
891
  port?: string | null;
892
+ pdt_port?: string | null;
890
893
  username?: string | null;
894
+ pdt_username?: string | null;
891
895
  password?: string | null;
896
+ pdt_password?: string | null;
892
897
  has_password?: boolean;
893
898
  certificate?: string | null;
899
+ pdt_certificate?: string | null;
894
900
  file_type?: string | null;
901
+ pdt_file_type?: string | null;
895
902
  database?: string | null;
903
+ pdt_database?: string | null;
896
904
  schema?: string | null;
905
+ pdt_schema?: string | null;
897
906
  jdbc_additional_params?: string | null;
907
+ pdt_jdbc_additional_params?: string | null;
898
908
  after_connect_statements?: string | null;
909
+ pdt_after_connect_statements?: string | null;
899
910
  }
900
911
  export interface IDBConnectionTestResult {
901
912
  can?: IDictionary<boolean>;
@@ -952,6 +963,8 @@ export interface IDialectInfo {
952
963
  label_for_database_equivalent?: string | null;
953
964
  label_for_schema_equivalent?: string | null;
954
965
  name?: string | null;
966
+ supported_driver_name?: string | null;
967
+ supported_driver_versions?: string[] | null;
955
968
  supported_options?: IDialectInfoOptions;
956
969
  }
957
970
  export interface IDialectInfoOptions {
@@ -2210,6 +2223,26 @@ export interface IRenderTask {
2210
2223
  user_id?: string | null;
2211
2224
  width?: number | null;
2212
2225
  }
2226
+ export interface IReport {
2227
+ can?: IDictionary<boolean>;
2228
+ id?: string;
2229
+ title?: string | null;
2230
+ user_id?: string | null;
2231
+ created_at?: Date | null;
2232
+ updated_at?: Date | null;
2233
+ last_viewed_at?: Date | null;
2234
+ favorite?: boolean;
2235
+ favorite_count?: number | null;
2236
+ view_count?: number | null;
2237
+ folder?: IFolderBase;
2238
+ folder_id?: string | null;
2239
+ url?: string | null;
2240
+ user_name?: string | null;
2241
+ deleted_at?: Date | null;
2242
+ last_accessed_at?: Date | null;
2243
+ deleter_user_id?: string | null;
2244
+ deleter_user_name?: string | null;
2245
+ }
2213
2246
  export interface IRepositoryCredential {
2214
2247
  can?: IDictionary<boolean>;
2215
2248
  id?: string;
@@ -2302,6 +2335,7 @@ export interface IRequestArtifact {
2302
2335
  fields?: string | null;
2303
2336
  limit?: number | null;
2304
2337
  offset?: number | null;
2338
+ tally?: boolean | null;
2305
2339
  }
2306
2340
  export interface IRequestArtifactNamespaces {
2307
2341
  fields?: string | null;
@@ -2550,6 +2584,7 @@ export interface IRequestSearchArtifacts {
2550
2584
  max_size?: number | null;
2551
2585
  limit?: number | null;
2552
2586
  offset?: number | null;
2587
+ tally?: boolean | null;
2553
2588
  }
2554
2589
  export interface IRequestSearchBoards {
2555
2590
  title?: string | null;
@@ -2738,6 +2773,17 @@ export interface IRequestSearchPermissionSets {
2738
2773
  built_in?: boolean | null;
2739
2774
  filter_or?: boolean | null;
2740
2775
  }
2776
+ export interface IRequestSearchReports {
2777
+ folder_id?: string | null;
2778
+ favorite?: boolean | null;
2779
+ recent?: boolean | null;
2780
+ id?: string | null;
2781
+ title?: string | null;
2782
+ sorts?: string | null;
2783
+ limit?: number | null;
2784
+ fields?: string | null;
2785
+ next_page_token?: string | null;
2786
+ }
2741
2787
  export interface IRequestSearchRoles {
2742
2788
  fields?: string | null;
2743
2789
  limit?: number | null;
@@ -3156,7 +3202,7 @@ export interface ISetting {
3156
3202
  login_notification_text?: string | null;
3157
3203
  dashboard_auto_refresh_restriction?: boolean;
3158
3204
  dashboard_auto_refresh_minimum_interval?: string | null;
3159
- managed_certificate_uri?: string | null;
3205
+ managed_certificate_uri?: string[] | null;
3160
3206
  }
3161
3207
  export interface ISmtpNodeStatus {
3162
3208
  is_valid?: boolean;
@@ -3409,6 +3455,7 @@ export interface IUser {
3409
3455
  allow_normal_group_membership?: boolean;
3410
3456
  allow_roles_from_normal_groups?: boolean;
3411
3457
  embed_group_folder_id?: string | null;
3458
+ is_iam_admin?: boolean;
3412
3459
  url?: string | null;
3413
3460
  }
3414
3461
  export interface IUserAttribute {
@@ -3725,7 +3772,7 @@ export interface IWriteDatagroup {
3725
3772
  }
3726
3773
  export interface IWriteDBConnection {
3727
3774
  name?: string;
3728
- named_driver_version?: string | null;
3775
+ named_driver_version_requested?: string | null;
3729
3776
  host?: string | null;
3730
3777
  port?: string | null;
3731
3778
  username?: string | null;
@@ -3773,15 +3820,25 @@ export interface IWriteDBConnection {
3773
3820
  export interface IWriteDBConnectionOverride {
3774
3821
  context?: string;
3775
3822
  host?: string | null;
3823
+ pdt_host?: string | null;
3776
3824
  port?: string | null;
3825
+ pdt_port?: string | null;
3777
3826
  username?: string | null;
3827
+ pdt_username?: string | null;
3778
3828
  password?: string | null;
3829
+ pdt_password?: string | null;
3779
3830
  certificate?: string | null;
3831
+ pdt_certificate?: string | null;
3780
3832
  file_type?: string | null;
3833
+ pdt_file_type?: string | null;
3781
3834
  database?: string | null;
3835
+ pdt_database?: string | null;
3782
3836
  schema?: string | null;
3837
+ pdt_schema?: string | null;
3783
3838
  jdbc_additional_params?: string | null;
3839
+ pdt_jdbc_additional_params?: string | null;
3784
3840
  after_connect_statements?: string | null;
3841
+ pdt_after_connect_statements?: string | null;
3785
3842
  }
3786
3843
  export interface IWriteEmbedConfig {
3787
3844
  domain_allowlist?: string[] | null;
@@ -4112,7 +4169,7 @@ export interface IWriteSetting {
4112
4169
  embed_config?: IWriteEmbedConfig | null;
4113
4170
  dashboard_auto_refresh_restriction?: boolean;
4114
4171
  dashboard_auto_refresh_minimum_interval?: string | null;
4115
- managed_certificate_uri?: string | null;
4172
+ managed_certificate_uri?: string[] | null;
4116
4173
  }
4117
4174
  export interface IWriteSqlInterfaceQueryCreate {
4118
4175
  sql: string | null;