/*******************************************************************************
* 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.Mgn;
using Amazon.Mgn.Model;
namespace Amazon.PowerShell.Cmdlets.MGN
{
///
/// Put source server post migration custom action.
///
[Cmdlet("Write", "MGNSourceServerAction", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)]
[OutputType("Amazon.Mgn.Model.PutSourceServerActionResponse")]
[AWSCmdlet("Calls the Application Migration Service PutSourceServerAction API operation.", Operation = new[] {"PutSourceServerAction"}, SelectReturnType = typeof(Amazon.Mgn.Model.PutSourceServerActionResponse))]
[AWSCmdletOutput("Amazon.Mgn.Model.PutSourceServerActionResponse",
"This cmdlet returns an Amazon.Mgn.Model.PutSourceServerActionResponse object containing multiple properties. The object can also be referenced from properties attached to the cmdlet entry in the $AWSHistory stack."
)]
public partial class WriteMGNSourceServerActionCmdlet : AmazonMgnClientCmdlet, IExecutor
{
#region Parameter AccountID
///
///
/// Source server post migration custom account ID.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String AccountID { get; set; }
#endregion
#region Parameter ActionID
///
///
/// Source server post migration custom action ID.
///
///
#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 ActionID { get; set; }
#endregion
#region Parameter ActionName
///
///
/// Source server post migration custom action name.
///
///
#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 ActionName { get; set; }
#endregion
#region Parameter Active
///
///
/// Source server post migration custom action active status.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? Active { get; set; }
#endregion
#region Parameter Category
///
///
/// Source server post migration custom action category.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[AWSConstantClassSource("Amazon.Mgn.ActionCategory")]
public Amazon.Mgn.ActionCategory Category { get; set; }
#endregion
#region Parameter Description
///
///
/// Source server post migration custom action description.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String Description { get; set; }
#endregion
#region Parameter DocumentIdentifier
///
///
/// Source server post migration custom action document identifier.
///
///
#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 DocumentIdentifier { get; set; }
#endregion
#region Parameter DocumentVersion
///
///
/// Source server post migration custom action document version.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String DocumentVersion { get; set; }
#endregion
#region Parameter ExternalParameter
///
///
/// Source server post migration custom action external parameters.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("ExternalParameters")]
public System.Collections.Hashtable ExternalParameter { get; set; }
#endregion
#region Parameter MustSucceedForCutover
///
///
/// Source server post migration custom action must succeed for cutover.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? MustSucceedForCutover { get; set; }
#endregion
#region Parameter Order
///
///
/// Source server post migration custom action order.
///
///
#if !MODULAR
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
#else
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true, Mandatory = true)]
[System.Management.Automation.AllowNull]
#endif
[Amazon.PowerShell.Common.AWSRequiredParameter]
public System.Int32? Order { get; set; }
#endregion
#region Parameter Parameter
///
///
/// Source server post migration custom action parameters.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("Parameters")]
public System.Collections.Hashtable Parameter { get; set; }
#endregion
#region Parameter SourceServerID
///
///
/// Source server ID.
///
///
#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 SourceServerID { get; set; }
#endregion
#region Parameter TimeoutSecond
///
///
/// Source server post migration custom action timeout in seconds.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("TimeoutSeconds")]
public System.Int32? TimeoutSecond { 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.Mgn.Model.PutSourceServerActionResponse).
/// Specifying the name of a property of type Amazon.Mgn.Model.PutSourceServerActionResponse 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 ActionID parameter.
/// The -PassThru parameter is deprecated, use -Select '^ActionID' instead. This parameter will be removed in a future version.
///
[System.Obsolete("The -PassThru parameter is deprecated, use -Select '^ActionID' 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.ActionName), MyInvocation.BoundParameters);
if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "Write-MGNSourceServerAction (PutSourceServerAction)"))
{
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.ActionID;
}
#pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute
context.AccountID = this.AccountID;
context.ActionID = this.ActionID;
#if MODULAR
if (this.ActionID == null && ParameterWasBound(nameof(this.ActionID)))
{
WriteWarning("You are passing $null as a value for parameter ActionID 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.ActionName = this.ActionName;
#if MODULAR
if (this.ActionName == null && ParameterWasBound(nameof(this.ActionName)))
{
WriteWarning("You are passing $null as a value for parameter ActionName 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.Active = this.Active;
context.Category = this.Category;
context.Description = this.Description;
context.DocumentIdentifier = this.DocumentIdentifier;
#if MODULAR
if (this.DocumentIdentifier == null && ParameterWasBound(nameof(this.DocumentIdentifier)))
{
WriteWarning("You are passing $null as a value for parameter DocumentIdentifier 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.DocumentVersion = this.DocumentVersion;
if (this.ExternalParameter != null)
{
context.ExternalParameter = new Dictionary(StringComparer.Ordinal);
foreach (var hashKey in this.ExternalParameter.Keys)
{
context.ExternalParameter.Add((String)hashKey, (SsmExternalParameter)(this.ExternalParameter[hashKey]));
}
}
context.MustSucceedForCutover = this.MustSucceedForCutover;
context.Order = this.Order;
#if MODULAR
if (this.Order == null && ParameterWasBound(nameof(this.Order)))
{
WriteWarning("You are passing $null as a value for parameter Order 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.Parameter != null)
{
context.Parameter = new Dictionary>(StringComparer.Ordinal);
foreach (var hashKey in this.Parameter.Keys)
{
object hashValue = this.Parameter[hashKey];
if (hashValue == null)
{
context.Parameter.Add((String)hashKey, null);
continue;
}
var enumerable = SafeEnumerable(hashValue);
var valueSet = new List();
foreach (var s in enumerable)
{
valueSet.Add((Amazon.Mgn.Model.SsmParameterStoreParameter)s);
}
context.Parameter.Add((String)hashKey, valueSet);
}
}
context.SourceServerID = this.SourceServerID;
#if MODULAR
if (this.SourceServerID == null && ParameterWasBound(nameof(this.SourceServerID)))
{
WriteWarning("You are passing $null as a value for parameter SourceServerID 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.TimeoutSecond = this.TimeoutSecond;
// 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.Mgn.Model.PutSourceServerActionRequest();
if (cmdletContext.AccountID != null)
{
request.AccountID = cmdletContext.AccountID;
}
if (cmdletContext.ActionID != null)
{
request.ActionID = cmdletContext.ActionID;
}
if (cmdletContext.ActionName != null)
{
request.ActionName = cmdletContext.ActionName;
}
if (cmdletContext.Active != null)
{
request.Active = cmdletContext.Active.Value;
}
if (cmdletContext.Category != null)
{
request.Category = cmdletContext.Category;
}
if (cmdletContext.Description != null)
{
request.Description = cmdletContext.Description;
}
if (cmdletContext.DocumentIdentifier != null)
{
request.DocumentIdentifier = cmdletContext.DocumentIdentifier;
}
if (cmdletContext.DocumentVersion != null)
{
request.DocumentVersion = cmdletContext.DocumentVersion;
}
if (cmdletContext.ExternalParameter != null)
{
request.ExternalParameters = cmdletContext.ExternalParameter;
}
if (cmdletContext.MustSucceedForCutover != null)
{
request.MustSucceedForCutover = cmdletContext.MustSucceedForCutover.Value;
}
if (cmdletContext.Order != null)
{
request.Order = cmdletContext.Order.Value;
}
if (cmdletContext.Parameter != null)
{
request.Parameters = cmdletContext.Parameter;
}
if (cmdletContext.SourceServerID != null)
{
request.SourceServerID = cmdletContext.SourceServerID;
}
if (cmdletContext.TimeoutSecond != null)
{
request.TimeoutSeconds = cmdletContext.TimeoutSecond.Value;
}
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.Mgn.Model.PutSourceServerActionResponse CallAWSServiceOperation(IAmazonMgn client, Amazon.Mgn.Model.PutSourceServerActionRequest request)
{
Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Application Migration Service", "PutSourceServerAction");
try
{
#if DESKTOP
return client.PutSourceServerAction(request);
#elif CORECLR
return client.PutSourceServerActionAsync(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 System.String AccountID { get; set; }
public System.String ActionID { get; set; }
public System.String ActionName { get; set; }
public System.Boolean? Active { get; set; }
public Amazon.Mgn.ActionCategory Category { get; set; }
public System.String Description { get; set; }
public System.String DocumentIdentifier { get; set; }
public System.String DocumentVersion { get; set; }
public Dictionary ExternalParameter { get; set; }
public System.Boolean? MustSucceedForCutover { get; set; }
public System.Int32? Order { get; set; }
public Dictionary> Parameter { get; set; }
public System.String SourceServerID { get; set; }
public System.Int32? TimeoutSecond { get; set; }
public System.Func Select { get; set; } =
(response, cmdlet) => response;
}
}
}