/******************************************************************************* * 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 { /// /// Creates a patch baseline. /// /// /// For information about valid key-value pairs in PatchFilters for each /// supported operating system type, see PatchFilter. /// /// [Cmdlet("New", "SSMPatchBaseline", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType("System.String")] [AWSCmdlet("Calls the AWS Systems Manager CreatePatchBaseline API operation.", Operation = new[] {"CreatePatchBaseline"}, SelectReturnType = typeof(Amazon.SimpleSystemsManagement.Model.CreatePatchBaselineResponse))] [AWSCmdletOutput("System.String or Amazon.SimpleSystemsManagement.Model.CreatePatchBaselineResponse", "This cmdlet returns a System.String object.", "The service call response (type Amazon.SimpleSystemsManagement.Model.CreatePatchBaselineResponse) can also be referenced from properties attached to the cmdlet entry in the $AWSHistory stack." )] public partial class NewSSMPatchBaselineCmdlet : AmazonSimpleSystemsManagementClientCmdlet, IExecutor { protected override bool IsSensitiveRequest { get; set; } = true; #region Parameter ApprovedPatch /// /// /// A list of explicitly approved patches for the baseline.For information about accepted formats for lists of approved patches and rejected /// patches, see About /// package name formats for approved and rejected patch lists in the Amazon Web /// Services Systems Manager User Guide. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("ApprovedPatches")] public System.String[] ApprovedPatch { get; set; } #endregion #region Parameter ApprovedPatchesComplianceLevel /// /// /// Defines the compliance level for approved patches. When an approved patch is reported /// as missing, this value describes the severity of the compliance violation. The default /// value is UNSPECIFIED. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.SimpleSystemsManagement.PatchComplianceLevel")] public Amazon.SimpleSystemsManagement.PatchComplianceLevel ApprovedPatchesComplianceLevel { get; set; } #endregion #region Parameter ApprovedPatchesEnableNonSecurity /// /// /// Indicates whether the list of approved patches includes non-security updates that /// should be applied to the managed nodes. The default value is false. Applies /// to Linux managed nodes only. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Boolean? ApprovedPatchesEnableNonSecurity { get; set; } #endregion #region Parameter Description /// /// /// A description of the patch baseline. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String Description { get; set; } #endregion #region Parameter Name /// /// /// The name of the patch baseline. /// /// #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 Name { get; set; } #endregion #region Parameter OperatingSystem /// /// /// Defines the operating system the patch baseline applies to. The default value is WINDOWS. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.SimpleSystemsManagement.OperatingSystem")] public Amazon.SimpleSystemsManagement.OperatingSystem OperatingSystem { get; set; } #endregion #region Parameter GlobalFilters_PatchFilter /// /// /// The set of patch filters that make up the group. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("GlobalFilters_PatchFilters")] public Amazon.SimpleSystemsManagement.Model.PatchFilter[] GlobalFilters_PatchFilter { get; set; } #endregion #region Parameter ApprovalRules_PatchRule /// /// /// The rules that make up the rule group. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("ApprovalRules_PatchRules")] public Amazon.SimpleSystemsManagement.Model.PatchRule[] ApprovalRules_PatchRule { get; set; } #endregion #region Parameter RejectedPatch /// /// /// A list of explicitly rejected patches for the baseline.For information about accepted formats for lists of approved patches and rejected /// patches, see About /// package name formats for approved and rejected patch lists in the Amazon Web /// Services Systems Manager User Guide. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("RejectedPatches")] public System.String[] RejectedPatch { get; set; } #endregion #region Parameter RejectedPatchesAction /// /// /// The action for Patch Manager to take on patches included in the RejectedPackages /// list. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.SimpleSystemsManagement.PatchAction")] public Amazon.SimpleSystemsManagement.PatchAction RejectedPatchesAction { get; set; } #endregion #region Parameter Source /// /// /// Information about the patches to use to update the managed nodes, including target /// operating systems and source repositories. Applies to Linux managed nodes only. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("Sources")] public Amazon.SimpleSystemsManagement.Model.PatchSource[] Source { get; set; } #endregion #region Parameter Tag /// /// /// Optional metadata that you assign to a resource. Tags enable you to categorize a resource /// in different ways, such as by purpose, owner, or environment. For example, you might /// want to tag a patch baseline to identify the severity level of patches it specifies /// and the operating system family it applies to. In this case, you could specify the /// following key-value pairs:To add tags to an existing patch baseline, use the AddTagsToResource operation. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("Tags")] public Amazon.SimpleSystemsManagement.Model.Tag[] Tag { get; set; } #endregion #region Parameter ClientToken /// /// /// User-provided idempotency token. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String ClientToken { get; set; } #endregion #region Parameter Select /// /// Use the -Select parameter to control the cmdlet output. The default value is 'BaselineId'. /// Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.SimpleSystemsManagement.Model.CreatePatchBaselineResponse). /// Specifying the name of a property of type Amazon.SimpleSystemsManagement.Model.CreatePatchBaselineResponse 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; } = "BaselineId"; #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.Name), MyInvocation.BoundParameters); if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "New-SSMPatchBaseline (CreatePatchBaseline)")) { return; } var context = new CmdletContext(); // allow for manipulation of parameters prior to loading into context PreExecutionContextLoad(context); if (ParameterWasBound(nameof(this.Select))) { context.Select = CreateSelectDelegate(Select) ?? throw new System.ArgumentException("Invalid value for -Select parameter.", nameof(this.Select)); } if (this.ApprovalRules_PatchRule != null) { context.ApprovalRules_PatchRule = new List(this.ApprovalRules_PatchRule); } if (this.ApprovedPatch != null) { context.ApprovedPatch = new List(this.ApprovedPatch); } context.ApprovedPatchesComplianceLevel = this.ApprovedPatchesComplianceLevel; context.ApprovedPatchesEnableNonSecurity = this.ApprovedPatchesEnableNonSecurity; context.ClientToken = this.ClientToken; context.Description = this.Description; if (this.GlobalFilters_PatchFilter != null) { context.GlobalFilters_PatchFilter = new List(this.GlobalFilters_PatchFilter); } context.Name = this.Name; #if MODULAR if (this.Name == null && ParameterWasBound(nameof(this.Name))) { WriteWarning("You are passing $null as a value for parameter Name 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.OperatingSystem = this.OperatingSystem; if (this.RejectedPatch != null) { context.RejectedPatch = new List(this.RejectedPatch); } context.RejectedPatchesAction = this.RejectedPatchesAction; if (this.Source != null) { context.Source = new List(this.Source); } if (this.Tag != null) { context.Tag = new List(this.Tag); } // 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.CreatePatchBaselineRequest(); // populate ApprovalRules var requestApprovalRulesIsNull = true; request.ApprovalRules = new Amazon.SimpleSystemsManagement.Model.PatchRuleGroup(); List requestApprovalRules_approvalRules_PatchRule = null; if (cmdletContext.ApprovalRules_PatchRule != null) { requestApprovalRules_approvalRules_PatchRule = cmdletContext.ApprovalRules_PatchRule; } if (requestApprovalRules_approvalRules_PatchRule != null) { request.ApprovalRules.PatchRules = requestApprovalRules_approvalRules_PatchRule; requestApprovalRulesIsNull = false; } // determine if request.ApprovalRules should be set to null if (requestApprovalRulesIsNull) { request.ApprovalRules = null; } if (cmdletContext.ApprovedPatch != null) { request.ApprovedPatches = cmdletContext.ApprovedPatch; } if (cmdletContext.ApprovedPatchesComplianceLevel != null) { request.ApprovedPatchesComplianceLevel = cmdletContext.ApprovedPatchesComplianceLevel; } if (cmdletContext.ApprovedPatchesEnableNonSecurity != null) { request.ApprovedPatchesEnableNonSecurity = cmdletContext.ApprovedPatchesEnableNonSecurity.Value; } if (cmdletContext.ClientToken != null) { request.ClientToken = cmdletContext.ClientToken; } if (cmdletContext.Description != null) { request.Description = cmdletContext.Description; } // populate GlobalFilters var requestGlobalFiltersIsNull = true; request.GlobalFilters = new Amazon.SimpleSystemsManagement.Model.PatchFilterGroup(); List requestGlobalFilters_globalFilters_PatchFilter = null; if (cmdletContext.GlobalFilters_PatchFilter != null) { requestGlobalFilters_globalFilters_PatchFilter = cmdletContext.GlobalFilters_PatchFilter; } if (requestGlobalFilters_globalFilters_PatchFilter != null) { request.GlobalFilters.PatchFilters = requestGlobalFilters_globalFilters_PatchFilter; requestGlobalFiltersIsNull = false; } // determine if request.GlobalFilters should be set to null if (requestGlobalFiltersIsNull) { request.GlobalFilters = null; } if (cmdletContext.Name != null) { request.Name = cmdletContext.Name; } if (cmdletContext.OperatingSystem != null) { request.OperatingSystem = cmdletContext.OperatingSystem; } if (cmdletContext.RejectedPatch != null) { request.RejectedPatches = cmdletContext.RejectedPatch; } if (cmdletContext.RejectedPatchesAction != null) { request.RejectedPatchesAction = cmdletContext.RejectedPatchesAction; } if (cmdletContext.Source != null) { request.Sources = cmdletContext.Source; } if (cmdletContext.Tag != null) { request.Tags = cmdletContext.Tag; } 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.CreatePatchBaselineResponse CallAWSServiceOperation(IAmazonSimpleSystemsManagement client, Amazon.SimpleSystemsManagement.Model.CreatePatchBaselineRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Systems Manager", "CreatePatchBaseline"); try { #if DESKTOP return client.CreatePatchBaseline(request); #elif CORECLR return client.CreatePatchBaselineAsync(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 ApprovalRules_PatchRule { get; set; } public List ApprovedPatch { get; set; } public Amazon.SimpleSystemsManagement.PatchComplianceLevel ApprovedPatchesComplianceLevel { get; set; } public System.Boolean? ApprovedPatchesEnableNonSecurity { get; set; } public System.String ClientToken { get; set; } public System.String Description { get; set; } public List GlobalFilters_PatchFilter { get; set; } public System.String Name { get; set; } public Amazon.SimpleSystemsManagement.OperatingSystem OperatingSystem { get; set; } public List RejectedPatch { get; set; } public Amazon.SimpleSystemsManagement.PatchAction RejectedPatchesAction { get; set; } public List Source { get; set; } public List Tag { get; set; } public System.Func Select { get; set; } = (response, cmdlet) => response.BaselineId; } } }