private Amazon.EC2.Model.CreateIpamPoolResponse CallAWSServiceOperation(IAmazonEC2 client, Amazon.EC2.Model.CreateIpamPoolRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Elastic Compute Cloud (EC2)", "CreateIpamPool");
     try
     {
         #if DESKTOP
         return(client.CreateIpamPool(request));
         #elif CORECLR
         return(client.CreateIpamPoolAsync(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;
     }
 }
        public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.EC2.Model.CreateIpamPoolRequest();

            if (cmdletContext.AddressFamily != null)
            {
                request.AddressFamily = cmdletContext.AddressFamily;
            }
            if (cmdletContext.AllocationDefaultNetmaskLength != null)
            {
                request.AllocationDefaultNetmaskLength = cmdletContext.AllocationDefaultNetmaskLength.Value;
            }
            if (cmdletContext.AllocationMaxNetmaskLength != null)
            {
                request.AllocationMaxNetmaskLength = cmdletContext.AllocationMaxNetmaskLength.Value;
            }
            if (cmdletContext.AllocationMinNetmaskLength != null)
            {
                request.AllocationMinNetmaskLength = cmdletContext.AllocationMinNetmaskLength.Value;
            }
            if (cmdletContext.AllocationResourceTag != null)
            {
                request.AllocationResourceTags = cmdletContext.AllocationResourceTag;
            }
            if (cmdletContext.AutoImport != null)
            {
                request.AutoImport = cmdletContext.AutoImport.Value;
            }
            if (cmdletContext.AwsService != null)
            {
                request.AwsService = cmdletContext.AwsService;
            }
            if (cmdletContext.ClientToken != null)
            {
                request.ClientToken = cmdletContext.ClientToken;
            }
            if (cmdletContext.Description != null)
            {
                request.Description = cmdletContext.Description;
            }
            if (cmdletContext.IpamScopeId != null)
            {
                request.IpamScopeId = cmdletContext.IpamScopeId;
            }
            if (cmdletContext.Locale != null)
            {
                request.Locale = cmdletContext.Locale;
            }
            if (cmdletContext.PubliclyAdvertisable != null)
            {
                request.PubliclyAdvertisable = cmdletContext.PubliclyAdvertisable.Value;
            }
            if (cmdletContext.SourceIpamPoolId != null)
            {
                request.SourceIpamPoolId = cmdletContext.SourceIpamPoolId;
            }
            if (cmdletContext.TagSpecification != null)
            {
                request.TagSpecifications = cmdletContext.TagSpecification;
            }

            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);
        }