/******************************************************************************* * 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.Budgets; using Amazon.Budgets.Model; namespace Amazon.PowerShell.Cmdlets.BGT { /// /// Updates a notification. /// [Cmdlet("Update", "BGTNotification", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType("None")] [AWSCmdlet("Calls the AWS Budgets UpdateNotification API operation.", Operation = new[] {"UpdateNotification"}, SelectReturnType = typeof(Amazon.Budgets.Model.UpdateNotificationResponse))] [AWSCmdletOutput("None or Amazon.Budgets.Model.UpdateNotificationResponse", "This cmdlet does not generate any output." + "The service response (type Amazon.Budgets.Model.UpdateNotificationResponse) can be referenced from properties attached to the cmdlet entry in the $AWSHistory stack." )] public partial class UpdateBGTNotificationCmdlet : AmazonBudgetsClientCmdlet, IExecutor { #region Parameter AccountId /// /// /// The accountId that is associated with the budget whose notification you /// want to update. /// /// #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 AccountId { get; set; } #endregion #region Parameter BudgetName /// /// /// The name of the budget whose notification 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 BudgetName { get; set; } #endregion #region Parameter NewNotification_ComparisonOperator /// /// /// The comparison that's used for this notification. /// /// #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] [AWSConstantClassSource("Amazon.Budgets.ComparisonOperator")] public Amazon.Budgets.ComparisonOperator NewNotification_ComparisonOperator { get; set; } #endregion #region Parameter OldNotification_ComparisonOperator /// /// /// The comparison that's used for this notification. /// /// #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] [AWSConstantClassSource("Amazon.Budgets.ComparisonOperator")] public Amazon.Budgets.ComparisonOperator OldNotification_ComparisonOperator { get; set; } #endregion #region Parameter NewNotification_NotificationState /// /// /// Specifies whether this notification is in alarm. If a budget notification is in the /// ALARM state, you passed the set threshold for the budget. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.Budgets.NotificationState")] public Amazon.Budgets.NotificationState NewNotification_NotificationState { get; set; } #endregion #region Parameter OldNotification_NotificationState /// /// /// Specifies whether this notification is in alarm. If a budget notification is in the /// ALARM state, you passed the set threshold for the budget. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.Budgets.NotificationState")] public Amazon.Budgets.NotificationState OldNotification_NotificationState { get; set; } #endregion #region Parameter NewNotification_NotificationType /// /// /// Specifies whether the notification is for how much you have spent (ACTUAL) /// or for how much that you're forecasted to spend (FORECASTED). /// /// #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] [AWSConstantClassSource("Amazon.Budgets.NotificationType")] public Amazon.Budgets.NotificationType NewNotification_NotificationType { get; set; } #endregion #region Parameter OldNotification_NotificationType /// /// /// Specifies whether the notification is for how much you have spent (ACTUAL) /// or for how much that you're forecasted to spend (FORECASTED). /// /// #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] [AWSConstantClassSource("Amazon.Budgets.NotificationType")] public Amazon.Budgets.NotificationType OldNotification_NotificationType { get; set; } #endregion #region Parameter NewNotification_Threshold /// /// /// The threshold that's associated with a notification. Thresholds are always a percentage, /// and many customers find value being alerted between 50% - 200% of the budgeted amount. /// The maximum limit for your threshold is 1,000,000% above the budgeted amount. /// /// #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.Double? NewNotification_Threshold { get; set; } #endregion #region Parameter OldNotification_Threshold /// /// /// The threshold that's associated with a notification. Thresholds are always a percentage, /// and many customers find value being alerted between 50% - 200% of the budgeted amount. /// The maximum limit for your threshold is 1,000,000% above the budgeted amount. /// /// #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.Double? OldNotification_Threshold { get; set; } #endregion #region Parameter NewNotification_ThresholdType /// /// /// The type of threshold for a notification. For ABSOLUTE_VALUE thresholds, /// Amazon Web Services notifies you when you go over or are forecasted to go over your /// total cost threshold. For PERCENTAGE thresholds, Amazon Web Services /// notifies you when you go over or are forecasted to go over a certain percentage of /// your forecasted spend. For example, if you have a budget for 200 dollars and you have /// a PERCENTAGE threshold of 80%, Amazon Web Services notifies you when /// you go over 160 dollars. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.Budgets.ThresholdType")] public Amazon.Budgets.ThresholdType NewNotification_ThresholdType { get; set; } #endregion #region Parameter OldNotification_ThresholdType /// /// /// The type of threshold for a notification. For ABSOLUTE_VALUE thresholds, /// Amazon Web Services notifies you when you go over or are forecasted to go over your /// total cost threshold. For PERCENTAGE thresholds, Amazon Web Services /// notifies you when you go over or are forecasted to go over a certain percentage of /// your forecasted spend. For example, if you have a budget for 200 dollars and you have /// a PERCENTAGE threshold of 80%, Amazon Web Services notifies you when /// you go over 160 dollars. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.Budgets.ThresholdType")] public Amazon.Budgets.ThresholdType OldNotification_ThresholdType { get; set; } #endregion #region Parameter Select /// /// Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. /// Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Budgets.Model.UpdateNotificationResponse). /// 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 BudgetName parameter. /// The -PassThru parameter is deprecated, use -Select '^BudgetName' instead. This parameter will be removed in a future version. /// [System.Obsolete("The -PassThru parameter is deprecated, use -Select '^BudgetName' 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.BudgetName), MyInvocation.BoundParameters); if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "Update-BGTNotification (UpdateNotification)")) { 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.BudgetName; } #pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute context.AccountId = this.AccountId; #if MODULAR if (this.AccountId == null && ParameterWasBound(nameof(this.AccountId))) { WriteWarning("You are passing $null as a value for parameter AccountId 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.BudgetName = this.BudgetName; #if MODULAR if (this.BudgetName == null && ParameterWasBound(nameof(this.BudgetName))) { WriteWarning("You are passing $null as a value for parameter BudgetName 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.NewNotification_ComparisonOperator = this.NewNotification_ComparisonOperator; #if MODULAR if (this.NewNotification_ComparisonOperator == null && ParameterWasBound(nameof(this.NewNotification_ComparisonOperator))) { WriteWarning("You are passing $null as a value for parameter NewNotification_ComparisonOperator 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.NewNotification_NotificationState = this.NewNotification_NotificationState; context.NewNotification_NotificationType = this.NewNotification_NotificationType; #if MODULAR if (this.NewNotification_NotificationType == null && ParameterWasBound(nameof(this.NewNotification_NotificationType))) { WriteWarning("You are passing $null as a value for parameter NewNotification_NotificationType 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.NewNotification_Threshold = this.NewNotification_Threshold; #if MODULAR if (this.NewNotification_Threshold == null && ParameterWasBound(nameof(this.NewNotification_Threshold))) { WriteWarning("You are passing $null as a value for parameter NewNotification_Threshold 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.NewNotification_ThresholdType = this.NewNotification_ThresholdType; context.OldNotification_ComparisonOperator = this.OldNotification_ComparisonOperator; #if MODULAR if (this.OldNotification_ComparisonOperator == null && ParameterWasBound(nameof(this.OldNotification_ComparisonOperator))) { WriteWarning("You are passing $null as a value for parameter OldNotification_ComparisonOperator 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.OldNotification_NotificationState = this.OldNotification_NotificationState; context.OldNotification_NotificationType = this.OldNotification_NotificationType; #if MODULAR if (this.OldNotification_NotificationType == null && ParameterWasBound(nameof(this.OldNotification_NotificationType))) { WriteWarning("You are passing $null as a value for parameter OldNotification_NotificationType 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.OldNotification_Threshold = this.OldNotification_Threshold; #if MODULAR if (this.OldNotification_Threshold == null && ParameterWasBound(nameof(this.OldNotification_Threshold))) { WriteWarning("You are passing $null as a value for parameter OldNotification_Threshold 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.OldNotification_ThresholdType = this.OldNotification_ThresholdType; // 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.Budgets.Model.UpdateNotificationRequest(); if (cmdletContext.AccountId != null) { request.AccountId = cmdletContext.AccountId; } if (cmdletContext.BudgetName != null) { request.BudgetName = cmdletContext.BudgetName; } // populate NewNotification var requestNewNotificationIsNull = true; request.NewNotification = new Amazon.Budgets.Model.Notification(); Amazon.Budgets.ComparisonOperator requestNewNotification_newNotification_ComparisonOperator = null; if (cmdletContext.NewNotification_ComparisonOperator != null) { requestNewNotification_newNotification_ComparisonOperator = cmdletContext.NewNotification_ComparisonOperator; } if (requestNewNotification_newNotification_ComparisonOperator != null) { request.NewNotification.ComparisonOperator = requestNewNotification_newNotification_ComparisonOperator; requestNewNotificationIsNull = false; } Amazon.Budgets.NotificationState requestNewNotification_newNotification_NotificationState = null; if (cmdletContext.NewNotification_NotificationState != null) { requestNewNotification_newNotification_NotificationState = cmdletContext.NewNotification_NotificationState; } if (requestNewNotification_newNotification_NotificationState != null) { request.NewNotification.NotificationState = requestNewNotification_newNotification_NotificationState; requestNewNotificationIsNull = false; } Amazon.Budgets.NotificationType requestNewNotification_newNotification_NotificationType = null; if (cmdletContext.NewNotification_NotificationType != null) { requestNewNotification_newNotification_NotificationType = cmdletContext.NewNotification_NotificationType; } if (requestNewNotification_newNotification_NotificationType != null) { request.NewNotification.NotificationType = requestNewNotification_newNotification_NotificationType; requestNewNotificationIsNull = false; } System.Double? requestNewNotification_newNotification_Threshold = null; if (cmdletContext.NewNotification_Threshold != null) { requestNewNotification_newNotification_Threshold = cmdletContext.NewNotification_Threshold.Value; } if (requestNewNotification_newNotification_Threshold != null) { request.NewNotification.Threshold = requestNewNotification_newNotification_Threshold.Value; requestNewNotificationIsNull = false; } Amazon.Budgets.ThresholdType requestNewNotification_newNotification_ThresholdType = null; if (cmdletContext.NewNotification_ThresholdType != null) { requestNewNotification_newNotification_ThresholdType = cmdletContext.NewNotification_ThresholdType; } if (requestNewNotification_newNotification_ThresholdType != null) { request.NewNotification.ThresholdType = requestNewNotification_newNotification_ThresholdType; requestNewNotificationIsNull = false; } // determine if request.NewNotification should be set to null if (requestNewNotificationIsNull) { request.NewNotification = null; } // populate OldNotification var requestOldNotificationIsNull = true; request.OldNotification = new Amazon.Budgets.Model.Notification(); Amazon.Budgets.ComparisonOperator requestOldNotification_oldNotification_ComparisonOperator = null; if (cmdletContext.OldNotification_ComparisonOperator != null) { requestOldNotification_oldNotification_ComparisonOperator = cmdletContext.OldNotification_ComparisonOperator; } if (requestOldNotification_oldNotification_ComparisonOperator != null) { request.OldNotification.ComparisonOperator = requestOldNotification_oldNotification_ComparisonOperator; requestOldNotificationIsNull = false; } Amazon.Budgets.NotificationState requestOldNotification_oldNotification_NotificationState = null; if (cmdletContext.OldNotification_NotificationState != null) { requestOldNotification_oldNotification_NotificationState = cmdletContext.OldNotification_NotificationState; } if (requestOldNotification_oldNotification_NotificationState != null) { request.OldNotification.NotificationState = requestOldNotification_oldNotification_NotificationState; requestOldNotificationIsNull = false; } Amazon.Budgets.NotificationType requestOldNotification_oldNotification_NotificationType = null; if (cmdletContext.OldNotification_NotificationType != null) { requestOldNotification_oldNotification_NotificationType = cmdletContext.OldNotification_NotificationType; } if (requestOldNotification_oldNotification_NotificationType != null) { request.OldNotification.NotificationType = requestOldNotification_oldNotification_NotificationType; requestOldNotificationIsNull = false; } System.Double? requestOldNotification_oldNotification_Threshold = null; if (cmdletContext.OldNotification_Threshold != null) { requestOldNotification_oldNotification_Threshold = cmdletContext.OldNotification_Threshold.Value; } if (requestOldNotification_oldNotification_Threshold != null) { request.OldNotification.Threshold = requestOldNotification_oldNotification_Threshold.Value; requestOldNotificationIsNull = false; } Amazon.Budgets.ThresholdType requestOldNotification_oldNotification_ThresholdType = null; if (cmdletContext.OldNotification_ThresholdType != null) { requestOldNotification_oldNotification_ThresholdType = cmdletContext.OldNotification_ThresholdType; } if (requestOldNotification_oldNotification_ThresholdType != null) { request.OldNotification.ThresholdType = requestOldNotification_oldNotification_ThresholdType; requestOldNotificationIsNull = false; } // determine if request.OldNotification should be set to null if (requestOldNotificationIsNull) { request.OldNotification = 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; } public ExecutorContext CreateContext() { return new CmdletContext(); } #endregion #region AWS Service Operation Call private Amazon.Budgets.Model.UpdateNotificationResponse CallAWSServiceOperation(IAmazonBudgets client, Amazon.Budgets.Model.UpdateNotificationRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Budgets", "UpdateNotification"); try { #if DESKTOP return client.UpdateNotification(request); #elif CORECLR return client.UpdateNotificationAsync(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 BudgetName { get; set; } public Amazon.Budgets.ComparisonOperator NewNotification_ComparisonOperator { get; set; } public Amazon.Budgets.NotificationState NewNotification_NotificationState { get; set; } public Amazon.Budgets.NotificationType NewNotification_NotificationType { get; set; } public System.Double? NewNotification_Threshold { get; set; } public Amazon.Budgets.ThresholdType NewNotification_ThresholdType { get; set; } public Amazon.Budgets.ComparisonOperator OldNotification_ComparisonOperator { get; set; } public Amazon.Budgets.NotificationState OldNotification_NotificationState { get; set; } public Amazon.Budgets.NotificationType OldNotification_NotificationType { get; set; } public System.Double? OldNotification_Threshold { get; set; } public Amazon.Budgets.ThresholdType OldNotification_ThresholdType { get; set; } public System.Func Select { get; set; } = (response, cmdlet) => null; } } }