/*******************************************************************************
* 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.SimpleSystemsManagement;
using Amazon.SimpleSystemsManagement.Model;
namespace Amazon.PowerShell.Cmdlets.SSM
{
///
/// Updates an association. You can update the association name and version, the document
/// version, schedule, parameters, and Amazon Simple Storage Service (Amazon S3) output.
/// When you call UpdateAssociation
, the system removes all optional parameters
/// from the request and overwrites the association with null values for those parameters.
/// This is by design. You must specify all optional parameters in the call, even if you
/// are not changing the parameters. This includes the Name
parameter. Before
/// calling this API action, we recommend that you call the DescribeAssociation
/// API operation and make a note of all optional parameters required for your UpdateAssociation
/// call.
///
///
///
/// In order to call this API operation, a user, group, or role must be granted permission
/// to call the DescribeAssociation API operation. If you don't have permission
/// to call DescribeAssociation
, then you receive the following error: An
/// error occurred (AccessDeniedException) when calling the UpdateAssociation operation:
/// User: <user_arn> isn't authorized to perform: ssm:DescribeAssociation on resource:
/// <resource_arn>
/// When you update an association, the association immediately runs against the specified
/// targets. You can add the ApplyOnlyAtCronInterval
parameter to run the
/// association during the next schedule run.
///
///
[Cmdlet("Update", "SSMAssociation", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)]
[OutputType("Amazon.SimpleSystemsManagement.Model.AssociationDescription")]
[AWSCmdlet("Calls the AWS Systems Manager UpdateAssociation API operation.", Operation = new[] {"UpdateAssociation"}, SelectReturnType = typeof(Amazon.SimpleSystemsManagement.Model.UpdateAssociationResponse))]
[AWSCmdletOutput("Amazon.SimpleSystemsManagement.Model.AssociationDescription or Amazon.SimpleSystemsManagement.Model.UpdateAssociationResponse",
"This cmdlet returns an Amazon.SimpleSystemsManagement.Model.AssociationDescription object.",
"The service call response (type Amazon.SimpleSystemsManagement.Model.UpdateAssociationResponse) can also be referenced from properties attached to the cmdlet entry in the $AWSHistory stack."
)]
public partial class UpdateSSMAssociationCmdlet : AmazonSimpleSystemsManagementClientCmdlet, IExecutor
{
protected override bool IsSensitiveRequest { get; set; } = true;
protected override bool IsSensitiveResponse { get; set; } = true;
#region Parameter AlarmConfiguration_Alarm
///
///
/// The name of the CloudWatch alarm specified in the configuration.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("AlarmConfiguration_Alarms")]
public Amazon.SimpleSystemsManagement.Model.Alarm[] AlarmConfiguration_Alarm { get; set; }
#endregion
#region Parameter ApplyOnlyAtCronInterval
///
///
/// By default, when you update an association, the system runs it immediately after it
/// is updated and then according to the schedule you specified. Specify this option if
/// you don't want an association to run immediately after you update it. This parameter
/// isn't supported for rate expressions.If you chose this option when you created an association and later you edit that association
/// or you make changes to the SSM document on which that association is based (by using
/// the Documents page in the console), State Manager applies the association at the next
/// specified cron interval. For example, if you chose the Latest
version
/// of an SSM document when you created an association and you edit the association by
/// choosing a different document version on the Documents page, State Manager applies
/// the association at the next specified cron interval if you previously selected this
/// option. If this option wasn't selected, State Manager immediately runs the association.You can reset this option. To do so, specify the no-apply-only-at-cron-interval
/// parameter when you update the association from the command line. This parameter forces
/// the association to run immediately after updating it and according to the interval
/// specified.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? ApplyOnlyAtCronInterval { get; set; }
#endregion
#region Parameter AssociationId
///
///
/// The ID of the association you want to update.
///
///
#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 AssociationId { get; set; }
#endregion
#region Parameter AssociationName
///
///
/// The name of the association that you want to update.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String AssociationName { get; set; }
#endregion
#region Parameter AssociationVersion
///
///
/// This parameter is provided for concurrency control purposes. You must specify the
/// latest association version in the service. If you want to ensure that this request
/// succeeds, either specify $LATEST
, or omit this parameter.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String AssociationVersion { get; set; }
#endregion
#region Parameter AutomationTargetParameterName
///
///
/// Choose the parameter that will define how your automation will branch out. This target
/// is required for associations that use an Automation runbook and target resources by
/// using rate controls. Automation is a capability of Amazon Web Services Systems Manager.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String AutomationTargetParameterName { get; set; }
#endregion
#region Parameter CalendarName
///
///
/// The names or Amazon Resource Names (ARNs) of the Change Calendar type documents you
/// want to gate your associations under. The associations only run when that change calendar
/// is open. For more information, see Amazon
/// Web Services Systems Manager Change Calendar.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("CalendarNames")]
public System.String[] CalendarName { get; set; }
#endregion
#region Parameter ComplianceSeverity
///
///
/// The severity level to assign to the association.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[AWSConstantClassSource("Amazon.SimpleSystemsManagement.AssociationComplianceSeverity")]
public Amazon.SimpleSystemsManagement.AssociationComplianceSeverity ComplianceSeverity { get; set; }
#endregion
#region Parameter DocumentVersion
///
///
/// The document version you want update for the association. State Manager doesn't support running associations that use a new version of a document
/// if that document is shared from another account. State Manager always runs the default
/// version of a document if shared from another account, even though the Systems Manager
/// console shows that a new version was processed. If you want to run an association
/// using a new version of a document shared form another account, you must set the document
/// version to default
.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String DocumentVersion { get; set; }
#endregion
#region Parameter AlarmConfiguration_IgnorePollAlarmFailure
///
///
/// When this value is true, your automation or command continues to run in cases
/// where we can’t retrieve alarm status information from CloudWatch. In cases where we
/// successfully retrieve an alarm status of OK or INSUFFICIENT_DATA, the automation or
/// command continues to run, regardless of this value. Default is false.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Boolean? AlarmConfiguration_IgnorePollAlarmFailure { get; set; }
#endregion
#region Parameter MaxConcurrency
///
///
/// The maximum number of targets allowed to run the association at the same time. You
/// can specify a number, for example 10, or a percentage of the target set, for example
/// 10%. The default value is 100%, which means all targets run the association at the
/// same time.If a new managed node starts and attempts to run an association while Systems Manager
/// is running MaxConcurrency
associations, the association is allowed to
/// run. During the next association interval, the new managed node will process its association
/// within the limit specified for MaxConcurrency
.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String MaxConcurrency { get; set; }
#endregion
#region Parameter MaxError
///
///
/// The number of errors that are allowed before the system stops sending requests to
/// run the association on additional targets. You can specify either an absolute number
/// of errors, for example 10, or a percentage of the target set, for example 10%. If
/// you specify 3, for example, the system stops sending requests when the fourth error
/// is received. If you specify 0, then the system stops sending requests after the first
/// error is returned. If you run an association on 50 managed nodes and set MaxError
/// to 10%, then the system stops sending the request when the sixth error is received.Executions that are already running an association when MaxErrors
is
/// reached are allowed to complete, but some of these executions may fail as well. If
/// you need to ensure that there won't be more than max-errors failed executions, set
/// MaxConcurrency
to 1 so that executions proceed one at a time.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("MaxErrors")]
public System.String MaxError { get; set; }
#endregion
#region Parameter Name
///
///
/// The name of the SSM Command document or Automation runbook that contains the configuration
/// information for the managed node.You can specify Amazon Web Services-predefined documents, documents you created, or
/// a document that is shared with you from another account.For Systems Manager document (SSM document) that are shared with you from other Amazon
/// Web Services accounts, you must specify the complete SSM document ARN, in the following
/// format:arn:aws:ssm:region:account-id:document/document-name
For example:arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document
For Amazon Web Services-predefined documents and SSM documents you created in your
/// account, you only need to specify the document name. For example, AWS-ApplyPatchBaseline
/// or My-Document
.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String Name { get; set; }
#endregion
#region Parameter S3Location_OutputS3BucketName
///
///
/// The name of the S3 bucket.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("OutputLocation_S3Location_OutputS3BucketName")]
public System.String S3Location_OutputS3BucketName { get; set; }
#endregion
#region Parameter S3Location_OutputS3KeyPrefix
///
///
/// The S3 bucket subfolder.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("OutputLocation_S3Location_OutputS3KeyPrefix")]
public System.String S3Location_OutputS3KeyPrefix { get; set; }
#endregion
#region Parameter S3Location_OutputS3Region
///
///
/// The Amazon Web Services Region of the S3 bucket.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("OutputLocation_S3Location_OutputS3Region")]
public System.String S3Location_OutputS3Region { get; set; }
#endregion
#region Parameter Parameter
///
///
/// The parameters you want to update for the association. If you create a parameter using
/// Parameter Store, a capability of Amazon Web Services Systems Manager, you can reference
/// the parameter using {{ssm:parameter-name}}
.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("Parameters")]
public System.Collections.Hashtable Parameter { get; set; }
#endregion
#region Parameter ScheduleExpression
///
///
/// The cron expression used to schedule the association that you want to update.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.String ScheduleExpression { get; set; }
#endregion
#region Parameter ScheduleOffset
///
///
/// Number of days to wait after the scheduled day to run an association. For example,
/// if you specified a cron schedule of cron(0 0 ? * THU#2 *)
, you could
/// specify an offset of 3 to run the association each Sunday after the second Thursday
/// of the month. For more information about cron schedules for associations, see Reference:
/// Cron and rate expressions for Systems Manager in the Amazon Web Services Systems
/// Manager User Guide. To use offsets, you must specify the ApplyOnlyAtCronInterval
parameter.
/// This option tells the system not to run an association immediately after you create
/// it.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
public System.Int32? ScheduleOffset { get; set; }
#endregion
#region Parameter SyncCompliance
///
///
/// The mode for generating association compliance. You can specify AUTO
/// or MANUAL
. In AUTO
mode, the system uses the status of the
/// association execution to determine the compliance status. If the association execution
/// runs successfully, then the association is COMPLIANT
. If the association
/// execution doesn't run successfully, the association is NON-COMPLIANT
.In MANUAL
mode, you must specify the AssociationId
as a
/// parameter for the PutComplianceItems API operation. In this case, compliance
/// data isn't managed by State Manager, a capability of Amazon Web Services Systems Manager.
/// It is managed by your direct call to the PutComplianceItems API operation.By default, all associations use AUTO
mode.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[AWSConstantClassSource("Amazon.SimpleSystemsManagement.AssociationSyncCompliance")]
public Amazon.SimpleSystemsManagement.AssociationSyncCompliance SyncCompliance { get; set; }
#endregion
#region Parameter TargetLocation
///
///
/// A location is a combination of Amazon Web Services Regions and Amazon Web Services
/// accounts where you want to run the association. Use this action to update an association
/// in multiple Regions and multiple accounts.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("TargetLocations")]
public Amazon.SimpleSystemsManagement.Model.TargetLocation[] TargetLocation { get; set; }
#endregion
#region Parameter TargetMap
///
///
/// A key-value mapping of document parameters to target resources. Both Targets and TargetMaps
/// can't be specified together.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("TargetMaps")]
public System.Collections.Hashtable[] TargetMap { get; set; }
#endregion
#region Parameter Target
///
///
/// The targets of the association.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
[Alias("Targets")]
public Amazon.SimpleSystemsManagement.Model.Target[] Target { get; set; }
#endregion
#region Parameter Select
///
/// Use the -Select parameter to control the cmdlet output. The default value is 'AssociationDescription'.
/// Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.SimpleSystemsManagement.Model.UpdateAssociationResponse).
/// Specifying the name of a property of type Amazon.SimpleSystemsManagement.Model.UpdateAssociationResponse 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; } = "AssociationDescription";
#endregion
#region Parameter PassThru
///
/// Changes the cmdlet behavior to return the value passed to the AssociationId parameter.
/// The -PassThru parameter is deprecated, use -Select '^AssociationId' instead. This parameter will be removed in a future version.
///
[System.Obsolete("The -PassThru parameter is deprecated, use -Select '^AssociationId' 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.AssociationId), MyInvocation.BoundParameters);
if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "Update-SSMAssociation (UpdateAssociation)"))
{
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.AssociationId;
}
#pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute
if (this.AlarmConfiguration_Alarm != null)
{
context.AlarmConfiguration_Alarm = new List(this.AlarmConfiguration_Alarm);
}
context.AlarmConfiguration_IgnorePollAlarmFailure = this.AlarmConfiguration_IgnorePollAlarmFailure;
context.ApplyOnlyAtCronInterval = this.ApplyOnlyAtCronInterval;
context.AssociationId = this.AssociationId;
#if MODULAR
if (this.AssociationId == null && ParameterWasBound(nameof(this.AssociationId)))
{
WriteWarning("You are passing $null as a value for parameter AssociationId 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.AssociationName = this.AssociationName;
context.AssociationVersion = this.AssociationVersion;
context.AutomationTargetParameterName = this.AutomationTargetParameterName;
if (this.CalendarName != null)
{
context.CalendarName = new List(this.CalendarName);
}
context.ComplianceSeverity = this.ComplianceSeverity;
context.DocumentVersion = this.DocumentVersion;
context.MaxConcurrency = this.MaxConcurrency;
context.MaxError = this.MaxError;
context.Name = this.Name;
context.S3Location_OutputS3BucketName = this.S3Location_OutputS3BucketName;
context.S3Location_OutputS3KeyPrefix = this.S3Location_OutputS3KeyPrefix;
context.S3Location_OutputS3Region = this.S3Location_OutputS3Region;
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((System.String)s);
}
context.Parameter.Add((String)hashKey, valueSet);
}
}
context.ScheduleExpression = this.ScheduleExpression;
context.ScheduleOffset = this.ScheduleOffset;
context.SyncCompliance = this.SyncCompliance;
if (this.TargetLocation != null)
{
context.TargetLocation = new List(this.TargetLocation);
}
if (this.TargetMap != null)
{
context.TargetMap = new List>>();
foreach (var hashTable in this.TargetMap)
{
var d = new Dictionary>();
foreach (var hashKey in hashTable.Keys)
{
object hashValue = hashTable[hashKey];
if (hashValue == null)
{
d.Add((String)hashKey, null);
continue;
}
var enumerable = SafeEnumerable(hashValue);
var valueSet = new List();
foreach (var s in enumerable)
{
valueSet.Add((System.String)s);
}
d.Add((String)hashKey, valueSet);
}
context.TargetMap.Add(d);
}
}
if (this.Target != null)
{
context.Target = new List(this.Target);
}
// 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.SimpleSystemsManagement.Model.UpdateAssociationRequest();
// populate AlarmConfiguration
var requestAlarmConfigurationIsNull = true;
request.AlarmConfiguration = new Amazon.SimpleSystemsManagement.Model.AlarmConfiguration();
List requestAlarmConfiguration_alarmConfiguration_Alarm = null;
if (cmdletContext.AlarmConfiguration_Alarm != null)
{
requestAlarmConfiguration_alarmConfiguration_Alarm = cmdletContext.AlarmConfiguration_Alarm;
}
if (requestAlarmConfiguration_alarmConfiguration_Alarm != null)
{
request.AlarmConfiguration.Alarms = requestAlarmConfiguration_alarmConfiguration_Alarm;
requestAlarmConfigurationIsNull = false;
}
System.Boolean? requestAlarmConfiguration_alarmConfiguration_IgnorePollAlarmFailure = null;
if (cmdletContext.AlarmConfiguration_IgnorePollAlarmFailure != null)
{
requestAlarmConfiguration_alarmConfiguration_IgnorePollAlarmFailure = cmdletContext.AlarmConfiguration_IgnorePollAlarmFailure.Value;
}
if (requestAlarmConfiguration_alarmConfiguration_IgnorePollAlarmFailure != null)
{
request.AlarmConfiguration.IgnorePollAlarmFailure = requestAlarmConfiguration_alarmConfiguration_IgnorePollAlarmFailure.Value;
requestAlarmConfigurationIsNull = false;
}
// determine if request.AlarmConfiguration should be set to null
if (requestAlarmConfigurationIsNull)
{
request.AlarmConfiguration = null;
}
if (cmdletContext.ApplyOnlyAtCronInterval != null)
{
request.ApplyOnlyAtCronInterval = cmdletContext.ApplyOnlyAtCronInterval.Value;
}
if (cmdletContext.AssociationId != null)
{
request.AssociationId = cmdletContext.AssociationId;
}
if (cmdletContext.AssociationName != null)
{
request.AssociationName = cmdletContext.AssociationName;
}
if (cmdletContext.AssociationVersion != null)
{
request.AssociationVersion = cmdletContext.AssociationVersion;
}
if (cmdletContext.AutomationTargetParameterName != null)
{
request.AutomationTargetParameterName = cmdletContext.AutomationTargetParameterName;
}
if (cmdletContext.CalendarName != null)
{
request.CalendarNames = cmdletContext.CalendarName;
}
if (cmdletContext.ComplianceSeverity != null)
{
request.ComplianceSeverity = cmdletContext.ComplianceSeverity;
}
if (cmdletContext.DocumentVersion != null)
{
request.DocumentVersion = cmdletContext.DocumentVersion;
}
if (cmdletContext.MaxConcurrency != null)
{
request.MaxConcurrency = cmdletContext.MaxConcurrency;
}
if (cmdletContext.MaxError != null)
{
request.MaxErrors = cmdletContext.MaxError;
}
if (cmdletContext.Name != null)
{
request.Name = cmdletContext.Name;
}
// populate OutputLocation
var requestOutputLocationIsNull = true;
request.OutputLocation = new Amazon.SimpleSystemsManagement.Model.InstanceAssociationOutputLocation();
Amazon.SimpleSystemsManagement.Model.S3OutputLocation requestOutputLocation_outputLocation_S3Location = null;
// populate S3Location
var requestOutputLocation_outputLocation_S3LocationIsNull = true;
requestOutputLocation_outputLocation_S3Location = new Amazon.SimpleSystemsManagement.Model.S3OutputLocation();
System.String requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3BucketName = null;
if (cmdletContext.S3Location_OutputS3BucketName != null)
{
requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3BucketName = cmdletContext.S3Location_OutputS3BucketName;
}
if (requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3BucketName != null)
{
requestOutputLocation_outputLocation_S3Location.OutputS3BucketName = requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3BucketName;
requestOutputLocation_outputLocation_S3LocationIsNull = false;
}
System.String requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3KeyPrefix = null;
if (cmdletContext.S3Location_OutputS3KeyPrefix != null)
{
requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3KeyPrefix = cmdletContext.S3Location_OutputS3KeyPrefix;
}
if (requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3KeyPrefix != null)
{
requestOutputLocation_outputLocation_S3Location.OutputS3KeyPrefix = requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3KeyPrefix;
requestOutputLocation_outputLocation_S3LocationIsNull = false;
}
System.String requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3Region = null;
if (cmdletContext.S3Location_OutputS3Region != null)
{
requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3Region = cmdletContext.S3Location_OutputS3Region;
}
if (requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3Region != null)
{
requestOutputLocation_outputLocation_S3Location.OutputS3Region = requestOutputLocation_outputLocation_S3Location_s3Location_OutputS3Region;
requestOutputLocation_outputLocation_S3LocationIsNull = false;
}
// determine if requestOutputLocation_outputLocation_S3Location should be set to null
if (requestOutputLocation_outputLocation_S3LocationIsNull)
{
requestOutputLocation_outputLocation_S3Location = null;
}
if (requestOutputLocation_outputLocation_S3Location != null)
{
request.OutputLocation.S3Location = requestOutputLocation_outputLocation_S3Location;
requestOutputLocationIsNull = false;
}
// determine if request.OutputLocation should be set to null
if (requestOutputLocationIsNull)
{
request.OutputLocation = null;
}
if (cmdletContext.Parameter != null)
{
request.Parameters = cmdletContext.Parameter;
}
if (cmdletContext.ScheduleExpression != null)
{
request.ScheduleExpression = cmdletContext.ScheduleExpression;
}
if (cmdletContext.ScheduleOffset != null)
{
request.ScheduleOffset = cmdletContext.ScheduleOffset.Value;
}
if (cmdletContext.SyncCompliance != null)
{
request.SyncCompliance = cmdletContext.SyncCompliance;
}
if (cmdletContext.TargetLocation != null)
{
request.TargetLocations = cmdletContext.TargetLocation;
}
if (cmdletContext.TargetMap != null)
{
request.TargetMaps = cmdletContext.TargetMap;
}
if (cmdletContext.Target != null)
{
request.Targets = cmdletContext.Target;
}
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.SimpleSystemsManagement.Model.UpdateAssociationResponse CallAWSServiceOperation(IAmazonSimpleSystemsManagement client, Amazon.SimpleSystemsManagement.Model.UpdateAssociationRequest request)
{
Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Systems Manager", "UpdateAssociation");
try
{
#if DESKTOP
return client.UpdateAssociation(request);
#elif CORECLR
return client.UpdateAssociationAsync(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 AlarmConfiguration_Alarm { get; set; }
public System.Boolean? AlarmConfiguration_IgnorePollAlarmFailure { get; set; }
public System.Boolean? ApplyOnlyAtCronInterval { get; set; }
public System.String AssociationId { get; set; }
public System.String AssociationName { get; set; }
public System.String AssociationVersion { get; set; }
public System.String AutomationTargetParameterName { get; set; }
public List CalendarName { get; set; }
public Amazon.SimpleSystemsManagement.AssociationComplianceSeverity ComplianceSeverity { get; set; }
public System.String DocumentVersion { get; set; }
public System.String MaxConcurrency { get; set; }
public System.String MaxError { get; set; }
public System.String Name { get; set; }
public System.String S3Location_OutputS3BucketName { get; set; }
public System.String S3Location_OutputS3KeyPrefix { get; set; }
public System.String S3Location_OutputS3Region { get; set; }
public Dictionary> Parameter { get; set; }
public System.String ScheduleExpression { get; set; }
public System.Int32? ScheduleOffset { get; set; }
public Amazon.SimpleSystemsManagement.AssociationSyncCompliance SyncCompliance { get; set; }
public List TargetLocation { get; set; }
public List>> TargetMap { get; set; }
public List Target { get; set; }
public System.Func Select { get; set; } =
(response, cmdlet) => response.AssociationDescription;
}
}
}