/******************************************************************************* * Copyright 2012-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * ***************************************************************************** * * AWS Tools for Windows (TM) PowerShell (TM) * */ using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Text; using Amazon.PowerShell.Common; using Amazon.Runtime; using Amazon.QuickSight; using Amazon.QuickSight.Model; namespace Amazon.PowerShell.Cmdlets.QS { /// /// Generates an embed URL that you can use to embed an Amazon QuickSight dashboard or /// visual in your website, without having to register any reader users. Before you use /// this action, make sure that you have configured the dashboards and permissions. /// /// /// /// The following rules apply to the generated URL: /// /// For more information, see Embedded /// Analytics in the Amazon QuickSight User Guide. /// /// For more information about the high-level steps for embedding and for an interactive /// demo of the ways you can customize embedding, visit the Amazon /// QuickSight Developer Portal. /// /// [Cmdlet("New", "QSEmbedUrlForAnonymousUser", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType("System.String")] [AWSCmdlet("Calls the Amazon QuickSight GenerateEmbedUrlForAnonymousUser API operation.", Operation = new[] {"GenerateEmbedUrlForAnonymousUser"}, SelectReturnType = typeof(Amazon.QuickSight.Model.GenerateEmbedUrlForAnonymousUserResponse))] [AWSCmdletOutput("System.String or Amazon.QuickSight.Model.GenerateEmbedUrlForAnonymousUserResponse", "This cmdlet returns a System.String object.", "The service call response (type Amazon.QuickSight.Model.GenerateEmbedUrlForAnonymousUserResponse) can also be referenced from properties attached to the cmdlet entry in the $AWSHistory stack." )] public partial class NewQSEmbedUrlForAnonymousUserCmdlet : AmazonQuickSightClientCmdlet, IExecutor { protected override bool IsSensitiveRequest { get; set; } = true; protected override bool IsSensitiveResponse { get; set; } = true; #region Parameter AllowedDomain /// /// /// The domains that you want to add to the allow list for access to the generated URL /// that is then embedded. This optional parameter overrides the static domains that are /// configured in the Manage QuickSight menu in the Amazon QuickSight console. Instead, /// it allows only the domains that you include in this parameter. You can list up to /// three domains or subdomains in each API call.To include all subdomains under a specific domain to the allow list, use *. /// For example, https://*.sapp.amazon.com includes all subdomains under /// https://sapp.amazon.com. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("AllowedDomains")] public System.String[] AllowedDomain { get; set; } #endregion #region Parameter AuthorizedResourceArn /// /// /// The Amazon Resource Names (ARNs) for the Amazon QuickSight resources that the user /// is authorized to access during the lifetime of the session. If you choose Dashboard /// embedding experience, pass the list of dashboard ARNs in the account that you want /// the user to be able to view. Currently, you can pass up to 25 dashboard ARNs in each /// API call. /// /// #if !MODULAR [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] #else [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true)] [System.Management.Automation.AllowEmptyCollection] [System.Management.Automation.AllowNull] #endif [Amazon.PowerShell.Common.AWSRequiredParameter] [Alias("AuthorizedResourceArns")] public System.String[] AuthorizedResourceArn { get; set; } #endregion #region Parameter AwsAccountId /// /// /// The ID for the Amazon Web Services account that contains the dashboard that you're /// embedding. /// /// #if !MODULAR [System.Management.Automation.Parameter(Position = 0, ValueFromPipelineByPropertyName = true, ValueFromPipeline = true)] #else [System.Management.Automation.Parameter(Position = 0, ValueFromPipelineByPropertyName = true, ValueFromPipeline = true, Mandatory = true)] [System.Management.Automation.AllowEmptyString] [System.Management.Automation.AllowNull] #endif [Amazon.PowerShell.Common.AWSRequiredParameter] public System.String AwsAccountId { get; set; } #endregion #region Parameter InitialDashboardVisualId_DashboardId /// /// /// The ID of the dashboard that has the visual that you want to embed. The DashboardId /// can be found in the IDs for developers section of the Embed visual /// pane of the visual's on-visual menu of the Amazon QuickSight console. You can also /// get the DashboardId with a ListDashboards API operation. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("ExperienceConfiguration_DashboardVisual_InitialDashboardVisualId_DashboardId")] public System.String InitialDashboardVisualId_DashboardId { get; set; } #endregion #region Parameter Dashboard_InitialDashboardId /// /// /// The dashboard ID for the dashboard that you want the user to see first. This ID is /// included in the output URL. When the URL in response is accessed, Amazon QuickSight /// renders this dashboard.The Amazon Resource Name (ARN) of this dashboard must be included in the AuthorizedResourceArns /// parameter. Otherwise, the request will fail with InvalidParameterValueException. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("ExperienceConfiguration_Dashboard_InitialDashboardId")] public System.String Dashboard_InitialDashboardId { get; set; } #endregion #region Parameter QSearchBar_InitialTopicId /// /// /// The QuickSight Q topic ID of the topic that you want the anonymous user to see first. /// This ID is included in the output URL. When the URL in response is accessed, Amazon /// QuickSight renders the Q search bar with this topic pre-selected.The Amazon Resource Name (ARN) of this Q topic must be included in the AuthorizedResourceArns /// parameter. Otherwise, the request will fail with InvalidParameterValueException. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("ExperienceConfiguration_QSearchBar_InitialTopicId")] public System.String QSearchBar_InitialTopicId { get; set; } #endregion #region Parameter Namespace /// /// /// The Amazon QuickSight namespace that the anonymous user virtually belongs to. If you /// are not using an Amazon QuickSight custom namespace, set this to default. /// /// #if !MODULAR [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] #else [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true)] [System.Management.Automation.AllowEmptyString] [System.Management.Automation.AllowNull] #endif [Amazon.PowerShell.Common.AWSRequiredParameter] public System.String Namespace { get; set; } #endregion #region Parameter SessionLifetimeInMinute /// /// /// How many minutes the session is valid. The session lifetime must be in [15-600] minutes /// range. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("SessionLifetimeInMinutes")] public System.Int64? SessionLifetimeInMinute { get; set; } #endregion #region Parameter SessionTag /// /// /// The session tags used for row-level security. Before you use this parameter, make /// sure that you have configured the relevant datasets using the DataSet$RowLevelPermissionTagConfiguration /// parameter so that session tags can be used to provide row-level security.These are not the tags used for the Amazon Web Services resource tagging feature. /// For more information, see Using /// Row-Level Security (RLS) with Tagsin the Amazon QuickSight User Guide. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("SessionTags")] public Amazon.QuickSight.Model.SessionTag[] SessionTag { get; set; } #endregion #region Parameter InitialDashboardVisualId_SheetId /// /// /// The ID of the sheet that the has visual that you want to embed. The SheetId /// can be found in the IDs for developers section of the Embed visual /// pane of the visual's on-visual menu of the Amazon QuickSight console. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("ExperienceConfiguration_DashboardVisual_InitialDashboardVisualId_SheetId")] public System.String InitialDashboardVisualId_SheetId { get; set; } #endregion #region Parameter InitialDashboardVisualId_VisualId /// /// /// The ID of the visual that you want to embed. The VisualID can be found /// in the IDs for developers section of the Embed visual pane /// of the visual's on-visual menu of the Amazon QuickSight console. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("ExperienceConfiguration_DashboardVisual_InitialDashboardVisualId_VisualId")] public System.String InitialDashboardVisualId_VisualId { get; set; } #endregion #region Parameter Select /// /// Use the -Select parameter to control the cmdlet output. The default value is 'EmbedUrl'. /// Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.QuickSight.Model.GenerateEmbedUrlForAnonymousUserResponse). /// Specifying the name of a property of type Amazon.QuickSight.Model.GenerateEmbedUrlForAnonymousUserResponse will result in that property being returned. /// Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public string Select { get; set; } = "EmbedUrl"; #endregion #region Parameter PassThru /// /// Changes the cmdlet behavior to return the value passed to the AwsAccountId parameter. /// The -PassThru parameter is deprecated, use -Select '^AwsAccountId' instead. This parameter will be removed in a future version. /// [System.Obsolete("The -PassThru parameter is deprecated, use -Select '^AwsAccountId' instead. This parameter will be removed in a future version.")] [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public SwitchParameter PassThru { get; set; } #endregion #region Parameter Force /// /// This parameter overrides confirmation prompts to force /// the cmdlet to continue its operation. This parameter should always /// be used with caution. /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public SwitchParameter Force { get; set; } #endregion protected override void ProcessRecord() { this._AWSSignerType = "v4"; base.ProcessRecord(); var resourceIdentifiersText = string.Empty; if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "New-QSEmbedUrlForAnonymousUser (GenerateEmbedUrlForAnonymousUser)")) { return; } var context = new CmdletContext(); // allow for manipulation of parameters prior to loading into context PreExecutionContextLoad(context); #pragma warning disable CS0618, CS0612 //A class member was marked with the Obsolete attribute if (ParameterWasBound(nameof(this.Select))) { context.Select = CreateSelectDelegate(Select) ?? throw new System.ArgumentException("Invalid value for -Select parameter.", nameof(this.Select)); if (this.PassThru.IsPresent) { throw new System.ArgumentException("-PassThru cannot be used when -Select is specified.", nameof(this.Select)); } } else if (this.PassThru.IsPresent) { context.Select = (response, cmdlet) => this.AwsAccountId; } #pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute if (this.AllowedDomain != null) { context.AllowedDomain = new List(this.AllowedDomain); } if (this.AuthorizedResourceArn != null) { context.AuthorizedResourceArn = new List(this.AuthorizedResourceArn); } #if MODULAR if (this.AuthorizedResourceArn == null && ParameterWasBound(nameof(this.AuthorizedResourceArn))) { WriteWarning("You are passing $null as a value for parameter AuthorizedResourceArn which is marked as required. In case you believe this parameter was incorrectly marked as required, report this by opening an issue at https://github.com/aws/aws-tools-for-powershell/issues."); } #endif context.AwsAccountId = this.AwsAccountId; #if MODULAR if (this.AwsAccountId == null && ParameterWasBound(nameof(this.AwsAccountId))) { WriteWarning("You are passing $null as a value for parameter AwsAccountId which is marked as required. In case you believe this parameter was incorrectly marked as required, report this by opening an issue at https://github.com/aws/aws-tools-for-powershell/issues."); } #endif context.Dashboard_InitialDashboardId = this.Dashboard_InitialDashboardId; context.InitialDashboardVisualId_DashboardId = this.InitialDashboardVisualId_DashboardId; context.InitialDashboardVisualId_SheetId = this.InitialDashboardVisualId_SheetId; context.InitialDashboardVisualId_VisualId = this.InitialDashboardVisualId_VisualId; context.QSearchBar_InitialTopicId = this.QSearchBar_InitialTopicId; context.Namespace = this.Namespace; #if MODULAR if (this.Namespace == null && ParameterWasBound(nameof(this.Namespace))) { WriteWarning("You are passing $null as a value for parameter Namespace which is marked as required. In case you believe this parameter was incorrectly marked as required, report this by opening an issue at https://github.com/aws/aws-tools-for-powershell/issues."); } #endif context.SessionLifetimeInMinute = this.SessionLifetimeInMinute; if (this.SessionTag != null) { context.SessionTag = new List(this.SessionTag); } // allow further manipulation of loaded context prior to processing PostExecutionContextLoad(context); var output = Execute(context) as CmdletOutput; ProcessOutput(output); } #region IExecutor Members public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.QuickSight.Model.GenerateEmbedUrlForAnonymousUserRequest(); if (cmdletContext.AllowedDomain != null) { request.AllowedDomains = cmdletContext.AllowedDomain; } if (cmdletContext.AuthorizedResourceArn != null) { request.AuthorizedResourceArns = cmdletContext.AuthorizedResourceArn; } if (cmdletContext.AwsAccountId != null) { request.AwsAccountId = cmdletContext.AwsAccountId; } // populate ExperienceConfiguration var requestExperienceConfigurationIsNull = true; request.ExperienceConfiguration = new Amazon.QuickSight.Model.AnonymousUserEmbeddingExperienceConfiguration(); Amazon.QuickSight.Model.AnonymousUserDashboardEmbeddingConfiguration requestExperienceConfiguration_experienceConfiguration_Dashboard = null; // populate Dashboard var requestExperienceConfiguration_experienceConfiguration_DashboardIsNull = true; requestExperienceConfiguration_experienceConfiguration_Dashboard = new Amazon.QuickSight.Model.AnonymousUserDashboardEmbeddingConfiguration(); System.String requestExperienceConfiguration_experienceConfiguration_Dashboard_dashboard_InitialDashboardId = null; if (cmdletContext.Dashboard_InitialDashboardId != null) { requestExperienceConfiguration_experienceConfiguration_Dashboard_dashboard_InitialDashboardId = cmdletContext.Dashboard_InitialDashboardId; } if (requestExperienceConfiguration_experienceConfiguration_Dashboard_dashboard_InitialDashboardId != null) { requestExperienceConfiguration_experienceConfiguration_Dashboard.InitialDashboardId = requestExperienceConfiguration_experienceConfiguration_Dashboard_dashboard_InitialDashboardId; requestExperienceConfiguration_experienceConfiguration_DashboardIsNull = false; } // determine if requestExperienceConfiguration_experienceConfiguration_Dashboard should be set to null if (requestExperienceConfiguration_experienceConfiguration_DashboardIsNull) { requestExperienceConfiguration_experienceConfiguration_Dashboard = null; } if (requestExperienceConfiguration_experienceConfiguration_Dashboard != null) { request.ExperienceConfiguration.Dashboard = requestExperienceConfiguration_experienceConfiguration_Dashboard; requestExperienceConfigurationIsNull = false; } Amazon.QuickSight.Model.AnonymousUserDashboardVisualEmbeddingConfiguration requestExperienceConfiguration_experienceConfiguration_DashboardVisual = null; // populate DashboardVisual var requestExperienceConfiguration_experienceConfiguration_DashboardVisualIsNull = true; requestExperienceConfiguration_experienceConfiguration_DashboardVisual = new Amazon.QuickSight.Model.AnonymousUserDashboardVisualEmbeddingConfiguration(); Amazon.QuickSight.Model.DashboardVisualId requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId = null; // populate InitialDashboardVisualId var requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualIdIsNull = true; requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId = new Amazon.QuickSight.Model.DashboardVisualId(); System.String requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_DashboardId = null; if (cmdletContext.InitialDashboardVisualId_DashboardId != null) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_DashboardId = cmdletContext.InitialDashboardVisualId_DashboardId; } if (requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_DashboardId != null) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId.DashboardId = requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_DashboardId; requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualIdIsNull = false; } System.String requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_SheetId = null; if (cmdletContext.InitialDashboardVisualId_SheetId != null) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_SheetId = cmdletContext.InitialDashboardVisualId_SheetId; } if (requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_SheetId != null) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId.SheetId = requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_SheetId; requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualIdIsNull = false; } System.String requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_VisualId = null; if (cmdletContext.InitialDashboardVisualId_VisualId != null) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_VisualId = cmdletContext.InitialDashboardVisualId_VisualId; } if (requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_VisualId != null) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId.VisualId = requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId_initialDashboardVisualId_VisualId; requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualIdIsNull = false; } // determine if requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId should be set to null if (requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualIdIsNull) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId = null; } if (requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId != null) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual.InitialDashboardVisualId = requestExperienceConfiguration_experienceConfiguration_DashboardVisual_experienceConfiguration_DashboardVisual_InitialDashboardVisualId; requestExperienceConfiguration_experienceConfiguration_DashboardVisualIsNull = false; } // determine if requestExperienceConfiguration_experienceConfiguration_DashboardVisual should be set to null if (requestExperienceConfiguration_experienceConfiguration_DashboardVisualIsNull) { requestExperienceConfiguration_experienceConfiguration_DashboardVisual = null; } if (requestExperienceConfiguration_experienceConfiguration_DashboardVisual != null) { request.ExperienceConfiguration.DashboardVisual = requestExperienceConfiguration_experienceConfiguration_DashboardVisual; requestExperienceConfigurationIsNull = false; } Amazon.QuickSight.Model.AnonymousUserQSearchBarEmbeddingConfiguration requestExperienceConfiguration_experienceConfiguration_QSearchBar = null; // populate QSearchBar var requestExperienceConfiguration_experienceConfiguration_QSearchBarIsNull = true; requestExperienceConfiguration_experienceConfiguration_QSearchBar = new Amazon.QuickSight.Model.AnonymousUserQSearchBarEmbeddingConfiguration(); System.String requestExperienceConfiguration_experienceConfiguration_QSearchBar_qSearchBar_InitialTopicId = null; if (cmdletContext.QSearchBar_InitialTopicId != null) { requestExperienceConfiguration_experienceConfiguration_QSearchBar_qSearchBar_InitialTopicId = cmdletContext.QSearchBar_InitialTopicId; } if (requestExperienceConfiguration_experienceConfiguration_QSearchBar_qSearchBar_InitialTopicId != null) { requestExperienceConfiguration_experienceConfiguration_QSearchBar.InitialTopicId = requestExperienceConfiguration_experienceConfiguration_QSearchBar_qSearchBar_InitialTopicId; requestExperienceConfiguration_experienceConfiguration_QSearchBarIsNull = false; } // determine if requestExperienceConfiguration_experienceConfiguration_QSearchBar should be set to null if (requestExperienceConfiguration_experienceConfiguration_QSearchBarIsNull) { requestExperienceConfiguration_experienceConfiguration_QSearchBar = null; } if (requestExperienceConfiguration_experienceConfiguration_QSearchBar != null) { request.ExperienceConfiguration.QSearchBar = requestExperienceConfiguration_experienceConfiguration_QSearchBar; requestExperienceConfigurationIsNull = false; } // determine if request.ExperienceConfiguration should be set to null if (requestExperienceConfigurationIsNull) { request.ExperienceConfiguration = null; } if (cmdletContext.Namespace != null) { request.Namespace = cmdletContext.Namespace; } if (cmdletContext.SessionLifetimeInMinute != null) { request.SessionLifetimeInMinutes = cmdletContext.SessionLifetimeInMinute.Value; } if (cmdletContext.SessionTag != null) { request.SessionTags = cmdletContext.SessionTag; } CmdletOutput output; // issue call var client = Client ?? CreateClient(_CurrentCredentials, _RegionEndpoint); try { var response = CallAWSServiceOperation(client, request); object pipelineOutput = null; pipelineOutput = cmdletContext.Select(response, this); output = new CmdletOutput { PipelineOutput = pipelineOutput, ServiceResponse = response }; } catch (Exception e) { output = new CmdletOutput { ErrorResponse = e }; } return output; } public ExecutorContext CreateContext() { return new CmdletContext(); } #endregion #region AWS Service Operation Call private Amazon.QuickSight.Model.GenerateEmbedUrlForAnonymousUserResponse CallAWSServiceOperation(IAmazonQuickSight client, Amazon.QuickSight.Model.GenerateEmbedUrlForAnonymousUserRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon QuickSight", "GenerateEmbedUrlForAnonymousUser"); try { #if DESKTOP return client.GenerateEmbedUrlForAnonymousUser(request); #elif CORECLR return client.GenerateEmbedUrlForAnonymousUserAsync(request).GetAwaiter().GetResult(); #else #error "Unknown build edition" #endif } catch (AmazonServiceException exc) { var webException = exc.InnerException as System.Net.WebException; if (webException != null) { throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException); } throw; } } #endregion internal partial class CmdletContext : ExecutorContext { public List AllowedDomain { get; set; } public List AuthorizedResourceArn { get; set; } public System.String AwsAccountId { get; set; } public System.String Dashboard_InitialDashboardId { get; set; } public System.String InitialDashboardVisualId_DashboardId { get; set; } public System.String InitialDashboardVisualId_SheetId { get; set; } public System.String InitialDashboardVisualId_VisualId { get; set; } public System.String QSearchBar_InitialTopicId { get; set; } public System.String Namespace { get; set; } public System.Int64? SessionLifetimeInMinute { get; set; } public List SessionTag { get; set; } public System.Func Select { get; set; } = (response, cmdlet) => response.EmbedUrl; } } }