Skip to content

Commit 4b8df3c

Browse files
drstrangelookerzeckertG
authored andcommitted
feat: generate SDKs for Looker 23.10 (#1326)
Release-As: 23.10.0
1 parent 58a6a9a commit 4b8df3c

35 files changed

+1506
-212
lines changed

csharp/rtl/Constants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public struct Constants
6161

6262
public const string DefaultApiVersion = "4.0";
6363
public const string AgentPrefix = "CS-SDK";
64-
public const string LookerVersion = "23.8";
64+
public const string LookerVersion = "23.10";
6565

6666
public const string Bearer = "Bearer";
6767
public const string LookerAppiId = "x-looker-appid";

csharp/sdk/3.1/methods.cs

+7-4
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ public async Task<SdkResponse<string, Exception>> logout(
171171
/// it to disk, do not pass it to a third party, and only pass it through a secure HTTPS
172172
/// encrypted transport.
173173
///
174+
///
175+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
176+
///
174177
/// POST /embed/sso_url -> EmbedUrlResponse
175178
///
176179
/// <returns><c>EmbedUrlResponse</c> Signed SSO URL (application/json)</returns>
@@ -5449,7 +5452,7 @@ public async Task<SdkResponse<SqlQuery, Exception>> create_sql_query(
54495452
/// </returns>
54505453
///
54515454
/// <param name="slug">slug of query</param>
5452-
/// <param name="result_format">Format of result, options are: ["inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml", "json_label"]</param>
5455+
/// <param name="result_format">Format of result, options are: ["inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql", "json_label"]</param>
54535456
/// <param name="download">Defaults to false. If set to true, the HTTP response will have content-disposition and other headers set to make the HTTP response behave as a downloadable attachment instead of as inline content.</param>
54545457
public async Task<SdkResponse<TSuccess, Exception>> run_sql_query<TSuccess>(
54555458
string slug,
@@ -7891,7 +7894,7 @@ public async Task<SdkResponse<CredentialsApi3, Exception>> create_user_credentia
78917894

78927895
/// ### Embed login information for the specified user.
78937896
///
7894-
/// Calls to this endpoint may be denied by [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview).
7897+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
78957898
///
78967899
/// GET /users/{user_id}/credentials_embed/{credentials_embed_id} -> CredentialsEmbed
78977900
///
@@ -7912,7 +7915,7 @@ public async Task<SdkResponse<CredentialsEmbed, Exception>> user_credentials_emb
79127915

79137916
/// ### Embed login information for the specified user.
79147917
///
7915-
/// Calls to this endpoint may be denied by [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview).
7918+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
79167919
///
79177920
/// DELETE /users/{user_id}/credentials_embed/{credentials_embed_id} -> string
79187921
///
@@ -7930,7 +7933,7 @@ public async Task<SdkResponse<string, Exception>> delete_user_credentials_embed(
79307933

79317934
/// ### Embed login information for the specified user.
79327935
///
7933-
/// Calls to this endpoint may be denied by [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview).
7936+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
79347937
///
79357938
/// GET /users/{user_id}/credentials_embed -> CredentialsEmbed[]
79367939
///

csharp/sdk/3.1/models.cs

+42-4
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ public class CreateQueryTask : SdkModel
499499
public StringDictionary<bool>? can { get; set; } = null;
500500
/// <summary>Id of query to run</summary>
501501
public long query_id { get; set; }
502-
/// <summary>Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml".</summary>
502+
/// <summary>Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql".</summary>
503503
[JsonConverter(typeof(StringEnumConverter))]
504504
public ResultFormat result_format { get; set; }
505505
/// <summary>Source of query task</summary>
@@ -3421,7 +3421,7 @@ public class RepositoryCredential : SdkModel
34213421
public bool? is_configured { get; set; } = null;
34223422
}
34233423

3424-
/// Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml". (Enum defined in CreateQueryTask)
3424+
/// Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql". (Enum defined in CreateQueryTask)
34253425
public enum ResultFormat
34263426
{
34273427
[EnumMember(Value = "inline_json")]
@@ -3443,7 +3443,9 @@ public enum ResultFormat
34433443
[EnumMember(Value = "xlsx")]
34443444
xlsx,
34453445
[EnumMember(Value = "gsxml")]
3446-
gsxml
3446+
gsxml,
3447+
[EnumMember(Value = "sql")]
3448+
sql
34473449
}
34483450

34493451
public class ResultMakerFilterables : SdkModel
@@ -4148,6 +4150,42 @@ public class ThemeSettings : SdkModel
41484150
public string? dashboard_title_font_size { get; set; } = null;
41494151
/// <summary>Default box shadow.</summary>
41504152
public string? box_shadow { get; set; } = null;
4153+
/// <summary>Dashboard page margin top.</summary>
4154+
public string? page_margin_top { get; set; } = null;
4155+
/// <summary>Dashboard page margin bottom.</summary>
4156+
public string? page_margin_bottom { get; set; } = null;
4157+
/// <summary>Dashboard page margin left and right.</summary>
4158+
public string? page_margin_sides { get; set; } = null;
4159+
/// <summary>Toggle to show the explore page header. Defaults to true.</summary>
4160+
public bool? show_explore_header { get; set; } = null;
4161+
/// <summary>Toggle to show the explore page title. Defaults to true.</summary>
4162+
public bool? show_explore_title { get; set; } = null;
4163+
/// <summary>Toggle to show the explore page last run. Defaults to true.</summary>
4164+
public bool? show_explore_last_run { get; set; } = null;
4165+
/// <summary>Toggle to show the explore page timezone. Defaults to true.</summary>
4166+
public bool? show_explore_timezone { get; set; } = null;
4167+
/// <summary>Toggle to show the explore page run button. Defaults to true.</summary>
4168+
public bool? show_explore_run_stop_button { get; set; } = null;
4169+
/// <summary>Toggle to show the explore page actions button. Defaults to true.</summary>
4170+
public bool? show_explore_actions_button { get; set; } = null;
4171+
/// <summary>Toggle to show the look page header. Defaults to true.</summary>
4172+
public bool? show_look_header { get; set; } = null;
4173+
/// <summary>Toggle to show the look page title. Defaults to true.</summary>
4174+
public bool? show_look_title { get; set; } = null;
4175+
/// <summary>Toggle to show the look page last run. Defaults to true.</summary>
4176+
public bool? show_look_last_run { get; set; } = null;
4177+
/// <summary>Toggle to show the look page timezone Defaults to true.</summary>
4178+
public bool? show_look_timezone { get; set; } = null;
4179+
/// <summary>Toggle to show the look page run button. Defaults to true.</summary>
4180+
public bool? show_look_run_stop_button { get; set; } = null;
4181+
/// <summary>Toggle to show the look page actions button. Defaults to true.</summary>
4182+
public bool? show_look_actions_button { get; set; } = null;
4183+
/// <summary>Font size for tiles.</summary>
4184+
public string? tile_title_font_size { get; set; } = null;
4185+
/// <summary>The vertical gap/gutter size between tiles.</summary>
4186+
public string? column_gap_size { get; set; } = null;
4187+
/// <summary>The horizontal gap/gutter size between tiles.</summary>
4188+
public string? row_gap_size { get; set; } = null;
41514189
}
41524190

41534191
public class Timezone : SdkModel
@@ -4587,7 +4625,7 @@ public class WriteCreateQueryTask : SdkModel
45874625
{
45884626
/// <summary>Id of query to run</summary>
45894627
public long query_id { get; set; }
4590-
/// <summary>Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml".</summary>
4628+
/// <summary>Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql".</summary>
45914629
[JsonConverter(typeof(StringEnumConverter))]
45924630
public ResultFormat result_format { get; set; }
45934631
/// <summary>Source of query task</summary>

csharp/sdk/4.0/methods.cs

+31-6
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,8 @@ namespace = SdkUtils.EncodeParam(namespace);
615615
///
616616
/// The value of the `secret` field will be set by Looker and returned.
617617
///
618+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
619+
///
618620
/// POST /embed_config/secrets -> EmbedSecret
619621
///
620622
/// <returns><c>EmbedSecret</c> embed secret (application/json)</returns>
@@ -628,6 +630,8 @@ public async Task<SdkResponse<EmbedSecret, Exception>> create_embed_secret(
628630

629631
/// ### Delete an embed secret.
630632
///
633+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
634+
///
631635
/// DELETE /embed_config/secrets/{embed_secret_id} -> string
632636
///
633637
/// <returns><c>string</c> Successfully deleted. (application/json)</returns>
@@ -676,6 +680,9 @@ public async Task<SdkResponse<string, Exception>> delete_embed_secret(
676680
/// it to disk, do not pass it to a third party, and only pass it through a secure HTTPS
677681
/// encrypted transport.
678682
///
683+
///
684+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
685+
///
679686
/// POST /embed/sso_url -> EmbedUrlResponse
680687
///
681688
/// <returns><c>EmbedUrlResponse</c> Signed SSO URL (application/json)</returns>
@@ -709,10 +716,13 @@ public async Task<SdkResponse<EmbedUrlResponse, Exception>> create_sso_embed_url
709716
/// copy the URL shown in the browser address bar, insert "/embed" after the host/port, and paste it into the `target_url` property as a quoted string value in this API request.
710717
///
711718
/// #### Security Note
712-
/// Protect this embed URL as you would an access token or password credentials - do not write
719+
/// Protect this signed URL as you would an access token or password credentials - do not write
713720
/// it to disk, do not pass it to a third party, and only pass it through a secure HTTPS
714721
/// encrypted transport.
715722
///
723+
///
724+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
725+
///
716726
/// POST /embed/token_url/me -> EmbedUrlResponse
717727
///
718728
/// <returns><c>EmbedUrlResponse</c> Embed URL (application/json)</returns>
@@ -755,6 +765,8 @@ public async Task<SdkResponse<EmbedUrlResponse, Exception>> create_embed_url_as_
755765
/// - Navigation token - lives for 10 minutes. The Looker client will ask for this token once it is loaded into
756766
/// the iframe.
757767
///
768+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
769+
///
758770
/// POST /embed/cookieless_session/acquire -> EmbedCookielessSessionAcquireResponse
759771
///
760772
/// <returns><c>EmbedCookielessSessionAcquireResponse</c> Embed cookieless acquire session response (application/json)</returns>
@@ -772,6 +784,8 @@ public async Task<SdkResponse<EmbedCookielessSessionAcquireResponse, Exception>>
772784
/// in the session and session reference data being cleared from the system. This endpoint can be used to log an embed
773785
/// user out of the Looker instance.
774786
///
787+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
788+
///
775789
/// DELETE /embed/cookieless_session/{session_reference_token} -> string
776790
///
777791
/// <returns><c>string</c> Successfully deleted. (application/json)</returns>
@@ -793,6 +807,8 @@ public async Task<SdkResponse<string, Exception>> delete_embed_cookieless_sessio
793807
/// The generate tokens endpoint should be called every time the Looker client asks for a token (except for the
794808
/// first time when the tokens returned by the acquire_session endpoint should be used).
795809
///
810+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
811+
///
796812
/// PUT /embed/cookieless_session/generate_tokens -> EmbedCookielessSessionGenerateTokensResponse
797813
///
798814
/// <returns><c>EmbedCookielessSessionGenerateTokensResponse</c> Generated api and navigations tokens for the cookieless embed session. (application/json)</returns>
@@ -2464,6 +2480,7 @@ public async Task<SdkResponse<MobileSettings, Exception>> mobile_settings(
24642480
/// - host_url
24652481
/// - email_domain_allowlist
24662482
/// - embed_cookieless_v2
2483+
/// - embed_enabled
24672484
///
24682485
/// GET /setting -> Setting
24692486
///
@@ -2494,9 +2511,12 @@ public async Task<SdkResponse<Setting, Exception>> get_setting(
24942511
/// - host_url
24952512
/// - email_domain_allowlist
24962513
/// - embed_cookieless_v2
2514+
/// - embed_enabled
24972515
///
24982516
/// See the `Setting` type for more information on the specific values that can be configured.
24992517
///
2518+
/// If a setting update is rejected, the API error payload should provide information on the cause of the rejection.
2519+
///
25002520
/// PATCH /setting -> Setting
25012521
///
25022522
/// <returns><c>Setting</c> Looker Settings (application/json)</returns>
@@ -3558,6 +3578,7 @@ public async Task<SdkResponse<Dashboard, Exception>> create_dashboard(
35583578
/// <param name="offset">Number of results to skip before returning any. (used with limit and takes priority over page and per_page)</param>
35593579
/// <param name="sorts">One or more fields to sort by. Sortable fields: [:title, :user_id, :id, :created_at, :space_id, :folder_id, :description, :view_count, :favorite_count, :slug, :content_favorite_id, :content_metadata_id, :deleted, :deleted_at, :last_viewed_at, :last_accessed_at]</param>
35603580
/// <param name="filter_or">Combine given search criteria in a boolean OR expression</param>
3581+
/// <param name="not_owned_by">Filter out the dashboards owned by the user passed at the :user_id params</param>
35613582
public async Task<SdkResponse<Dashboard[], Exception>> search_dashboards(
35623583
string? id = null,
35633584
string? slug = null,
@@ -3578,6 +3599,7 @@ public async Task<SdkResponse<Dashboard[], Exception>> search_dashboards(
35783599
long? offset = null,
35793600
string? sorts = null,
35803601
bool? filter_or = null,
3602+
bool? not_owned_by = null,
35813603
ITransportSettings? options = null)
35823604
{
35833605
return await AuthRequest<Dashboard[], Exception>(HttpMethod.Get, "/dashboards/search", new Values {
@@ -3599,7 +3621,8 @@ public async Task<SdkResponse<Dashboard[], Exception>> search_dashboards(
35993621
{ "limit", limit },
36003622
{ "offset", offset },
36013623
{ "sorts", sorts },
3602-
{ "filter_or", filter_or }},null,options);
3624+
{ "filter_or", filter_or },
3625+
{ "not_owned_by", not_owned_by }},null,options);
36033626
}
36043627

36053628
/// ### Import a LookML dashboard to a space as a UDD
@@ -7416,7 +7439,7 @@ public async Task<SdkResponse<SqlQuery, Exception>> create_sql_query(
74167439
/// </returns>
74177440
///
74187441
/// <param name="slug">slug of query</param>
7419-
/// <param name="result_format">Format of result, options are: ["inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml", "json_label"]</param>
7442+
/// <param name="result_format">Format of result, options are: ["inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql", "json_label"]</param>
74207443
/// <param name="download">Defaults to false. If set to true, the HTTP response will have content-disposition and other headers set to make the HTTP response behave as a downloadable attachment instead of as inline content.</param>
74217444
public async Task<SdkResponse<TSuccess, Exception>> run_sql_query<TSuccess>(
74227445
string slug,
@@ -9734,7 +9757,7 @@ public async Task<SdkResponse<CreateCredentialsApi3, Exception>> create_user_cre
97349757

97359758
/// ### Embed login information for the specified user.
97369759
///
9737-
/// Calls to this endpoint may be denied by [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview).
9760+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
97389761
///
97399762
/// GET /users/{user_id}/credentials_embed/{credentials_embed_id} -> CredentialsEmbed
97409763
///
@@ -9757,7 +9780,7 @@ public async Task<SdkResponse<CredentialsEmbed, Exception>> user_credentials_emb
97579780

97589781
/// ### Embed login information for the specified user.
97599782
///
9760-
/// Calls to this endpoint may be denied by [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview).
9783+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
97619784
///
97629785
/// DELETE /users/{user_id}/credentials_embed/{credentials_embed_id} -> string
97639786
///
@@ -9777,7 +9800,7 @@ public async Task<SdkResponse<string, Exception>> delete_user_credentials_embed(
97779800

97789801
/// ### Embed login information for the specified user.
97799802
///
9780-
/// Calls to this endpoint may be denied by [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview).
9803+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
97819804
///
97829805
/// GET /users/{user_id}/credentials_embed -> CredentialsEmbed[]
97839806
///
@@ -10106,6 +10129,8 @@ public async Task<SdkResponse<User, Exception>> wipeout_user_emails(
1010610129

1010710130
/// Create an embed user from an external user ID
1010810131
///
10132+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
10133+
///
1010910134
/// POST /users/embed_user -> UserPublic
1011010135
///
1011110136
/// <returns><c>UserPublic</c> Created embed user (application/json)</returns>

0 commit comments

Comments
 (0)