/******************************************************************************* * 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.MediaTailor; using Amazon.MediaTailor.Model; namespace Amazon.PowerShell.Cmdlets.EMT { /// /// Updates a source location. A source location is a container for sources. For more /// information about source locations, see Working /// with source locations in the MediaTailor User Guide. /// [Cmdlet("Update", "EMTSourceLocation", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType("Amazon.MediaTailor.Model.UpdateSourceLocationResponse")] [AWSCmdlet("Calls the AWS Elemental MediaTailor UpdateSourceLocation API operation.", Operation = new[] {"UpdateSourceLocation"}, SelectReturnType = typeof(Amazon.MediaTailor.Model.UpdateSourceLocationResponse))] [AWSCmdletOutput("Amazon.MediaTailor.Model.UpdateSourceLocationResponse", "This cmdlet returns an Amazon.MediaTailor.Model.UpdateSourceLocationResponse object containing multiple properties. The object can also be referenced from properties attached to the cmdlet entry in the $AWSHistory stack." )] public partial class UpdateEMTSourceLocationCmdlet : AmazonMediaTailorClientCmdlet, IExecutor { #region Parameter AccessConfiguration_AccessType /// /// /// The type of authentication used to access content from HttpConfiguration::BaseUrl /// on your source location. Accepted value: S3_SIGV4.S3_SIGV4 - AWS Signature Version 4 authentication for Amazon S3 hosted /// virtual-style access. If your source location base URL is an Amazon S3 bucket, MediaTailor /// can use AWS Signature Version 4 (SigV4) authentication to access the bucket where /// your source content is stored. Your MediaTailor source location baseURL must follow /// the S3 virtual hosted-style request URL format. For example, https://bucket-name.s3.Region.amazonaws.com/key-name.Before you can use S3_SIGV4, you must meet these requirements:• You must allow MediaTailor to access your S3 bucket by granting mediatailor.amazonaws.com /// principal access in IAM. For information about configuring access in IAM, see Access /// management in the IAM User Guide.• The mediatailor.amazonaws.com service principal must have permissions to read all /// top level manifests referenced by the VodSource packaging configurations.• The caller of the API must have s3:GetObject IAM permissions to read all top level /// manifests referenced by your MediaTailor VodSource packaging configurations. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.MediaTailor.AccessType")] public Amazon.MediaTailor.AccessType AccessConfiguration_AccessType { get; set; } #endregion #region Parameter DefaultSegmentDeliveryConfiguration_BaseUrl /// /// /// The hostname of the server that will be used to serve segments. This string must include /// the protocol, such as https://. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String DefaultSegmentDeliveryConfiguration_BaseUrl { get; set; } #endregion #region Parameter HttpConfiguration_BaseUrl /// /// /// The base URL for the source location host server. This string must include the protocol, /// such as https://. /// /// #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 HttpConfiguration_BaseUrl { get; set; } #endregion #region Parameter SecretsManagerAccessTokenConfiguration_HeaderName /// /// /// The name of the HTTP header used to supply the access token in requests to the source /// location. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("AccessConfiguration_SecretsManagerAccessTokenConfiguration_HeaderName")] public System.String SecretsManagerAccessTokenConfiguration_HeaderName { get; set; } #endregion #region Parameter SecretsManagerAccessTokenConfiguration_SecretArn /// /// /// The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the /// access token. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("AccessConfiguration_SecretsManagerAccessTokenConfiguration_SecretArn")] public System.String SecretsManagerAccessTokenConfiguration_SecretArn { get; set; } #endregion #region Parameter SecretsManagerAccessTokenConfiguration_SecretStringKey /// /// /// The AWS Secrets Manager SecretString /// key associated with the access token. MediaTailor uses the key to look up SecretString /// key and value pair containing the access token. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("AccessConfiguration_SecretsManagerAccessTokenConfiguration_SecretStringKey")] public System.String SecretsManagerAccessTokenConfiguration_SecretStringKey { get; set; } #endregion #region Parameter SegmentDeliveryConfiguration /// /// /// A list of the segment delivery configurations associated with this resource. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("SegmentDeliveryConfigurations")] public Amazon.MediaTailor.Model.SegmentDeliveryConfiguration[] SegmentDeliveryConfiguration { get; set; } #endregion #region Parameter SourceLocationName /// /// /// The name of the source location. /// /// #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 SourceLocationName { get; set; } #endregion #region Parameter Select /// /// Use the -Select parameter to control the cmdlet output. The default value is '*'. /// Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.MediaTailor.Model.UpdateSourceLocationResponse). /// Specifying the name of a property of type Amazon.MediaTailor.Model.UpdateSourceLocationResponse 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; } = "*"; #endregion #region Parameter PassThru /// /// Changes the cmdlet behavior to return the value passed to the SourceLocationName parameter. /// The -PassThru parameter is deprecated, use -Select '^SourceLocationName' instead. This parameter will be removed in a future version. /// [System.Obsolete("The -PassThru parameter is deprecated, use -Select '^SourceLocationName' 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 = FormatParameterValuesForConfirmationMsg(nameof(this.SourceLocationName), MyInvocation.BoundParameters); if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "Update-EMTSourceLocation (UpdateSourceLocation)")) { 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.SourceLocationName; } #pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute context.AccessConfiguration_AccessType = this.AccessConfiguration_AccessType; context.SecretsManagerAccessTokenConfiguration_HeaderName = this.SecretsManagerAccessTokenConfiguration_HeaderName; context.SecretsManagerAccessTokenConfiguration_SecretArn = this.SecretsManagerAccessTokenConfiguration_SecretArn; context.SecretsManagerAccessTokenConfiguration_SecretStringKey = this.SecretsManagerAccessTokenConfiguration_SecretStringKey; context.DefaultSegmentDeliveryConfiguration_BaseUrl = this.DefaultSegmentDeliveryConfiguration_BaseUrl; context.HttpConfiguration_BaseUrl = this.HttpConfiguration_BaseUrl; #if MODULAR if (this.HttpConfiguration_BaseUrl == null && ParameterWasBound(nameof(this.HttpConfiguration_BaseUrl))) { WriteWarning("You are passing $null as a value for parameter HttpConfiguration_BaseUrl 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 if (this.SegmentDeliveryConfiguration != null) { context.SegmentDeliveryConfiguration = new List(this.SegmentDeliveryConfiguration); } context.SourceLocationName = this.SourceLocationName; #if MODULAR if (this.SourceLocationName == null && ParameterWasBound(nameof(this.SourceLocationName))) { WriteWarning("You are passing $null as a value for parameter SourceLocationName 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 // 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.MediaTailor.Model.UpdateSourceLocationRequest(); // populate AccessConfiguration var requestAccessConfigurationIsNull = true; request.AccessConfiguration = new Amazon.MediaTailor.Model.AccessConfiguration(); Amazon.MediaTailor.AccessType requestAccessConfiguration_accessConfiguration_AccessType = null; if (cmdletContext.AccessConfiguration_AccessType != null) { requestAccessConfiguration_accessConfiguration_AccessType = cmdletContext.AccessConfiguration_AccessType; } if (requestAccessConfiguration_accessConfiguration_AccessType != null) { request.AccessConfiguration.AccessType = requestAccessConfiguration_accessConfiguration_AccessType; requestAccessConfigurationIsNull = false; } Amazon.MediaTailor.Model.SecretsManagerAccessTokenConfiguration requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration = null; // populate SecretsManagerAccessTokenConfiguration var requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfigurationIsNull = true; requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration = new Amazon.MediaTailor.Model.SecretsManagerAccessTokenConfiguration(); System.String requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_HeaderName = null; if (cmdletContext.SecretsManagerAccessTokenConfiguration_HeaderName != null) { requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_HeaderName = cmdletContext.SecretsManagerAccessTokenConfiguration_HeaderName; } if (requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_HeaderName != null) { requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration.HeaderName = requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_HeaderName; requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfigurationIsNull = false; } System.String requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_SecretArn = null; if (cmdletContext.SecretsManagerAccessTokenConfiguration_SecretArn != null) { requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_SecretArn = cmdletContext.SecretsManagerAccessTokenConfiguration_SecretArn; } if (requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_SecretArn != null) { requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration.SecretArn = requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_SecretArn; requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfigurationIsNull = false; } System.String requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_SecretStringKey = null; if (cmdletContext.SecretsManagerAccessTokenConfiguration_SecretStringKey != null) { requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_SecretStringKey = cmdletContext.SecretsManagerAccessTokenConfiguration_SecretStringKey; } if (requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_SecretStringKey != null) { requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration.SecretStringKey = requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration_secretsManagerAccessTokenConfiguration_SecretStringKey; requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfigurationIsNull = false; } // determine if requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration should be set to null if (requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfigurationIsNull) { requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration = null; } if (requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration != null) { request.AccessConfiguration.SecretsManagerAccessTokenConfiguration = requestAccessConfiguration_accessConfiguration_SecretsManagerAccessTokenConfiguration; requestAccessConfigurationIsNull = false; } // determine if request.AccessConfiguration should be set to null if (requestAccessConfigurationIsNull) { request.AccessConfiguration = null; } // populate DefaultSegmentDeliveryConfiguration var requestDefaultSegmentDeliveryConfigurationIsNull = true; request.DefaultSegmentDeliveryConfiguration = new Amazon.MediaTailor.Model.DefaultSegmentDeliveryConfiguration(); System.String requestDefaultSegmentDeliveryConfiguration_defaultSegmentDeliveryConfiguration_BaseUrl = null; if (cmdletContext.DefaultSegmentDeliveryConfiguration_BaseUrl != null) { requestDefaultSegmentDeliveryConfiguration_defaultSegmentDeliveryConfiguration_BaseUrl = cmdletContext.DefaultSegmentDeliveryConfiguration_BaseUrl; } if (requestDefaultSegmentDeliveryConfiguration_defaultSegmentDeliveryConfiguration_BaseUrl != null) { request.DefaultSegmentDeliveryConfiguration.BaseUrl = requestDefaultSegmentDeliveryConfiguration_defaultSegmentDeliveryConfiguration_BaseUrl; requestDefaultSegmentDeliveryConfigurationIsNull = false; } // determine if request.DefaultSegmentDeliveryConfiguration should be set to null if (requestDefaultSegmentDeliveryConfigurationIsNull) { request.DefaultSegmentDeliveryConfiguration = null; } // populate HttpConfiguration var requestHttpConfigurationIsNull = true; request.HttpConfiguration = new Amazon.MediaTailor.Model.HttpConfiguration(); System.String requestHttpConfiguration_httpConfiguration_BaseUrl = null; if (cmdletContext.HttpConfiguration_BaseUrl != null) { requestHttpConfiguration_httpConfiguration_BaseUrl = cmdletContext.HttpConfiguration_BaseUrl; } if (requestHttpConfiguration_httpConfiguration_BaseUrl != null) { request.HttpConfiguration.BaseUrl = requestHttpConfiguration_httpConfiguration_BaseUrl; requestHttpConfigurationIsNull = false; } // determine if request.HttpConfiguration should be set to null if (requestHttpConfigurationIsNull) { request.HttpConfiguration = null; } if (cmdletContext.SegmentDeliveryConfiguration != null) { request.SegmentDeliveryConfigurations = cmdletContext.SegmentDeliveryConfiguration; } if (cmdletContext.SourceLocationName != null) { request.SourceLocationName = cmdletContext.SourceLocationName; } 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.MediaTailor.Model.UpdateSourceLocationResponse CallAWSServiceOperation(IAmazonMediaTailor client, Amazon.MediaTailor.Model.UpdateSourceLocationRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Elemental MediaTailor", "UpdateSourceLocation"); try { #if DESKTOP return client.UpdateSourceLocation(request); #elif CORECLR return client.UpdateSourceLocationAsync(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 Amazon.MediaTailor.AccessType AccessConfiguration_AccessType { get; set; } public System.String SecretsManagerAccessTokenConfiguration_HeaderName { get; set; } public System.String SecretsManagerAccessTokenConfiguration_SecretArn { get; set; } public System.String SecretsManagerAccessTokenConfiguration_SecretStringKey { get; set; } public System.String DefaultSegmentDeliveryConfiguration_BaseUrl { get; set; } public System.String HttpConfiguration_BaseUrl { get; set; } public List SegmentDeliveryConfiguration { get; set; } public System.String SourceLocationName { get; set; } public System.Func Select { get; set; } = (response, cmdlet) => response; } } }