/******************************************************************************* * 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.Route53; using Amazon.Route53.Model; namespace Amazon.PowerShell.Cmdlets.R53 { /// /// Creates a new health check. /// /// /// /// For information about adding health checks to resource record sets, see HealthCheckId /// in ChangeResourceRecordSets. /// /// ELB Load Balancers /// If you're registering EC2 instances with an Elastic Load Balancing (ELB) load balancer, /// do not create Amazon Route 53 health checks for the EC2 instances. When you register /// an EC2 instance with a load balancer, you configure settings for an ELB health check, /// which performs a similar function to a Route 53 health check. /// Private Hosted Zones /// You can associate health checks with failover resource record sets in a private hosted /// zone. Note the following: /// /// [Cmdlet("New", "R53HealthCheck")] [OutputType("Amazon.Route53.Model.CreateHealthCheckResponse")] [AWSCmdlet("Calls the Amazon Route 53 CreateHealthCheck API operation.", Operation = new[] {"CreateHealthCheck"}, SelectReturnType = typeof(Amazon.Route53.Model.CreateHealthCheckResponse))] [AWSCmdletOutput("Amazon.Route53.Model.CreateHealthCheckResponse", "This cmdlet returns an Amazon.Route53.Model.CreateHealthCheckResponse object containing multiple properties. The object can also be referenced from properties attached to the cmdlet entry in the $AWSHistory stack." )] public partial class NewR53HealthCheckCmdlet : AmazonRoute53ClientCmdlet, IExecutor { #region Parameter CallerReference /// /// /// A unique string that identifies the request and that allows you to retry a failed /// CreateHealthCheck request without the risk of creating two identical /// health checks: /// /// #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 CallerReference { get; set; } #endregion #region Parameter HealthCheckConfig_ChildHealthCheck /// /// /// (CALCULATED Health Checks Only) A complex type that contains one ChildHealthCheck /// element for each health check that you want to associate with a CALCULATED /// health check. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("HealthCheckConfig_ChildHealthChecks")] public System.String[] HealthCheckConfig_ChildHealthCheck { get; set; } #endregion #region Parameter HealthCheckConfig_Disabled /// /// /// Stops Route 53 from performing health checks. When you disable a health check, here's /// what happens:After you disable a health check, Route 53 considers the status of the health check /// to always be healthy. If you configured DNS failover, Route 53 continues to route /// traffic to the corresponding resources. If you want to stop routing traffic to a resource, /// change the value of Inverted. /// Charges for a health check still apply when the health check is disabled. For more /// information, see Amazon Route 53 /// Pricing. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Boolean? HealthCheckConfig_Disabled { get; set; } #endregion #region Parameter HealthCheckConfig_EnableSNI /// /// /// Specify whether you want Amazon Route 53 to send the value of FullyQualifiedDomainName /// to the endpoint in the client_hello message during TLS negotiation. This /// allows the endpoint to respond to HTTPS health check requests with the /// applicable SSL/TLS certificate.Some endpoints require that HTTPS requests include the host name in the /// client_hello message. If you don't enable SNI, the status of the health /// check will be SSL alert handshake_failure. A health check can also have /// that status for other reasons. If SNI is enabled and you're still getting the error, /// check the SSL/TLS configuration on your endpoint and confirm that your certificate /// is valid.The SSL/TLS certificate on your endpoint includes a domain name in the Common /// Name field and possibly several more in the Subject Alternative Names /// field. One of the domain names in the certificate should match the value that you /// specify for FullyQualifiedDomainName. If the endpoint responds to the /// client_hello message with a certificate that does not include the domain /// name that you specified in FullyQualifiedDomainName, a health checker /// will retry the handshake. In the second attempt, the health checker will omit FullyQualifiedDomainName /// from the client_hello message. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Boolean? HealthCheckConfig_EnableSNI { get; set; } #endregion #region Parameter HealthCheckConfig_FailureThreshold /// /// /// The number of consecutive health checks that an endpoint must pass or fail for Amazon /// Route 53 to change the current status of the endpoint from unhealthy to healthy or /// vice versa. For more information, see How /// Amazon Route 53 Determines Whether an Endpoint Is Healthy in the Amazon Route /// 53 Developer Guide.If you don't specify a value for FailureThreshold, the default value /// is three health checks. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Int32? HealthCheckConfig_FailureThreshold { get; set; } #endregion #region Parameter HealthCheckConfig_FullyQualifiedDomainName /// /// /// Amazon Route 53 behavior depends on whether you specify a value for IPAddress.If you specify a value forIPAddress:Amazon Route 53 sends health check requests to the specified IPv4 or IPv6 address /// and passes the value of FullyQualifiedDomainName in the Host /// header for all health checks except TCP health checks. This is typically the fully /// qualified DNS name of the endpoint on which you want Route 53 to perform health checks.When Route 53 checks the health of an endpoint, here is how it constructs the Host /// header:If you don't specify a value for FullyQualifiedDomainName, Route 53 substitutes /// the value of IPAddress in the Host header in each of the /// preceding cases.If you don't specify a value forIPAddress:Route 53 sends a DNS request to the domain that you specify for FullyQualifiedDomainName /// at the interval that you specify for RequestInterval. Using an IPv4 address /// that DNS returns, Route 53 then checks the health of the endpoint.If you don't specify a value for IPAddress, Route 53 uses only IPv4 to /// send health checks to the endpoint. If there's no resource record set with a type /// of A for the name that you specify for FullyQualifiedDomainName, the /// health check fails with a "DNS resolution failed" error.If you want to check the health of weighted, latency, or failover resource record /// sets and you choose to specify the endpoint only by FullyQualifiedDomainName, /// we recommend that you create a separate health check for each endpoint. For example, /// create a health check for each HTTP server that is serving content for www.example.com. /// For the value of FullyQualifiedDomainName, specify the domain name of /// the server (such as us-east-2-www.example.com), not the name of the resource record /// sets (www.example.com).In this configuration, if you create a health check for which the value of FullyQualifiedDomainName /// matches the name of the resource record sets and you then associate the health check /// with those resource record sets, health check results will be unpredictable.In addition, if the value that you specify for Type is HTTP, /// HTTPS, HTTP_STR_MATCH, or HTTPS_STR_MATCH, /// Route 53 passes the value of FullyQualifiedDomainName in the Host /// header, as it does when you specify a value for IPAddress. If the value /// of Type is TCP, Route 53 doesn't pass a Host /// header. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String HealthCheckConfig_FullyQualifiedDomainName { get; set; } #endregion #region Parameter HealthCheckConfig_HealthThreshold /// /// /// The number of child health checks that are associated with a CALCULATED /// health check that Amazon Route 53 must consider healthy for the CALCULATED /// health check to be considered healthy. To specify the child health checks that you /// want to associate with a CALCULATED health check, use the ChildHealthChecks /// element.Note the following: /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Int32? HealthCheckConfig_HealthThreshold { get; set; } #endregion #region Parameter HealthCheckConfig_InsufficientDataHealthStatus /// /// /// When CloudWatch has insufficient data about the metric to determine the alarm state, /// the status that you want Amazon Route 53 to assign to the health check: /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [AWSConstantClassSource("Amazon.Route53.InsufficientDataHealthStatus")] public Amazon.Route53.InsufficientDataHealthStatus HealthCheckConfig_InsufficientDataHealthStatus { get; set; } #endregion #region Parameter HealthCheckConfig_Inverted /// /// /// Specify whether you want Amazon Route 53 to invert the status of a health check, for /// example, to consider a health check unhealthy when it otherwise would be considered /// healthy. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Boolean? HealthCheckConfig_Inverted { get; set; } #endregion #region Parameter HealthCheckConfig_IPAddress /// /// /// The IPv4 or IPv6 IP address of the endpoint that you want Amazon Route 53 to perform /// health checks on. If you don't specify a value for IPAddress, Route 53 /// sends a DNS request to resolve the domain name that you specify in FullyQualifiedDomainName /// at the interval that you specify in RequestInterval. Using an IP address /// returned by DNS, Route 53 then checks the health of the endpoint.Use one of the following formats for the value of IPAddress: If the endpoint is an EC2 instance, we recommend that you create an Elastic IP address, /// associate it with your EC2 instance, and specify the Elastic IP address for IPAddress. /// This ensures that the IP address of your instance will never change.For more information, see FullyQualifiedDomainName. /// Constraints: Route 53 can't check the health of endpoints for which the IP address /// is in local, private, non-routable, or multicast ranges. For more information about /// IP addresses for which you can't create health checks, see the following documents:When the value of Type is CALCULATED or CLOUDWATCH_METRIC, /// omit IPAddress. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String HealthCheckConfig_IPAddress { get; set; } #endregion #region Parameter HealthCheckConfig_MeasureLatency /// /// /// Specify whether you want Amazon Route 53 to measure the latency between health checkers /// in multiple Amazon Web Services regions and your endpoint, and to display CloudWatch /// latency graphs on the Health Checks page in the Route 53 console.You can't change the value of MeasureLatency after you create a health /// check. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Boolean? HealthCheckConfig_MeasureLatency { get; set; } #endregion #region Parameter AlarmIdentifier_Name /// /// /// The name of the CloudWatch alarm that you want Amazon Route 53 health checkers to /// use to determine whether this health check is healthy.Route 53 supports CloudWatch alarms with the following features:
  • Standard-resolution metrics. High-resolution metrics aren't supported. For more information, /// see High-Resolution /// Metrics in the Amazon CloudWatch User Guide.
  • Statistics: Average, Minimum, Maximum, Sum, and SampleCount. Extended statistics aren't /// supported.
///
///
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("HealthCheckConfig_AlarmIdentifier_Name")] public System.String AlarmIdentifier_Name { get; set; } #endregion #region Parameter HealthCheckConfig_Port /// /// /// The port on the endpoint that you want Amazon Route 53 to perform health checks on.Don't specify a value for Port when you specify a value for Type /// of CLOUDWATCH_METRIC or CALCULATED. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Int32? HealthCheckConfig_Port { get; set; } #endregion #region Parameter AlarmIdentifier_Region /// /// /// For the CloudWatch alarm that you want Route 53 health checkers to use to determine /// whether this health check is healthy, the region that the alarm was created in.For the current list of CloudWatch regions, see Amazon /// CloudWatch endpoints and quotas in the Amazon Web Services General Reference. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("HealthCheckConfig_AlarmIdentifier_Region")] [AWSConstantClassSource("Amazon.Route53.CloudWatchRegion")] public Amazon.Route53.CloudWatchRegion AlarmIdentifier_Region { get; set; } #endregion #region Parameter HealthCheckConfig_Region /// /// /// A complex type that contains one Region element for each region from /// which you want Amazon Route 53 health checkers to check the specified endpoint.If you don't specify any regions, Route 53 health checkers automatically performs /// checks from all of the regions that are listed under Valid Values.If you update a health check to remove a region that has been performing health checks, /// Route 53 will briefly continue to perform checks from that region to ensure that some /// health checkers are always checking the endpoint (for example, if you replace three /// regions with four different regions). /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("HealthCheckConfig_Regions")] public System.String[] HealthCheckConfig_Region { get; set; } #endregion #region Parameter HealthCheckConfig_RequestInterval /// /// /// The number of seconds between the time that Amazon Route 53 gets a response from your /// endpoint and the time that it sends the next health check request. Each Route 53 health /// checker makes requests at this interval.You can't change the value of RequestInterval after you create a health /// check.If you don't specify a value for RequestInterval, the default value is /// 30 seconds. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.Int32? HealthCheckConfig_RequestInterval { get; set; } #endregion #region Parameter HealthCheckConfig_ResourcePath /// /// /// The path, if any, that you want Amazon Route 53 to request when performing health /// checks. The path can be any value for which your endpoint will return an HTTP status /// code of 2xx or 3xx when the endpoint is healthy, for example, the file /docs/route53-health-check.html. /// You can also include query string parameters, for example, /welcome.html?language=jp&login=y. /// /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String HealthCheckConfig_ResourcePath { get; set; } #endregion #region Parameter HealthCheckConfig_RoutingControlArn /// /// /// The Amazon Resource Name (ARN) for the Route 53 Application Recovery Controller routing /// control.For more information about Route 53 Application Recovery Controller, see Route /// 53 Application Recovery Controller Developer Guide.. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String HealthCheckConfig_RoutingControlArn { get; set; } #endregion #region Parameter HealthCheckConfig_SearchString /// /// /// If the value of Type is HTTP_STR_MATCH or HTTPS_STR_MATCH, /// the string that you want Amazon Route 53 to search for in the response body from the /// specified resource. If the string appears in the response body, Route 53 considers /// the resource healthy.Route 53 considers case when searching for SearchString in the response /// body. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String HealthCheckConfig_SearchString { get; set; } #endregion #region Parameter HealthCheckConfig_Type /// /// /// The type of health check that you want to create, which indicates how Amazon Route /// 53 determines whether an endpoint is healthy.You can't change the value of Type after you create a health check.You can create the following types of health checks:For more information, see How /// Route 53 Determines Whether an Endpoint Is Healthy in the Amazon Route 53 Developer /// Guide. /// /// #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.Route53.HealthCheckType")] public Amazon.Route53.HealthCheckType HealthCheckConfig_Type { 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.Route53.Model.CreateHealthCheckResponse). /// Specifying the name of a property of type Amazon.Route53.Model.CreateHealthCheckResponse 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 CallerReference parameter. /// The -PassThru parameter is deprecated, use -Select '^CallerReference' instead. This parameter will be removed in a future version. /// [System.Obsolete("The -PassThru parameter is deprecated, use -Select '^CallerReference' instead. This parameter will be removed in a future version.")] [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public SwitchParameter PassThru { get; set; } #endregion protected override void ProcessRecord() { this._AWSSignerType = "v4"; base.ProcessRecord(); 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.CallerReference; } #pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute context.CallerReference = this.CallerReference; #if MODULAR if (this.CallerReference == null && ParameterWasBound(nameof(this.CallerReference))) { WriteWarning("You are passing $null as a value for parameter CallerReference 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.HealthCheckConfig_IPAddress = this.HealthCheckConfig_IPAddress; context.HealthCheckConfig_Port = this.HealthCheckConfig_Port; context.HealthCheckConfig_Type = this.HealthCheckConfig_Type; #if MODULAR if (this.HealthCheckConfig_Type == null && ParameterWasBound(nameof(this.HealthCheckConfig_Type))) { WriteWarning("You are passing $null as a value for parameter HealthCheckConfig_Type 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.HealthCheckConfig_ResourcePath = this.HealthCheckConfig_ResourcePath; context.HealthCheckConfig_FullyQualifiedDomainName = this.HealthCheckConfig_FullyQualifiedDomainName; context.HealthCheckConfig_SearchString = this.HealthCheckConfig_SearchString; context.HealthCheckConfig_RequestInterval = this.HealthCheckConfig_RequestInterval; context.HealthCheckConfig_FailureThreshold = this.HealthCheckConfig_FailureThreshold; context.HealthCheckConfig_MeasureLatency = this.HealthCheckConfig_MeasureLatency; context.HealthCheckConfig_Inverted = this.HealthCheckConfig_Inverted; context.HealthCheckConfig_Disabled = this.HealthCheckConfig_Disabled; context.HealthCheckConfig_HealthThreshold = this.HealthCheckConfig_HealthThreshold; if (this.HealthCheckConfig_ChildHealthCheck != null) { context.HealthCheckConfig_ChildHealthCheck = new List(this.HealthCheckConfig_ChildHealthCheck); } context.HealthCheckConfig_EnableSNI = this.HealthCheckConfig_EnableSNI; if (this.HealthCheckConfig_Region != null) { context.HealthCheckConfig_Region = new List(this.HealthCheckConfig_Region); } context.AlarmIdentifier_Region = this.AlarmIdentifier_Region; context.AlarmIdentifier_Name = this.AlarmIdentifier_Name; context.HealthCheckConfig_InsufficientDataHealthStatus = this.HealthCheckConfig_InsufficientDataHealthStatus; context.HealthCheckConfig_RoutingControlArn = this.HealthCheckConfig_RoutingControlArn; // 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.Route53.Model.CreateHealthCheckRequest(); if (cmdletContext.CallerReference != null) { request.CallerReference = cmdletContext.CallerReference; } // populate HealthCheckConfig var requestHealthCheckConfigIsNull = true; request.HealthCheckConfig = new Amazon.Route53.Model.HealthCheckConfig(); System.String requestHealthCheckConfig_healthCheckConfig_IPAddress = null; if (cmdletContext.HealthCheckConfig_IPAddress != null) { requestHealthCheckConfig_healthCheckConfig_IPAddress = cmdletContext.HealthCheckConfig_IPAddress; } if (requestHealthCheckConfig_healthCheckConfig_IPAddress != null) { request.HealthCheckConfig.IPAddress = requestHealthCheckConfig_healthCheckConfig_IPAddress; requestHealthCheckConfigIsNull = false; } System.Int32? requestHealthCheckConfig_healthCheckConfig_Port = null; if (cmdletContext.HealthCheckConfig_Port != null) { requestHealthCheckConfig_healthCheckConfig_Port = cmdletContext.HealthCheckConfig_Port.Value; } if (requestHealthCheckConfig_healthCheckConfig_Port != null) { request.HealthCheckConfig.Port = requestHealthCheckConfig_healthCheckConfig_Port.Value; requestHealthCheckConfigIsNull = false; } Amazon.Route53.HealthCheckType requestHealthCheckConfig_healthCheckConfig_Type = null; if (cmdletContext.HealthCheckConfig_Type != null) { requestHealthCheckConfig_healthCheckConfig_Type = cmdletContext.HealthCheckConfig_Type; } if (requestHealthCheckConfig_healthCheckConfig_Type != null) { request.HealthCheckConfig.Type = requestHealthCheckConfig_healthCheckConfig_Type; requestHealthCheckConfigIsNull = false; } System.String requestHealthCheckConfig_healthCheckConfig_ResourcePath = null; if (cmdletContext.HealthCheckConfig_ResourcePath != null) { requestHealthCheckConfig_healthCheckConfig_ResourcePath = cmdletContext.HealthCheckConfig_ResourcePath; } if (requestHealthCheckConfig_healthCheckConfig_ResourcePath != null) { request.HealthCheckConfig.ResourcePath = requestHealthCheckConfig_healthCheckConfig_ResourcePath; requestHealthCheckConfigIsNull = false; } System.String requestHealthCheckConfig_healthCheckConfig_FullyQualifiedDomainName = null; if (cmdletContext.HealthCheckConfig_FullyQualifiedDomainName != null) { requestHealthCheckConfig_healthCheckConfig_FullyQualifiedDomainName = cmdletContext.HealthCheckConfig_FullyQualifiedDomainName; } if (requestHealthCheckConfig_healthCheckConfig_FullyQualifiedDomainName != null) { request.HealthCheckConfig.FullyQualifiedDomainName = requestHealthCheckConfig_healthCheckConfig_FullyQualifiedDomainName; requestHealthCheckConfigIsNull = false; } System.String requestHealthCheckConfig_healthCheckConfig_SearchString = null; if (cmdletContext.HealthCheckConfig_SearchString != null) { requestHealthCheckConfig_healthCheckConfig_SearchString = cmdletContext.HealthCheckConfig_SearchString; } if (requestHealthCheckConfig_healthCheckConfig_SearchString != null) { request.HealthCheckConfig.SearchString = requestHealthCheckConfig_healthCheckConfig_SearchString; requestHealthCheckConfigIsNull = false; } System.Int32? requestHealthCheckConfig_healthCheckConfig_RequestInterval = null; if (cmdletContext.HealthCheckConfig_RequestInterval != null) { requestHealthCheckConfig_healthCheckConfig_RequestInterval = cmdletContext.HealthCheckConfig_RequestInterval.Value; } if (requestHealthCheckConfig_healthCheckConfig_RequestInterval != null) { request.HealthCheckConfig.RequestInterval = requestHealthCheckConfig_healthCheckConfig_RequestInterval.Value; requestHealthCheckConfigIsNull = false; } System.Int32? requestHealthCheckConfig_healthCheckConfig_FailureThreshold = null; if (cmdletContext.HealthCheckConfig_FailureThreshold != null) { requestHealthCheckConfig_healthCheckConfig_FailureThreshold = cmdletContext.HealthCheckConfig_FailureThreshold.Value; } if (requestHealthCheckConfig_healthCheckConfig_FailureThreshold != null) { request.HealthCheckConfig.FailureThreshold = requestHealthCheckConfig_healthCheckConfig_FailureThreshold.Value; requestHealthCheckConfigIsNull = false; } System.Boolean? requestHealthCheckConfig_healthCheckConfig_MeasureLatency = null; if (cmdletContext.HealthCheckConfig_MeasureLatency != null) { requestHealthCheckConfig_healthCheckConfig_MeasureLatency = cmdletContext.HealthCheckConfig_MeasureLatency.Value; } if (requestHealthCheckConfig_healthCheckConfig_MeasureLatency != null) { request.HealthCheckConfig.MeasureLatency = requestHealthCheckConfig_healthCheckConfig_MeasureLatency.Value; requestHealthCheckConfigIsNull = false; } System.Boolean? requestHealthCheckConfig_healthCheckConfig_Inverted = null; if (cmdletContext.HealthCheckConfig_Inverted != null) { requestHealthCheckConfig_healthCheckConfig_Inverted = cmdletContext.HealthCheckConfig_Inverted.Value; } if (requestHealthCheckConfig_healthCheckConfig_Inverted != null) { request.HealthCheckConfig.Inverted = requestHealthCheckConfig_healthCheckConfig_Inverted.Value; requestHealthCheckConfigIsNull = false; } System.Boolean? requestHealthCheckConfig_healthCheckConfig_Disabled = null; if (cmdletContext.HealthCheckConfig_Disabled != null) { requestHealthCheckConfig_healthCheckConfig_Disabled = cmdletContext.HealthCheckConfig_Disabled.Value; } if (requestHealthCheckConfig_healthCheckConfig_Disabled != null) { request.HealthCheckConfig.Disabled = requestHealthCheckConfig_healthCheckConfig_Disabled.Value; requestHealthCheckConfigIsNull = false; } System.Int32? requestHealthCheckConfig_healthCheckConfig_HealthThreshold = null; if (cmdletContext.HealthCheckConfig_HealthThreshold != null) { requestHealthCheckConfig_healthCheckConfig_HealthThreshold = cmdletContext.HealthCheckConfig_HealthThreshold.Value; } if (requestHealthCheckConfig_healthCheckConfig_HealthThreshold != null) { request.HealthCheckConfig.HealthThreshold = requestHealthCheckConfig_healthCheckConfig_HealthThreshold.Value; requestHealthCheckConfigIsNull = false; } List requestHealthCheckConfig_healthCheckConfig_ChildHealthCheck = null; if (cmdletContext.HealthCheckConfig_ChildHealthCheck != null) { requestHealthCheckConfig_healthCheckConfig_ChildHealthCheck = cmdletContext.HealthCheckConfig_ChildHealthCheck; } if (requestHealthCheckConfig_healthCheckConfig_ChildHealthCheck != null) { request.HealthCheckConfig.ChildHealthChecks = requestHealthCheckConfig_healthCheckConfig_ChildHealthCheck; requestHealthCheckConfigIsNull = false; } System.Boolean? requestHealthCheckConfig_healthCheckConfig_EnableSNI = null; if (cmdletContext.HealthCheckConfig_EnableSNI != null) { requestHealthCheckConfig_healthCheckConfig_EnableSNI = cmdletContext.HealthCheckConfig_EnableSNI.Value; } if (requestHealthCheckConfig_healthCheckConfig_EnableSNI != null) { request.HealthCheckConfig.EnableSNI = requestHealthCheckConfig_healthCheckConfig_EnableSNI.Value; requestHealthCheckConfigIsNull = false; } List requestHealthCheckConfig_healthCheckConfig_Region = null; if (cmdletContext.HealthCheckConfig_Region != null) { requestHealthCheckConfig_healthCheckConfig_Region = cmdletContext.HealthCheckConfig_Region; } if (requestHealthCheckConfig_healthCheckConfig_Region != null) { request.HealthCheckConfig.Regions = requestHealthCheckConfig_healthCheckConfig_Region; requestHealthCheckConfigIsNull = false; } Amazon.Route53.InsufficientDataHealthStatus requestHealthCheckConfig_healthCheckConfig_InsufficientDataHealthStatus = null; if (cmdletContext.HealthCheckConfig_InsufficientDataHealthStatus != null) { requestHealthCheckConfig_healthCheckConfig_InsufficientDataHealthStatus = cmdletContext.HealthCheckConfig_InsufficientDataHealthStatus; } if (requestHealthCheckConfig_healthCheckConfig_InsufficientDataHealthStatus != null) { request.HealthCheckConfig.InsufficientDataHealthStatus = requestHealthCheckConfig_healthCheckConfig_InsufficientDataHealthStatus; requestHealthCheckConfigIsNull = false; } System.String requestHealthCheckConfig_healthCheckConfig_RoutingControlArn = null; if (cmdletContext.HealthCheckConfig_RoutingControlArn != null) { requestHealthCheckConfig_healthCheckConfig_RoutingControlArn = cmdletContext.HealthCheckConfig_RoutingControlArn; } if (requestHealthCheckConfig_healthCheckConfig_RoutingControlArn != null) { request.HealthCheckConfig.RoutingControlArn = requestHealthCheckConfig_healthCheckConfig_RoutingControlArn; requestHealthCheckConfigIsNull = false; } Amazon.Route53.Model.AlarmIdentifier requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier = null; // populate AlarmIdentifier var requestHealthCheckConfig_healthCheckConfig_AlarmIdentifierIsNull = true; requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier = new Amazon.Route53.Model.AlarmIdentifier(); Amazon.Route53.CloudWatchRegion requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier_alarmIdentifier_Region = null; if (cmdletContext.AlarmIdentifier_Region != null) { requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier_alarmIdentifier_Region = cmdletContext.AlarmIdentifier_Region; } if (requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier_alarmIdentifier_Region != null) { requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier.Region = requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier_alarmIdentifier_Region; requestHealthCheckConfig_healthCheckConfig_AlarmIdentifierIsNull = false; } System.String requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier_alarmIdentifier_Name = null; if (cmdletContext.AlarmIdentifier_Name != null) { requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier_alarmIdentifier_Name = cmdletContext.AlarmIdentifier_Name; } if (requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier_alarmIdentifier_Name != null) { requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier.Name = requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier_alarmIdentifier_Name; requestHealthCheckConfig_healthCheckConfig_AlarmIdentifierIsNull = false; } // determine if requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier should be set to null if (requestHealthCheckConfig_healthCheckConfig_AlarmIdentifierIsNull) { requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier = null; } if (requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier != null) { request.HealthCheckConfig.AlarmIdentifier = requestHealthCheckConfig_healthCheckConfig_AlarmIdentifier; requestHealthCheckConfigIsNull = false; } // determine if request.HealthCheckConfig should be set to null if (requestHealthCheckConfigIsNull) { request.HealthCheckConfig = 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.Route53.Model.CreateHealthCheckResponse CallAWSServiceOperation(IAmazonRoute53 client, Amazon.Route53.Model.CreateHealthCheckRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Route 53", "CreateHealthCheck"); try { #if DESKTOP return client.CreateHealthCheck(request); #elif CORECLR return client.CreateHealthCheckAsync(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 CallerReference { get; set; } public System.String HealthCheckConfig_IPAddress { get; set; } public System.Int32? HealthCheckConfig_Port { get; set; } public Amazon.Route53.HealthCheckType HealthCheckConfig_Type { get; set; } public System.String HealthCheckConfig_ResourcePath { get; set; } public System.String HealthCheckConfig_FullyQualifiedDomainName { get; set; } public System.String HealthCheckConfig_SearchString { get; set; } public System.Int32? HealthCheckConfig_RequestInterval { get; set; } public System.Int32? HealthCheckConfig_FailureThreshold { get; set; } public System.Boolean? HealthCheckConfig_MeasureLatency { get; set; } public System.Boolean? HealthCheckConfig_Inverted { get; set; } public System.Boolean? HealthCheckConfig_Disabled { get; set; } public System.Int32? HealthCheckConfig_HealthThreshold { get; set; } public List HealthCheckConfig_ChildHealthCheck { get; set; } public System.Boolean? HealthCheckConfig_EnableSNI { get; set; } public List HealthCheckConfig_Region { get; set; } public Amazon.Route53.CloudWatchRegion AlarmIdentifier_Region { get; set; } public System.String AlarmIdentifier_Name { get; set; } public Amazon.Route53.InsufficientDataHealthStatus HealthCheckConfig_InsufficientDataHealthStatus { get; set; } public System.String HealthCheckConfig_RoutingControlArn { get; set; } public System.Func Select { get; set; } = (response, cmdlet) => response; } } }