/*******************************************************************************
* 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.Lambda;
using Amazon.Lambda.Model;
namespace Amazon.PowerShell.Cmdlets.LM
{
///
/// Creates a Lambda function. To create a function, you need a deployment
/// package and an execution
/// role. The deployment package is a .zip file archive or container image that contains
/// your function code. The execution role grants the function permission to use Amazon
/// Web Services, such as Amazon CloudWatch Logs for log streaming and X-Ray for request
/// tracing.
///
///
///
/// If the deployment package is a container
/// image, then you set the package type to Image
. For a container image,
/// the code property must include the URI of a container image in the Amazon ECR registry.
/// You do not need to specify the handler and runtime properties.
///
/// If the deployment package is a .zip
/// file archive, then you set the package type to Zip
. For a .zip file
/// archive, the code property specifies the location of the .zip file. You must also
/// specify the handler and runtime properties. The code in the deployment package must
/// be compatible with the target instruction set architecture of the function (x86-64
/// or arm64
). If you do not specify the architecture, then the default value
/// is x86-64
.
///
/// When you create a function, Lambda provisions an instance of the function and its
/// supporting resources. If your function connects to a VPC, this process can take a
/// minute or so. During this time, you can't invoke or modify the function. The State
,
/// StateReason
, and StateReasonCode
fields in the response
/// from GetFunctionConfiguration indicate when the function is ready to invoke.
/// For more information, see Lambda
/// function states.
///
/// A function has an unpublished version, and can have published versions and aliases.
/// The unpublished version changes when you update your function's code and configuration.
/// A published version is a snapshot of your function code and configuration that can't
/// be changed. An alias is a named resource that maps to a version, and can be changed
/// to map to a different version. Use the Publish
parameter to create version
/// 1
of your function from its initial configuration.
///
/// The other parameters let you configure version-specific and function-level settings.
/// You can modify version-specific settings later with UpdateFunctionConfiguration.
/// Function-level settings apply to both the unpublished and published versions of the
/// function, and include tags (TagResource) and per-function concurrency limits
/// (PutFunctionConcurrency).
///
/// You can use code signing if your deployment package is a .zip file archive. To enable
/// code signing for this function, specify the ARN of a code-signing configuration. When
/// a user attempts to deploy a code package with UpdateFunctionCode, Lambda checks
/// that the code package has a valid signature from a trusted publisher. The code-signing
/// configuration includes set of signing profiles, which define the trusted publishers
/// for this function.
///
/// If another Amazon Web Services account or an Amazon Web Service invokes your function,
/// use AddPermission to grant permission by creating a resource-based Identity
/// and Access Management (IAM) policy. You can grant permissions at the function level,
/// on a version, or on an alias.
///
/// To invoke your function directly, use Invoke. To invoke your function in response
/// to events in other Amazon Web Services, create an event source mapping (CreateEventSourceMapping),
/// or configure a function trigger in the other service. For more information, see Invoking
/// Lambda functions.
///
///
[Cmdlet("Publish", "LMFunction", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium, DefaultParameterSetName="FromMemoryStream")]
[OutputType("Amazon.Lambda.Model.CreateFunctionResponse")]
[AWSCmdlet("Calls the AWS Lambda CreateFunction API operation.", Operation = new[] {"CreateFunction"}, SelectReturnType = typeof(Amazon.Lambda.Model.CreateFunctionResponse))]
[AWSCmdletOutput("Amazon.Lambda.Model.CreateFunctionResponse",
"This cmdlet returns an Amazon.Lambda.Model.CreateFunctionResponse object containing multiple properties. The object can also be referenced from properties attached to the cmdlet entry in the $AWSHistory stack."
)]
public partial class PublishLMFunctionCmdlet : AmazonLambdaClientCmdlet, IExecutor
{
protected override bool IsSensitiveRequest { get; set; } = true;
protected override bool IsSensitiveResponse { get; set; } = true;
#region Parameter SnapStart_ApplyOn
///
///
/// Set to PublishedVersions
to create a snapshot of the initialized execution
/// environment when you publish a function version.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[AWSConstantClassSource("Amazon.Lambda.SnapStartApplyOn")]
public Amazon.Lambda.SnapStartApplyOn SnapStart_ApplyOn { get; set; }
#endregion
#region Parameter Architecture
///
///
/// The instruction set architecture that the function supports. Enter a string array
/// with one of the valid values (arm64 or x86_64). The default value is x86_64
.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("Architectures")]
public System.String[] Architecture { get; set; }
#endregion
#region Parameter CodeSigningConfigArn
///
///
/// To enable code signing for this function, specify the ARN of a code-signing configuration.
/// A code-signing configuration includes a set of signing profiles, which define the
/// trusted publishers for this function.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String CodeSigningConfigArn { get; set; }
#endregion
#region Parameter ImageConfig_Command
///
///
/// Specifies parameters that you want to pass in with ENTRYPOINT.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String[] ImageConfig_Command { get; set; }
#endregion
#region Parameter Description
///
///
/// A description of the function.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String Description { get; set; }
#endregion
#region Parameter ImageConfig_EntryPoint
///
///
/// Specifies the entry point to their application, which is typically the location of
/// the runtime executable.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String[] ImageConfig_EntryPoint { get; set; }
#endregion
#region Parameter FileSystemConfig
///
///
/// Connection settings for an Amazon EFS file system.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("FileSystemConfigs")]
public Amazon.Lambda.Model.FileSystemConfig[] FileSystemConfig { get; set; }
#endregion
#region Parameter FunctionName
///
///
/// Amazon.Lambda.Model.CreateFunctionRequest.FunctionName
///
///
[System.Management.Automation.Parameter(Position = 0, ValueFromPipelineByPropertyName = true, ValueFromPipeline = true, Mandatory = true)]
public System.String FunctionName { get; set; }
#endregion
#region Parameter Handler
///
///
/// The name of the method within your code that Lambda calls to run your function. Handler
/// is required if the deployment package is a .zip file archive. The format includes
/// the file name. It can also include namespaces and other qualifiers, depending on the
/// runtime. For more information, see Lambda
/// programming model.
///
///
[System.Management.Automation.Parameter(Position = 2, ValueFromPipelineByPropertyName = true, Mandatory = true, ParameterSetName = "FromS3Object")]
[System.Management.Automation.Parameter(Position = 2, ValueFromPipelineByPropertyName = true, Mandatory = true, ParameterSetName = "FromMemoryStream")]
[System.Management.Automation.Parameter(Position = 2, ValueFromPipelineByPropertyName = true, Mandatory = true, ParameterSetName = "FromZipFile")]
public System.String Handler { get; set; }
#endregion
#region Parameter Code_ImageUri
///
///
/// URI of a container
/// image in the Amazon ECR registry.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true, ParameterSetName = "FromImage")]
public System.String Code_ImageUri { get; set; }
#endregion
#region Parameter ImageConfig_IsCommandSet
///
///
/// This property is set to true if the property
/// is set; false otherwise.
/// This property can be used to determine if the related property
/// was returned by a service response or if the related property
/// should be sent to the service during a service call.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? ImageConfig_IsCommandSet { get; set; }
#endregion
#region Parameter ImageConfig_IsEntryPointSet
///
///
/// This property is set to true if the property
/// is set; false otherwise.
/// This property can be used to determine if the related property
/// was returned by a service response or if the related property
/// should be sent to the service during a service call.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? ImageConfig_IsEntryPointSet { get; set; }
#endregion
#region Parameter VpcConfig_IsSecurityGroupIdsSet
///
///
/// This property is set to true if the property
/// is set; false otherwise.
/// This property can be used to determine if the related property
/// was returned by a service response or if the related property
/// should be sent to the service during a service call.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? VpcConfig_IsSecurityGroupIdsSet { get; set; }
#endregion
#region Parameter VpcConfig_IsSubnetIdsSet
///
///
/// This property is set to true if the property
/// is set; false otherwise.
/// This property can be used to determine if the related property
/// was returned by a service response or if the related property
/// should be sent to the service during a service call.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? VpcConfig_IsSubnetIdsSet { get; set; }
#endregion
#region Parameter Environment_IsVariablesSet
///
///
/// This property is set to true if the property
/// is set; false otherwise.
/// This property can be used to determine if the related property
/// was returned by a service response or if the related property
/// should be sent to the service during a service call.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? Environment_IsVariablesSet { get; set; }
#endregion
#region Parameter KMSKeyArn
///
///
/// The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt
/// your function's environment
/// variables. When Lambda
/// SnapStart is activated, Lambda also uses this key is to encrypt your function's
/// snapshot. If you deploy your function using a container image, Lambda also uses this
/// key to encrypt your function when it's deployed. Note that this is not the same key
/// that's used to protect your container image in the Amazon Elastic Container Registry
/// (Amazon ECR). If you don't provide a customer managed key, Lambda uses a default service
/// key.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String KMSKeyArn { get; set; }
#endregion
#region Parameter Layer
///
///
/// A list of function
/// layers to add to the function's execution environment. Specify each layer by its
/// ARN, including the version.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("Layers")]
public System.String[] Layer { get; set; }
#endregion
#region Parameter MemorySize
///
///
/// The amount of memory
/// available to the function at runtime. Increasing the function memory also increases
/// its CPU allocation. The default value is 128 MB. The value can be any multiple of
/// 1 MB.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Int32? MemorySize { get; set; }
#endregion
#region Parameter TracingConfig_Mode
///
///
/// The tracing mode.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[AWSConstantClassSource("Amazon.Lambda.TracingMode")]
public Amazon.Lambda.TracingMode TracingConfig_Mode { get; set; }
#endregion
#region Parameter PackageType
///
///
/// The type of deployment package. Set to Image
for container image and
/// set to Zip
for .zip file archive.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[AWSConstantClassSource("Amazon.Lambda.PackageType")]
public Amazon.Lambda.PackageType PackageType { get; set; }
#endregion
#region Parameter PublishVersion
///
///
/// Set to true to publish the first version of the function during creation.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? PublishVersion { get; set; }
#endregion
#region Parameter Role
///
///
/// The Amazon Resource Name (ARN) of the function's execution role.
///
///
[System.Management.Automation.Parameter(Position = 4, ValueFromPipelineByPropertyName = true, Mandatory = true)]
public System.String Role { get; set; }
#endregion
#region Parameter Runtime
///
///
/// The identifier of the function's runtime.
/// Runtime is required if the deployment package is a .zip file archive.The following list includes deprecated runtimes. For more information, see Runtime
/// deprecation policy.
///
///
[System.Management.Automation.Parameter(Position = 3, ValueFromPipelineByPropertyName = true)]
[AWSConstantClassSource("Amazon.Lambda.Runtime")]
public Amazon.Lambda.Runtime Runtime { get; set; }
#endregion
#region Parameter Code_S3Bucket
///
///
/// An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket
/// can be in a different Amazon Web Services account.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true, ParameterSetName = "FromS3Object")]
[Alias("BucketName","FunctionCode_S3Bucket","S3Bucket")]
public System.String Code_S3Bucket { get; set; }
#endregion
#region Parameter Code_S3Key
///
///
/// The Amazon S3 key of the deployment package.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true, ParameterSetName = "FromS3Object")]
[Alias("FunctionCode_S3Key","Key","S3Key")]
public System.String Code_S3Key { get; set; }
#endregion
#region Parameter Code_S3ObjectVersion
///
///
/// For versioned objects, the version of the deployment package object to use.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = "FromS3Object")]
[Alias("FunctionCode_S3ObjectVersion","S3ObjectVersion","VersionId")]
public System.String Code_S3ObjectVersion { get; set; }
#endregion
#region Parameter VpcConfig_SecurityGroupId
///
///
/// A list of VPC security group IDs.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("VpcConfig_SecurityGroupIds")]
public System.String[] VpcConfig_SecurityGroupId { get; set; }
#endregion
#region Parameter EphemeralStorage_Size
///
///
/// The size of the function's /tmp
directory.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Int32? EphemeralStorage_Size { get; set; }
#endregion
#region Parameter VpcConfig_SubnetId
///
///
/// A list of VPC subnet IDs.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("VpcConfig_SubnetIds")]
public System.String[] VpcConfig_SubnetId { get; set; }
#endregion
#region Parameter Tag
///
///
/// A list of tags
/// to apply to the function.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("Tags")]
public System.Collections.Hashtable Tag { get; set; }
#endregion
#region Parameter DeadLetterConfig_TargetArn
///
///
/// The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String DeadLetterConfig_TargetArn { get; set; }
#endregion
#region Parameter Timeout
///
///
/// The amount of time (in seconds) that Lambda allows a function to run before stopping
/// it. The default is 3 seconds. The maximum allowed value is 900 seconds. For more information,
/// see Lambda
/// execution environment.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Int32? Timeout { get; set; }
#endregion
#region Parameter Environment_Variable
///
///
/// Environment variable key-value pairs. For more information, see Using
/// Lambda environment variables.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("Environment_Variables")]
public System.Collections.Hashtable Environment_Variable { get; set; }
#endregion
#region Parameter ImageConfig_WorkingDirectory
///
///
/// Specifies the working directory.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String ImageConfig_WorkingDirectory { get; set; }
#endregion
#region Parameter Code_ZipFile
///
///
/// The base64-encoded contents of the deployment package. Amazon Web Services SDK and
/// CLI clients handle the encoding for you.
///
/// The cmdlet will automatically convert the supplied parameter of type string, string[], System.IO.FileInfo or System.IO.Stream to byte[] before supplying it to the service.
///
[System.Management.Automation.Parameter(Position = 1, ValueFromPipelineByPropertyName = true, Mandatory = true, ParameterSetName = "FromMemoryStream")]
[Alias("ZipContent","ZipFileContent")]
[Amazon.PowerShell.Common.MemoryStreamParameterConverter]
public byte[] Code_ZipFile { 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.Lambda.Model.CreateFunctionResponse).
/// Specifying the name of a property of type Amazon.Lambda.Model.CreateFunctionResponse 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 FunctionName parameter.
/// The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
///
[System.Obsolete("The -PassThru parameter is deprecated, use -Select '^FunctionName' 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.FunctionName), MyInvocation.BoundParameters);
if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "Publish-LMFunction (CreateFunction)"))
{
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.FunctionName;
}
#pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute
if (this.Architecture != null)
{
context.Architecture = new List(this.Architecture);
}
context.Code_ImageUri = this.Code_ImageUri;
context.Code_S3Bucket = this.Code_S3Bucket;
context.Code_S3Key = this.Code_S3Key;
context.Code_S3ObjectVersion = this.Code_S3ObjectVersion;
context.Code_ZipFile = this.Code_ZipFile;
context.CodeSigningConfigArn = this.CodeSigningConfigArn;
context.DeadLetterConfig_TargetArn = this.DeadLetterConfig_TargetArn;
context.Description = this.Description;
if (this.Environment_Variable != null)
{
context.Environment_Variable = new Dictionary(StringComparer.Ordinal);
foreach (var hashKey in this.Environment_Variable.Keys)
{
context.Environment_Variable.Add((String)hashKey, (String)(this.Environment_Variable[hashKey]));
}
}
context.Environment_IsVariablesSet = this.Environment_IsVariablesSet;
if (!ParameterWasBound(nameof(this.Environment_IsVariablesSet)) && this.Environment_Variable != null)
{
context.Environment_IsVariablesSet = true;
}
context.EphemeralStorage_Size = this.EphemeralStorage_Size;
if (this.FileSystemConfig != null)
{
context.FileSystemConfig = new List(this.FileSystemConfig);
}
context.FunctionName = this.FunctionName;
#if MODULAR
if (this.FunctionName == null && ParameterWasBound(nameof(this.FunctionName)))
{
WriteWarning("You are passing $null as a value for parameter FunctionName 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.Handler = this.Handler;
if (this.ImageConfig_Command != null)
{
context.ImageConfig_Command = new List(this.ImageConfig_Command);
}
context.ImageConfig_IsCommandSet = this.ImageConfig_IsCommandSet;
if (!ParameterWasBound(nameof(this.ImageConfig_IsCommandSet)) && this.ImageConfig_Command != null)
{
context.ImageConfig_IsCommandSet = true;
}
if (this.ImageConfig_EntryPoint != null)
{
context.ImageConfig_EntryPoint = new List(this.ImageConfig_EntryPoint);
}
context.ImageConfig_IsEntryPointSet = this.ImageConfig_IsEntryPointSet;
if (!ParameterWasBound(nameof(this.ImageConfig_IsEntryPointSet)) && this.ImageConfig_EntryPoint != null)
{
context.ImageConfig_IsEntryPointSet = true;
}
context.ImageConfig_WorkingDirectory = this.ImageConfig_WorkingDirectory;
context.KMSKeyArn = this.KMSKeyArn;
if (this.Layer != null)
{
context.Layer = new List(this.Layer);
}
context.MemorySize = this.MemorySize;
context.PackageType = this.PackageType;
context.PublishVersion = this.PublishVersion;
context.Role = this.Role;
#if MODULAR
if (this.Role == null && ParameterWasBound(nameof(this.Role)))
{
WriteWarning("You are passing $null as a value for parameter Role 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.Runtime = this.Runtime;
context.SnapStart_ApplyOn = this.SnapStart_ApplyOn;
if (this.Tag != null)
{
context.Tag = new Dictionary(StringComparer.Ordinal);
foreach (var hashKey in this.Tag.Keys)
{
context.Tag.Add((String)hashKey, (String)(this.Tag[hashKey]));
}
}
context.Timeout = this.Timeout;
context.TracingConfig_Mode = this.TracingConfig_Mode;
if (this.VpcConfig_SecurityGroupId != null)
{
context.VpcConfig_SecurityGroupId = new List(this.VpcConfig_SecurityGroupId);
}
context.VpcConfig_IsSecurityGroupIdsSet = this.VpcConfig_IsSecurityGroupIdsSet;
if (!ParameterWasBound(nameof(this.VpcConfig_IsSecurityGroupIdsSet)) && this.VpcConfig_SecurityGroupId != null)
{
context.VpcConfig_IsSecurityGroupIdsSet = true;
}
if (this.VpcConfig_SubnetId != null)
{
context.VpcConfig_SubnetId = new List(this.VpcConfig_SubnetId);
}
context.VpcConfig_IsSubnetIdsSet = this.VpcConfig_IsSubnetIdsSet;
if (!ParameterWasBound(nameof(this.VpcConfig_IsSubnetIdsSet)) && this.VpcConfig_SubnetId != null)
{
context.VpcConfig_IsSubnetIdsSet = true;
}
// 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)
{
System.IO.MemoryStream _Code_ZipFileStream = null;
try
{
var cmdletContext = context as CmdletContext;
// create request
var request = new Amazon.Lambda.Model.CreateFunctionRequest();
if (cmdletContext.Architecture != null)
{
request.Architectures = cmdletContext.Architecture;
}
// populate Code
var requestCodeIsNull = true;
request.Code = new Amazon.Lambda.Model.FunctionCode();
System.String requestCode_code_ImageUri = null;
if (cmdletContext.Code_ImageUri != null)
{
requestCode_code_ImageUri = cmdletContext.Code_ImageUri;
}
if (requestCode_code_ImageUri != null)
{
request.Code.ImageUri = requestCode_code_ImageUri;
requestCodeIsNull = false;
}
System.String requestCode_code_S3Bucket = null;
if (cmdletContext.Code_S3Bucket != null)
{
requestCode_code_S3Bucket = cmdletContext.Code_S3Bucket;
}
if (requestCode_code_S3Bucket != null)
{
request.Code.S3Bucket = requestCode_code_S3Bucket;
requestCodeIsNull = false;
}
System.String requestCode_code_S3Key = null;
if (cmdletContext.Code_S3Key != null)
{
requestCode_code_S3Key = cmdletContext.Code_S3Key;
}
if (requestCode_code_S3Key != null)
{
request.Code.S3Key = requestCode_code_S3Key;
requestCodeIsNull = false;
}
System.String requestCode_code_S3ObjectVersion = null;
if (cmdletContext.Code_S3ObjectVersion != null)
{
requestCode_code_S3ObjectVersion = cmdletContext.Code_S3ObjectVersion;
}
if (requestCode_code_S3ObjectVersion != null)
{
request.Code.S3ObjectVersion = requestCode_code_S3ObjectVersion;
requestCodeIsNull = false;
}
System.IO.MemoryStream requestCode_code_ZipFile = null;
if (cmdletContext.Code_ZipFile != null)
{
_Code_ZipFileStream = new System.IO.MemoryStream(cmdletContext.Code_ZipFile);
requestCode_code_ZipFile = _Code_ZipFileStream;
}
if (requestCode_code_ZipFile != null)
{
request.Code.ZipFile = requestCode_code_ZipFile;
requestCodeIsNull = false;
}
// determine if request.Code should be set to null
if (requestCodeIsNull)
{
request.Code = null;
}
if (cmdletContext.CodeSigningConfigArn != null)
{
request.CodeSigningConfigArn = cmdletContext.CodeSigningConfigArn;
}
// populate DeadLetterConfig
var requestDeadLetterConfigIsNull = true;
request.DeadLetterConfig = new Amazon.Lambda.Model.DeadLetterConfig();
System.String requestDeadLetterConfig_deadLetterConfig_TargetArn = null;
if (cmdletContext.DeadLetterConfig_TargetArn != null)
{
requestDeadLetterConfig_deadLetterConfig_TargetArn = cmdletContext.DeadLetterConfig_TargetArn;
}
if (requestDeadLetterConfig_deadLetterConfig_TargetArn != null)
{
request.DeadLetterConfig.TargetArn = requestDeadLetterConfig_deadLetterConfig_TargetArn;
requestDeadLetterConfigIsNull = false;
}
// determine if request.DeadLetterConfig should be set to null
if (requestDeadLetterConfigIsNull)
{
request.DeadLetterConfig = null;
}
if (cmdletContext.Description != null)
{
request.Description = cmdletContext.Description;
}
// populate Environment
var requestEnvironmentIsNull = true;
request.Environment = new Amazon.Lambda.Model.Environment();
Dictionary requestEnvironment_environment_Variable = null;
if (cmdletContext.Environment_Variable != null)
{
requestEnvironment_environment_Variable = cmdletContext.Environment_Variable;
}
if (requestEnvironment_environment_Variable != null)
{
request.Environment.Variables = requestEnvironment_environment_Variable;
requestEnvironmentIsNull = false;
}
System.Boolean? requestEnvironment_environment_IsVariablesSet = null;
if (cmdletContext.Environment_IsVariablesSet != null)
{
requestEnvironment_environment_IsVariablesSet = cmdletContext.Environment_IsVariablesSet.Value;
}
if (requestEnvironment_environment_IsVariablesSet != null)
{
request.Environment.IsVariablesSet = requestEnvironment_environment_IsVariablesSet.Value;
requestEnvironmentIsNull = false;
}
// determine if request.Environment should be set to null
if (requestEnvironmentIsNull)
{
request.Environment = null;
}
// populate EphemeralStorage
var requestEphemeralStorageIsNull = true;
request.EphemeralStorage = new Amazon.Lambda.Model.EphemeralStorage();
System.Int32? requestEphemeralStorage_ephemeralStorage_Size = null;
if (cmdletContext.EphemeralStorage_Size != null)
{
requestEphemeralStorage_ephemeralStorage_Size = cmdletContext.EphemeralStorage_Size.Value;
}
if (requestEphemeralStorage_ephemeralStorage_Size != null)
{
request.EphemeralStorage.Size = requestEphemeralStorage_ephemeralStorage_Size.Value;
requestEphemeralStorageIsNull = false;
}
// determine if request.EphemeralStorage should be set to null
if (requestEphemeralStorageIsNull)
{
request.EphemeralStorage = null;
}
if (cmdletContext.FileSystemConfig != null)
{
request.FileSystemConfigs = cmdletContext.FileSystemConfig;
}
if (cmdletContext.FunctionName != null)
{
request.FunctionName = cmdletContext.FunctionName;
}
if (cmdletContext.Handler != null)
{
request.Handler = cmdletContext.Handler;
}
// populate ImageConfig
var requestImageConfigIsNull = true;
request.ImageConfig = new Amazon.Lambda.Model.ImageConfig();
List requestImageConfig_imageConfig_Command = null;
if (cmdletContext.ImageConfig_Command != null)
{
requestImageConfig_imageConfig_Command = cmdletContext.ImageConfig_Command;
}
if (requestImageConfig_imageConfig_Command != null)
{
request.ImageConfig.Command = requestImageConfig_imageConfig_Command;
requestImageConfigIsNull = false;
}
System.Boolean? requestImageConfig_imageConfig_IsCommandSet = null;
if (cmdletContext.ImageConfig_IsCommandSet != null)
{
requestImageConfig_imageConfig_IsCommandSet = cmdletContext.ImageConfig_IsCommandSet.Value;
}
if (requestImageConfig_imageConfig_IsCommandSet != null)
{
request.ImageConfig.IsCommandSet = requestImageConfig_imageConfig_IsCommandSet.Value;
requestImageConfigIsNull = false;
}
List requestImageConfig_imageConfig_EntryPoint = null;
if (cmdletContext.ImageConfig_EntryPoint != null)
{
requestImageConfig_imageConfig_EntryPoint = cmdletContext.ImageConfig_EntryPoint;
}
if (requestImageConfig_imageConfig_EntryPoint != null)
{
request.ImageConfig.EntryPoint = requestImageConfig_imageConfig_EntryPoint;
requestImageConfigIsNull = false;
}
System.Boolean? requestImageConfig_imageConfig_IsEntryPointSet = null;
if (cmdletContext.ImageConfig_IsEntryPointSet != null)
{
requestImageConfig_imageConfig_IsEntryPointSet = cmdletContext.ImageConfig_IsEntryPointSet.Value;
}
if (requestImageConfig_imageConfig_IsEntryPointSet != null)
{
request.ImageConfig.IsEntryPointSet = requestImageConfig_imageConfig_IsEntryPointSet.Value;
requestImageConfigIsNull = false;
}
System.String requestImageConfig_imageConfig_WorkingDirectory = null;
if (cmdletContext.ImageConfig_WorkingDirectory != null)
{
requestImageConfig_imageConfig_WorkingDirectory = cmdletContext.ImageConfig_WorkingDirectory;
}
if (requestImageConfig_imageConfig_WorkingDirectory != null)
{
request.ImageConfig.WorkingDirectory = requestImageConfig_imageConfig_WorkingDirectory;
requestImageConfigIsNull = false;
}
// determine if request.ImageConfig should be set to null
if (requestImageConfigIsNull)
{
request.ImageConfig = null;
}
if (cmdletContext.KMSKeyArn != null)
{
request.KMSKeyArn = cmdletContext.KMSKeyArn;
}
if (cmdletContext.Layer != null)
{
request.Layers = cmdletContext.Layer;
}
if (cmdletContext.MemorySize != null)
{
request.MemorySize = cmdletContext.MemorySize.Value;
}
if (cmdletContext.PackageType != null)
{
request.PackageType = cmdletContext.PackageType;
}
if (cmdletContext.PublishVersion != null)
{
request.Publish = cmdletContext.PublishVersion.Value;
}
if (cmdletContext.Role != null)
{
request.Role = cmdletContext.Role;
}
if (cmdletContext.Runtime != null)
{
request.Runtime = cmdletContext.Runtime;
}
// populate SnapStart
var requestSnapStartIsNull = true;
request.SnapStart = new Amazon.Lambda.Model.SnapStart();
Amazon.Lambda.SnapStartApplyOn requestSnapStart_snapStart_ApplyOn = null;
if (cmdletContext.SnapStart_ApplyOn != null)
{
requestSnapStart_snapStart_ApplyOn = cmdletContext.SnapStart_ApplyOn;
}
if (requestSnapStart_snapStart_ApplyOn != null)
{
request.SnapStart.ApplyOn = requestSnapStart_snapStart_ApplyOn;
requestSnapStartIsNull = false;
}
// determine if request.SnapStart should be set to null
if (requestSnapStartIsNull)
{
request.SnapStart = null;
}
if (cmdletContext.Tag != null)
{
request.Tags = cmdletContext.Tag;
}
if (cmdletContext.Timeout != null)
{
request.Timeout = cmdletContext.Timeout.Value;
}
// populate TracingConfig
var requestTracingConfigIsNull = true;
request.TracingConfig = new Amazon.Lambda.Model.TracingConfig();
Amazon.Lambda.TracingMode requestTracingConfig_tracingConfig_Mode = null;
if (cmdletContext.TracingConfig_Mode != null)
{
requestTracingConfig_tracingConfig_Mode = cmdletContext.TracingConfig_Mode;
}
if (requestTracingConfig_tracingConfig_Mode != null)
{
request.TracingConfig.Mode = requestTracingConfig_tracingConfig_Mode;
requestTracingConfigIsNull = false;
}
// determine if request.TracingConfig should be set to null
if (requestTracingConfigIsNull)
{
request.TracingConfig = null;
}
// populate VpcConfig
var requestVpcConfigIsNull = true;
request.VpcConfig = new Amazon.Lambda.Model.VpcConfig();
List requestVpcConfig_vpcConfig_SecurityGroupId = null;
if (cmdletContext.VpcConfig_SecurityGroupId != null)
{
requestVpcConfig_vpcConfig_SecurityGroupId = cmdletContext.VpcConfig_SecurityGroupId;
}
if (requestVpcConfig_vpcConfig_SecurityGroupId != null)
{
request.VpcConfig.SecurityGroupIds = requestVpcConfig_vpcConfig_SecurityGroupId;
requestVpcConfigIsNull = false;
}
System.Boolean? requestVpcConfig_vpcConfig_IsSecurityGroupIdsSet = null;
if (cmdletContext.VpcConfig_IsSecurityGroupIdsSet != null)
{
requestVpcConfig_vpcConfig_IsSecurityGroupIdsSet = cmdletContext.VpcConfig_IsSecurityGroupIdsSet.Value;
}
if (requestVpcConfig_vpcConfig_IsSecurityGroupIdsSet != null)
{
request.VpcConfig.IsSecurityGroupIdsSet = requestVpcConfig_vpcConfig_IsSecurityGroupIdsSet.Value;
requestVpcConfigIsNull = false;
}
List requestVpcConfig_vpcConfig_SubnetId = null;
if (cmdletContext.VpcConfig_SubnetId != null)
{
requestVpcConfig_vpcConfig_SubnetId = cmdletContext.VpcConfig_SubnetId;
}
if (requestVpcConfig_vpcConfig_SubnetId != null)
{
request.VpcConfig.SubnetIds = requestVpcConfig_vpcConfig_SubnetId;
requestVpcConfigIsNull = false;
}
System.Boolean? requestVpcConfig_vpcConfig_IsSubnetIdsSet = null;
if (cmdletContext.VpcConfig_IsSubnetIdsSet != null)
{
requestVpcConfig_vpcConfig_IsSubnetIdsSet = cmdletContext.VpcConfig_IsSubnetIdsSet.Value;
}
if (requestVpcConfig_vpcConfig_IsSubnetIdsSet != null)
{
request.VpcConfig.IsSubnetIdsSet = requestVpcConfig_vpcConfig_IsSubnetIdsSet.Value;
requestVpcConfigIsNull = false;
}
// determine if request.VpcConfig should be set to null
if (requestVpcConfigIsNull)
{
request.VpcConfig = null;
}
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;
}
finally
{
if( _Code_ZipFileStream != null)
{
_Code_ZipFileStream.Dispose();
}
}
}
public ExecutorContext CreateContext()
{
return new CmdletContext();
}
#endregion
#region AWS Service Operation Call
private Amazon.Lambda.Model.CreateFunctionResponse CallAWSServiceOperation(IAmazonLambda client, Amazon.Lambda.Model.CreateFunctionRequest request)
{
Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Lambda", "CreateFunction");
try
{
#if DESKTOP
return client.CreateFunction(request);
#elif CORECLR
return client.CreateFunctionAsync(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 Architecture { get; set; }
public System.String Code_ImageUri { get; set; }
public System.String Code_S3Bucket { get; set; }
public System.String Code_S3Key { get; set; }
public System.String Code_S3ObjectVersion { get; set; }
public byte[] Code_ZipFile { get; set; }
public System.String CodeSigningConfigArn { get; set; }
public System.String DeadLetterConfig_TargetArn { get; set; }
public System.String Description { get; set; }
public Dictionary Environment_Variable { get; set; }
public System.Boolean? Environment_IsVariablesSet { get; set; }
public System.Int32? EphemeralStorage_Size { get; set; }
public List FileSystemConfig { get; set; }
public System.String FunctionName { get; set; }
public System.String Handler { get; set; }
public List ImageConfig_Command { get; set; }
public System.Boolean? ImageConfig_IsCommandSet { get; set; }
public List ImageConfig_EntryPoint { get; set; }
public System.Boolean? ImageConfig_IsEntryPointSet { get; set; }
public System.String ImageConfig_WorkingDirectory { get; set; }
public System.String KMSKeyArn { get; set; }
public List Layer { get; set; }
public System.Int32? MemorySize { get; set; }
public Amazon.Lambda.PackageType PackageType { get; set; }
public System.Boolean? PublishVersion { get; set; }
public System.String Role { get; set; }
public Amazon.Lambda.Runtime Runtime { get; set; }
public Amazon.Lambda.SnapStartApplyOn SnapStart_ApplyOn { get; set; }
public Dictionary Tag { get; set; }
public System.Int32? Timeout { get; set; }
public Amazon.Lambda.TracingMode TracingConfig_Mode { get; set; }
public List VpcConfig_SecurityGroupId { get; set; }
public System.Boolean? VpcConfig_IsSecurityGroupIdsSet { get; set; }
public List VpcConfig_SubnetId { get; set; }
public System.Boolean? VpcConfig_IsSubnetIdsSet { get; set; }
public System.Func Select { get; set; } =
(response, cmdlet) => response;
}
}
}