You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: csharp/sdk/4.0/methods.cs
+6-1
Original file line number
Diff line number
Diff line change
@@ -670,8 +670,11 @@ public async Task<SdkResponse<string, Exception>> delete_embed_secret(
670
670
///
671
671
/// This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
672
672
/// 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.
673
674
///
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.
675
678
///
676
679
/// The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
677
680
/// 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(
2498
2501
/// - data_connector_default_enabled
2499
2502
/// - extension_framework_enabled
2500
2503
/// - extension_load_url_enabled
2504
+
/// - instance_config
2501
2505
/// - marketplace_auto_install_enabled
2502
2506
/// - marketplace_automation
2503
2507
/// - marketplace_terms_accepted
@@ -2533,6 +2537,7 @@ public async Task<SdkResponse<Setting, Exception>> get_setting(
/// <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
// This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
545
545
// 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.
546
547
//
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.
548
551
//
549
552
// The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
550
553
// 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,
// NOTE: Do not edit this file generated by Looker SDK Codegen for API v4
@@ -1396,6 +1396,11 @@ type ImportedProject struct {
1396
1396
IsRemote*bool`json:"is_remote,omitempty"`// Flag signifying if a dependency is remote or local
1397
1397
}
1398
1398
1399
+
typeInstanceConfigstruct {
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
+
1399
1404
typeIntegrationstruct {
1400
1405
Can*map[string]bool`json:"can,omitempty"`// Operations the current user is able to perform on this object
1401
1406
Id*string`json:"id,omitempty"`// ID of the integration.
@@ -1497,10 +1502,10 @@ type JsonBiField struct {
1497
1502
}
1498
1503
1499
1504
typeJsonBiFieldsstruct {
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
ExtensionFrameworkEnabled*bool`json:"extension_framework_enabled,omitempty"`// Toggle extension framework on or off
3477
3483
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.
3478
3484
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 {
ExtensionFrameworkEnabled*bool`json:"extension_framework_enabled,omitempty"`// Toggle extension framework on or off
4627
4633
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.
Copy file name to clipboardexpand all lines: kotlin/src/main/com/looker/sdk/4.0/methods.kt
+6-1
Original file line number
Diff line number
Diff line change
@@ -686,8 +686,11 @@ class LookerSDK(authSession: AuthSession) : APIMethods(authSession) {
686
686
*
687
687
* This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
688
688
* 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.
689
690
*
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.
691
694
*
692
695
* The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
693
696
* 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) {
2494
2497
* - data_connector_default_enabled
2495
2498
* - extension_framework_enabled
2496
2499
* - extension_load_url_enabled
2500
+
* - instance_config
2497
2501
* - marketplace_auto_install_enabled
2498
2502
* - marketplace_automation
2499
2503
* - marketplace_terms_accepted
@@ -2530,6 +2534,7 @@ class LookerSDK(authSession: AuthSession) : APIMethods(authSession) {
// NOTE: Do not edit this file generated by Looker SDK Codegen for API 4.0
@@ -2610,6 +2610,15 @@ data class ImportedProject(
2610
2610
varis_remote:Boolean? = null,
2611
2611
) : Serializable
2612
2612
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 classInstanceConfig(
2618
+
varfeature_flags:Map<String, Boolean>? = null,
2619
+
varlicense_features:Map<String, Boolean>? = null,
2620
+
) : Serializable
2621
+
2613
2622
/**
2614
2623
* @property can Operations the current user is able to perform on this object (read-only)
2615
2624
* @property id ID of the integration. (read-only)
@@ -2803,13 +2812,13 @@ data class JsonBiField(
2803
2812
* @property dimensions Dimensions represent a column in a table, or a computed value based on some sort of column manipulation or combination (read-only)
2804
2813
* @property measures Measures are similar to aggregate functions in SQL (for example, COUNT, SUM, AVG) and represent information about multiple rows (read-only)
2805
2814
* @property pivots Pivots (read-only)
2806
-
* @property table_calculations Table Calculations (beta: May not be included) (read-only)
* @property extension_framework_enabled Toggle extension framework on or off
5154
5164
* @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.
5155
5165
* @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(
5173
5183
* @property login_notification_text Login notification text (read-only)
* @property extension_framework_enabled Toggle extension framework on or off
7259
7270
* @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.
Copy file name to clipboardexpand all lines: kotlin/src/main/com/looker/sdk/4.0/streams.kt
+6-1
Original file line number
Diff line number
Diff line change
@@ -684,8 +684,11 @@ class LookerSDKStream(authSession: AuthSession) : APIMethods(authSession) {
684
684
*
685
685
* This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
686
686
* 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.
687
688
*
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.
689
692
*
690
693
* The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
691
694
* 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) {
2492
2495
* - data_connector_default_enabled
2493
2496
* - extension_framework_enabled
2494
2497
* - extension_load_url_enabled
2498
+
* - instance_config
2495
2499
* - marketplace_auto_install_enabled
2496
2500
* - marketplace_automation
2497
2501
* - marketplace_terms_accepted
@@ -2528,6 +2532,7 @@ class LookerSDKStream(authSession: AuthSession) : APIMethods(authSession) {
* This function does not strictly require all group_ids, user attribute names, or model names to exist at the moment the
1115
1115
* 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.
1116
1117
*
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.
1118
1121
*
1119
1122
* The `secret_id` parameter is optional. If specified, its value must be the id of an active secret defined in the Looker instance.
1120
1123
* 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,
0 commit comments