Skip to content

Commit 2b4d8cc

Browse files
drstrangelookerJCPistell
authored andcommitted
feat: generate SDKs for Looker 24.12 (#1483)
Release-As: 24.12.0
1 parent fd298bc commit 2b4d8cc

25 files changed

+258
-61
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 = "24.10";
64+
public const string LookerVersion = "24.12";
6565

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

csharp/sdk/4.0/methods.cs

+6-1
Original file line numberDiff line numberDiff line change
@@ -670,8 +670,11 @@ public async Task<SdkResponse<string, Exception>> delete_embed_secret(
670670
///
671671
/// This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
672672
/// embed url is created. Unknown group_id, user attribute names or model names will be passed through to the output URL.
673+
/// Because of this, **these parameters are not validated** when the API call is made.
673674
///
674-
/// To diagnose potential problems with an SSO embed URL, you can copy the signed URL into the Embed URI Validator text box in `<your looker instance>/admin/embed`.
675+
/// The [Get Embed Url](https://cloud.google.com/looker/docs/r/get-signed-url) dialog can be used to determine and validate the correct permissions for signing an embed url.
676+
/// This dialog also provides the SDK syntax for the API call to make. Alternatively, you can copy the signed URL into the Embed URI Validator text box
677+
/// in `<your looker instance>/admin/embed` to diagnose potential problems.
675678
///
676679
/// The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
677680
/// if not specified, the URL will be signed using the most recent active signing secret. If there is no active secret for signing embed urls,
@@ -2498,6 +2501,7 @@ public async Task<SdkResponse<MobileSettings, Exception>> mobile_settings(
24982501
/// - data_connector_default_enabled
24992502
/// - extension_framework_enabled
25002503
/// - extension_load_url_enabled
2504+
/// - instance_config
25012505
/// - marketplace_auto_install_enabled
25022506
/// - marketplace_automation
25032507
/// - marketplace_terms_accepted
@@ -2533,6 +2537,7 @@ public async Task<SdkResponse<Setting, Exception>> get_setting(
25332537
/// - data_connector_default_enabled
25342538
/// - extension_framework_enabled
25352539
/// - extension_load_url_enabled
2540+
/// - instance_config
25362541
/// - marketplace_auto_install_enabled
25372542
/// - marketplace_automation
25382543
/// - marketplace_terms_accepted

csharp/sdk/4.0/models.cs

+13-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// SOFTWARE.
2222
///
2323

24-
/// 341 API models: 258 Spec, 0 Request, 61 Write, 22 Enum
24+
/// 342 API models: 259 Spec, 0 Request, 61 Write, 22 Enum
2525

2626
#nullable enable
2727
using System;
@@ -2479,6 +2479,14 @@ public class ImportedProject : SdkModel
24792479
public bool? is_remote { get; set; } = null;
24802480
}
24812481

2482+
public class InstanceConfig : SdkModel
2483+
{
2484+
/// <summary>Feature flags enabled on the instance (read-only)</summary>
2485+
public StringDictionary<bool>? feature_flags { get; set; } = null;
2486+
/// <summary>License features enabled on the instance (read-only)</summary>
2487+
public StringDictionary<bool>? license_features { get; set; } = null;
2488+
}
2489+
24822490
public class Integration : SdkModel
24832491
{
24842492
/// <summary>Operations the current user is able to perform on this object (read-only)</summary>
@@ -2665,8 +2673,8 @@ public class JsonBiFields : SdkModel
26652673
public JsonBiField[] measures { get; set; } = null;
26662674
/// <summary>Pivots (read-only)</summary>
26672675
public JsonBiField[] pivots { get; set; } = null;
2668-
/// <summary>Table Calculations (beta: May not be included) (read-only)</summary>
2669-
public JsonBiTableCalc[]? table_calculations { get; set; } = null;
2676+
/// <summary>Table Calculations (read-only)</summary>
2677+
public JsonBiTableCalc[] table_calculations { get; set; } = null;
26702678
}
26712679

26722680
public class JsonBiMetadata : SdkModel
@@ -4915,6 +4923,7 @@ public class SessionConfig : SdkModel
49154923

49164924
public class Setting : SdkModel
49174925
{
4926+
public InstanceConfig? instance_config { get; set; }
49184927
/// <summary>Toggle extension framework on or off</summary>
49194928
public bool? extension_framework_enabled { get; set; } = null;
49204929
/// <summary>(DEPRECATED) Toggle extension load url on or off. Do not use. This is temporary setting that will eventually become a noop and subsequently deleted.</summary>
@@ -6926,7 +6935,7 @@ public class WriteSessionConfig : SdkModel
69266935
}
69276936

69286937
/// Dynamic writeable type for Setting removes:
6929-
/// marketplace_site, embed_enabled, login_notification_enabled, login_notification_text
6938+
/// instance_config, marketplace_site, embed_enabled, login_notification_enabled, login_notification_text
69306939
public class WriteSetting : SdkModel
69316940
{
69326941
/// <summary>Toggle extension framework on or off</summary>

go/sdk/v4/methods.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -543,8 +543,11 @@ func (l *LookerSDK) DeleteEmbedSecret(
543543
//
544544
// This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
545545
// embed url is created. Unknown group_id, user attribute names or model names will be passed through to the output URL.
546+
// Because of this, **these parameters are not validated** when the API call is made.
546547
//
547-
// To diagnose potential problems with an SSO embed URL, you can copy the signed URL into the Embed URI Validator text box in `<your looker instance>/admin/embed`.
548+
// The [Get Embed Url](https://cloud.google.com/looker/docs/r/get-signed-url) dialog can be used to determine and validate the correct permissions for signing an embed url.
549+
// This dialog also provides the SDK syntax for the API call to make. Alternatively, you can copy the signed URL into the Embed URI Validator text box
550+
// in `<your looker instance>/admin/embed` to diagnose potential problems.
548551
//
549552
// The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
550553
// if not specified, the URL will be signed using the most recent active signing secret. If there is no active secret for signing embed urls,
@@ -2107,6 +2110,7 @@ func (l *LookerSDK) MobileSettings(
21072110
// - data_connector_default_enabled
21082111
// - extension_framework_enabled
21092112
// - extension_load_url_enabled
2113+
// - instance_config
21102114
// - marketplace_auto_install_enabled
21112115
// - marketplace_automation
21122116
// - marketplace_terms_accepted
@@ -2139,6 +2143,7 @@ func (l *LookerSDK) GetSetting(
21392143
// - data_connector_default_enabled
21402144
// - extension_framework_enabled
21412145
// - extension_load_url_enabled
2146+
// - instance_config
21422147
// - marketplace_auto_install_enabled
21432148
// - marketplace_automation
21442149
// - marketplace_terms_accepted

go/sdk/v4/models.go

+12-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ SOFTWARE.
2626

2727
/*
2828
29-
407 API models: 258 Spec, 67 Request, 60 Write, 22 Enum
29+
408 API models: 259 Spec, 67 Request, 60 Write, 22 Enum
3030
*/
3131

3232
// NOTE: Do not edit this file generated by Looker SDK Codegen for API v4
@@ -1396,6 +1396,11 @@ type ImportedProject struct {
13961396
IsRemote *bool `json:"is_remote,omitempty"` // Flag signifying if a dependency is remote or local
13971397
}
13981398

1399+
type InstanceConfig struct {
1400+
FeatureFlags *map[string]bool `json:"feature_flags,omitempty"` // Feature flags enabled on the instance
1401+
LicenseFeatures *map[string]bool `json:"license_features,omitempty"` // License features enabled on the instance
1402+
}
1403+
13991404
type Integration struct {
14001405
Can *map[string]bool `json:"can,omitempty"` // Operations the current user is able to perform on this object
14011406
Id *string `json:"id,omitempty"` // ID of the integration.
@@ -1497,10 +1502,10 @@ type JsonBiField struct {
14971502
}
14981503

14991504
type JsonBiFields struct {
1500-
Dimensions []JsonBiField `json:"dimensions"` // Dimensions represent a column in a table, or a computed value based on some sort of column manipulation or combination
1501-
Measures []JsonBiField `json:"measures"` // Measures are similar to aggregate functions in SQL (for example, COUNT, SUM, AVG) and represent information about multiple rows
1502-
Pivots []JsonBiField `json:"pivots"` // Pivots
1503-
TableCalculations *[]JsonBiTableCalc `json:"table_calculations,omitempty"` // Table Calculations (beta: May not be included)
1505+
Dimensions []JsonBiField `json:"dimensions"` // Dimensions represent a column in a table, or a computed value based on some sort of column manipulation or combination
1506+
Measures []JsonBiField `json:"measures"` // Measures are similar to aggregate functions in SQL (for example, COUNT, SUM, AVG) and represent information about multiple rows
1507+
Pivots []JsonBiField `json:"pivots"` // Pivots
1508+
TableCalculations []JsonBiTableCalc `json:"table_calculations"` // Table Calculations
15041509
}
15051510

15061511
type JsonBiMetadata struct {
@@ -3473,6 +3478,7 @@ type SessionConfig struct {
34733478
}
34743479

34753480
type Setting struct {
3481+
InstanceConfig *InstanceConfig `json:"instance_config,omitempty"`
34763482
ExtensionFrameworkEnabled *bool `json:"extension_framework_enabled,omitempty"` // Toggle extension framework on or off
34773483
ExtensionLoadUrlEnabled *bool `json:"extension_load_url_enabled,omitempty"` // (DEPRECATED) Toggle extension load url on or off. Do not use. This is temporary setting that will eventually become a noop and subsequently deleted.
34783484
MarketplaceAutoInstallEnabled *bool `json:"marketplace_auto_install_enabled,omitempty"` // (DEPRECATED) Toggle marketplace auto install on or off. Deprecated - do not use. Auto install can now be enabled via marketplace automation settings
@@ -4621,7 +4627,7 @@ type WriteSessionConfig struct {
46214627
}
46224628

46234629
// Dynamic writeable type for Setting removes:
4624-
// marketplace_site, embed_enabled, login_notification_enabled, login_notification_text
4630+
// instance_config, marketplace_site, embed_enabled, login_notification_enabled, login_notification_text
46254631
type WriteSetting struct {
46264632
ExtensionFrameworkEnabled *bool `json:"extension_framework_enabled,omitempty"` // Toggle extension framework on or off
46274633
ExtensionLoadUrlEnabled *bool `json:"extension_load_url_enabled,omitempty"` // (DEPRECATED) Toggle extension load url on or off. Do not use. This is temporary setting that will eventually become a noop and subsequently deleted.

kotlin/src/main/com/looker/sdk/4.0/methods.kt

+6-1
Original file line numberDiff line numberDiff line change
@@ -686,8 +686,11 @@ class LookerSDK(authSession: AuthSession) : APIMethods(authSession) {
686686
*
687687
* This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
688688
* embed url is created. Unknown group_id, user attribute names or model names will be passed through to the output URL.
689+
* Because of this, **these parameters are not validated** when the API call is made.
689690
*
690-
* To diagnose potential problems with an SSO embed URL, you can copy the signed URL into the Embed URI Validator text box in `<your looker instance>/admin/embed`.
691+
* The [Get Embed Url](https://cloud.google.com/looker/docs/r/get-signed-url) dialog can be used to determine and validate the correct permissions for signing an embed url.
692+
* This dialog also provides the SDK syntax for the API call to make. Alternatively, you can copy the signed URL into the Embed URI Validator text box
693+
* in `<your looker instance>/admin/embed` to diagnose potential problems.
691694
*
692695
* The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
693696
* if not specified, the URL will be signed using the most recent active signing secret. If there is no active secret for signing embed urls,
@@ -2494,6 +2497,7 @@ class LookerSDK(authSession: AuthSession) : APIMethods(authSession) {
24942497
* - data_connector_default_enabled
24952498
* - extension_framework_enabled
24962499
* - extension_load_url_enabled
2500+
* - instance_config
24972501
* - marketplace_auto_install_enabled
24982502
* - marketplace_automation
24992503
* - marketplace_terms_accepted
@@ -2530,6 +2534,7 @@ class LookerSDK(authSession: AuthSession) : APIMethods(authSession) {
25302534
* - data_connector_default_enabled
25312535
* - extension_framework_enabled
25322536
* - extension_load_url_enabled
2537+
* - instance_config
25332538
* - marketplace_auto_install_enabled
25342539
* - marketplace_automation
25352540
* - marketplace_terms_accepted

kotlin/src/main/com/looker/sdk/4.0/models.kt

+15-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626

2727
/**
28-
* 341 API models: 258 Spec, 0 Request, 61 Write, 22 Enum
28+
* 342 API models: 259 Spec, 0 Request, 61 Write, 22 Enum
2929
*/
3030

3131
// NOTE: Do not edit this file generated by Looker SDK Codegen for API 4.0
@@ -2610,6 +2610,15 @@ data class ImportedProject(
26102610
var is_remote: Boolean? = null,
26112611
) : Serializable
26122612

2613+
/**
2614+
* @property feature_flags Feature flags enabled on the instance (read-only)
2615+
* @property license_features License features enabled on the instance (read-only)
2616+
*/
2617+
data class InstanceConfig(
2618+
var feature_flags: Map<String, Boolean>? = null,
2619+
var license_features: Map<String, Boolean>? = null,
2620+
) : Serializable
2621+
26132622
/**
26142623
* @property can Operations the current user is able to perform on this object (read-only)
26152624
* @property id ID of the integration. (read-only)
@@ -2803,13 +2812,13 @@ data class JsonBiField(
28032812
* @property dimensions Dimensions represent a column in a table, or a computed value based on some sort of column manipulation or combination (read-only)
28042813
* @property measures Measures are similar to aggregate functions in SQL (for example, COUNT, SUM, AVG) and represent information about multiple rows (read-only)
28052814
* @property pivots Pivots (read-only)
2806-
* @property table_calculations Table Calculations (beta: May not be included) (read-only)
2815+
* @property table_calculations Table Calculations (read-only)
28072816
*/
28082817
data class JsonBiFields(
28092818
var dimensions: Array<JsonBiField>,
28102819
var measures: Array<JsonBiField>,
28112820
var pivots: Array<JsonBiField>,
2812-
var table_calculations: Array<JsonBiTableCalc>? = null,
2821+
var table_calculations: Array<JsonBiTableCalc>,
28132822
) : Serializable
28142823

28152824
/**
@@ -5150,6 +5159,7 @@ data class SessionConfig(
51505159
) : Serializable
51515160

51525161
/**
5162+
* @property instance_config
51535163
* @property extension_framework_enabled Toggle extension framework on or off
51545164
* @property extension_load_url_enabled (DEPRECATED) Toggle extension load url on or off. Do not use. This is temporary setting that will eventually become a noop and subsequently deleted.
51555165
* @property marketplace_auto_install_enabled (DEPRECATED) Toggle marketplace auto install on or off. Deprecated - do not use. Auto install can now be enabled via marketplace automation settings
@@ -5173,6 +5183,7 @@ data class SessionConfig(
51735183
* @property login_notification_text Login notification text (read-only)
51745184
*/
51755185
data class Setting(
5186+
var instance_config: InstanceConfig? = null,
51765187
var extension_framework_enabled: Boolean? = null,
51775188
var extension_load_url_enabled: Boolean? = null,
51785189
var marketplace_auto_install_enabled: Boolean? = null,
@@ -7253,7 +7264,7 @@ data class WriteSessionConfig(
72537264

72547265
/**
72557266
* Dynamic writeable type for Setting removes:
7256-
* marketplace_site, embed_enabled, login_notification_enabled, login_notification_text
7267+
* instance_config, marketplace_site, embed_enabled, login_notification_enabled, login_notification_text
72577268
*
72587269
* @property extension_framework_enabled Toggle extension framework on or off
72597270
* @property extension_load_url_enabled (DEPRECATED) Toggle extension load url on or off. Do not use. This is temporary setting that will eventually become a noop and subsequently deleted.

kotlin/src/main/com/looker/sdk/4.0/streams.kt

+6-1
Original file line numberDiff line numberDiff line change
@@ -684,8 +684,11 @@ class LookerSDKStream(authSession: AuthSession) : APIMethods(authSession) {
684684
*
685685
* This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
686686
* embed url is created. Unknown group_id, user attribute names or model names will be passed through to the output URL.
687+
* Because of this, **these parameters are not validated** when the API call is made.
687688
*
688-
* To diagnose potential problems with an SSO embed URL, you can copy the signed URL into the Embed URI Validator text box in `<your looker instance>/admin/embed`.
689+
* The [Get Embed Url](https://cloud.google.com/looker/docs/r/get-signed-url) dialog can be used to determine and validate the correct permissions for signing an embed url.
690+
* This dialog also provides the SDK syntax for the API call to make. Alternatively, you can copy the signed URL into the Embed URI Validator text box
691+
* in `<your looker instance>/admin/embed` to diagnose potential problems.
689692
*
690693
* The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
691694
* if not specified, the URL will be signed using the most recent active signing secret. If there is no active secret for signing embed urls,
@@ -2492,6 +2495,7 @@ class LookerSDKStream(authSession: AuthSession) : APIMethods(authSession) {
24922495
* - data_connector_default_enabled
24932496
* - extension_framework_enabled
24942497
* - extension_load_url_enabled
2498+
* - instance_config
24952499
* - marketplace_auto_install_enabled
24962500
* - marketplace_automation
24972501
* - marketplace_terms_accepted
@@ -2528,6 +2532,7 @@ class LookerSDKStream(authSession: AuthSession) : APIMethods(authSession) {
25282532
* - data_connector_default_enabled
25292533
* - extension_framework_enabled
25302534
* - extension_load_url_enabled
2535+
* - instance_config
25312536
* - marketplace_auto_install_enabled
25322537
* - marketplace_automation
25332538
* - marketplace_terms_accepted

kotlin/src/main/com/looker/sdk/Constants.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ package com.looker.sdk
2828

2929
const val ENVIRONMENT_PREFIX = "LOOKERSDK"
3030
const val SDK_TAG = "KT-SDK"
31-
const val LOOKER_VERSION = "24.10"
31+
const val LOOKER_VERSION = "24.12"
3232
const val API_VERSION = "4.0"
3333
const val AGENT_TAG = "$SDK_TAG $LOOKER_VERSION"
3434
const val LOOKER_APPID = "x-looker-appid"

packages/sdk/src/4.0/funcs.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -1113,8 +1113,11 @@ export const delete_embed_secret = async (
11131113
*
11141114
* This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
11151115
* embed url is created. Unknown group_id, user attribute names or model names will be passed through to the output URL.
1116+
* Because of this, **these parameters are not validated** when the API call is made.
11161117
*
1117-
* To diagnose potential problems with an SSO embed URL, you can copy the signed URL into the Embed URI Validator text box in `<your looker instance>/admin/embed`.
1118+
* The [Get Embed Url](https://cloud.google.com/looker/docs/r/get-signed-url) dialog can be used to determine and validate the correct permissions for signing an embed url.
1119+
* This dialog also provides the SDK syntax for the API call to make. Alternatively, you can copy the signed URL into the Embed URI Validator text box
1120+
* in `<your looker instance>/admin/embed` to diagnose potential problems.
11181121
*
11191122
* The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
11201123
* if not specified, the URL will be signed using the most recent active signing secret. If there is no active secret for signing embed urls,
@@ -3706,6 +3709,7 @@ export const mobile_settings = async (
37063709
* - data_connector_default_enabled
37073710
* - extension_framework_enabled
37083711
* - extension_load_url_enabled
3712+
* - instance_config
37093713
* - marketplace_auto_install_enabled
37103714
* - marketplace_automation
37113715
* - marketplace_terms_accepted
@@ -3749,6 +3753,7 @@ export const get_setting = async (
37493753
* - data_connector_default_enabled
37503754
* - extension_framework_enabled
37513755
* - extension_load_url_enabled
3756+
* - instance_config
37523757
* - marketplace_auto_install_enabled
37533758
* - marketplace_automation
37543759
* - marketplace_terms_accepted

0 commit comments

Comments
 (0)