Container for the parameters to the ImportApiKeys operation. Import API keys from an external source, such as a CSV-formatted file.
Inheritance: AmazonAPIGatewayRequest
        public object Execute(ExecutorContext context)
        {
            System.IO.MemoryStream _BodyStream = null;

            try
            {
                var cmdletContext = context as CmdletContext;
                // create request
                var request = new Amazon.APIGateway.Model.ImportApiKeysRequest();

                if (cmdletContext.Body != null)
                {
                    _BodyStream  = new System.IO.MemoryStream(cmdletContext.Body);
                    request.Body = _BodyStream;
                }
                if (cmdletContext.FailOnWarning != null)
                {
                    request.FailOnWarnings = cmdletContext.FailOnWarning.Value;
                }
                if (cmdletContext.Format != null)
                {
                    request.Format = cmdletContext.Format;
                }

                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);
            }
            finally
            {
                if (_BodyStream != null)
                {
                    _BodyStream.Dispose();
                }
            }
        }
 private Amazon.APIGateway.Model.ImportApiKeysResponse CallAWSServiceOperation(IAmazonAPIGateway client, Amazon.APIGateway.Model.ImportApiKeysRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon API Gateway", "ImportApiKeys");
     try
     {
         #if DESKTOP
         return(client.ImportApiKeys(request));
         #elif CORECLR
         return(client.ImportApiKeysAsync(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;
     }
 }
        internal ImportApiKeysResponse ImportApiKeys(ImportApiKeysRequest request)
        {
            var marshaller = new ImportApiKeysRequestMarshaller();
            var unmarshaller = ImportApiKeysResponseUnmarshaller.Instance;

            return Invoke<ImportApiKeysRequest,ImportApiKeysResponse>(request, marshaller, unmarshaller);
        }
        /// <summary>
        /// Initiates the asynchronous execution of the ImportApiKeys operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the ImportApiKeys operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
        public Task<ImportApiKeysResponse> ImportApiKeysAsync(ImportApiKeysRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new ImportApiKeysRequestMarshaller();
            var unmarshaller = ImportApiKeysResponseUnmarshaller.Instance;

            return InvokeAsync<ImportApiKeysRequest,ImportApiKeysResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
        /// <summary>
        /// Initiates the asynchronous execution of the ImportApiKeys operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the ImportApiKeys operation on AmazonAPIGatewayClient.</param>
        /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
        /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
        ///          procedure using the AsyncState property.</param>
        /// 
        /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndImportApiKeys
        ///         operation.</returns>
        public IAsyncResult BeginImportApiKeys(ImportApiKeysRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new ImportApiKeysRequestMarshaller();
            var unmarshaller = ImportApiKeysResponseUnmarshaller.Instance;

            return BeginInvoke<ImportApiKeysRequest>(request, marshaller, unmarshaller,
                callback, state);
        }