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
/// <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>
@@ -676,6 +680,9 @@ public async Task<SdkResponse<string, Exception>> delete_embed_secret(
676
680
/// it to disk, do not pass it to a third party, and only pass it through a secure HTTPS
677
681
/// encrypted transport.
678
682
///
683
+
///
684
+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
685
+
///
679
686
/// POST /embed/sso_url -> EmbedUrlResponse
680
687
///
681
688
/// <returns><c>EmbedUrlResponse</c> Signed SSO URL (application/json)</returns>
@@ -709,10 +716,13 @@ public async Task<SdkResponse<EmbedUrlResponse, Exception>> create_sso_embed_url
709
716
/// 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.
710
717
///
711
718
/// #### 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
713
720
/// it to disk, do not pass it to a third party, and only pass it through a secure HTTPS
714
721
/// encrypted transport.
715
722
///
723
+
///
724
+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
@@ -793,6 +807,8 @@ public async Task<SdkResponse<string, Exception>> delete_embed_cookieless_sessio
793
807
/// The generate tokens endpoint should be called every time the Looker client asks for a token (except for the
794
808
/// first time when the tokens returned by the acquire_session endpoint should be used).
795
809
///
810
+
/// Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled
811
+
///
796
812
/// PUT /embed/cookieless_session/generate_tokens -> EmbedCookielessSessionGenerateTokensResponse
797
813
///
798
814
/// <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(
2464
2480
/// - host_url
2465
2481
/// - email_domain_allowlist
2466
2482
/// - embed_cookieless_v2
2483
+
/// - embed_enabled
2467
2484
///
2468
2485
/// GET /setting -> Setting
2469
2486
///
@@ -2494,9 +2511,12 @@ public async Task<SdkResponse<Setting, Exception>> get_setting(
2494
2511
/// - host_url
2495
2512
/// - email_domain_allowlist
2496
2513
/// - embed_cookieless_v2
2514
+
/// - embed_enabled
2497
2515
///
2498
2516
/// See the `Setting` type for more information on the specific values that can be configured.
2499
2517
///
2518
+
/// If a setting update is rejected, the API error payload should provide information on the cause of the rejection.
/// <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>
0 commit comments