/// <summary> /// Initiates the asynchronous execution of the CreateRestApi operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateRestApi 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<CreateRestApiResponse> CreateRestApiAsync(CreateRestApiRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new CreateRestApiRequestMarshaller(); var unmarshaller = CreateRestApiResponseUnmarshaller.Instance; return InvokeAsync<CreateRestApiRequest,CreateRestApiResponse>(request, marshaller, unmarshaller, cancellationToken); }
internal CreateRestApiResponse CreateRestApi(CreateRestApiRequest request) { var marshaller = new CreateRestApiRequestMarshaller(); var unmarshaller = CreateRestApiResponseUnmarshaller.Instance; return Invoke<CreateRestApiRequest,CreateRestApiResponse>(request, marshaller, unmarshaller); }
private Amazon.APIGateway.Model.CreateRestApiResponse CallAWSServiceOperation(IAmazonAPIGateway client, Amazon.APIGateway.Model.CreateRestApiRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon API Gateway", "CreateRestApi"); try { #if DESKTOP return(client.CreateRestApi(request)); #elif CORECLR return(client.CreateRestApiAsync(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; } }
/// <summary> /// Initiates the asynchronous execution of the CreateRestApi operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateRestApi 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 EndCreateRestApi /// operation.</returns> public IAsyncResult BeginCreateRestApi(CreateRestApiRequest request, AsyncCallback callback, object state) { var marshaller = new CreateRestApiRequestMarshaller(); var unmarshaller = CreateRestApiResponseUnmarshaller.Instance; return BeginInvoke<CreateRestApiRequest>(request, marshaller, unmarshaller, callback, state); }
public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.APIGateway.Model.CreateRestApiRequest(); if (cmdletContext.ApiKeySource != null) { request.ApiKeySource = cmdletContext.ApiKeySource; } if (cmdletContext.BinaryMediaType != null) { request.BinaryMediaTypes = cmdletContext.BinaryMediaType; } if (cmdletContext.CloneFrom != null) { request.CloneFrom = cmdletContext.CloneFrom; } if (cmdletContext.Description != null) { request.Description = cmdletContext.Description; } // populate EndpointConfiguration var requestEndpointConfigurationIsNull = true; request.EndpointConfiguration = new Amazon.APIGateway.Model.EndpointConfiguration(); List <System.String> requestEndpointConfiguration_endpointConfiguration_Type = null; if (cmdletContext.EndpointConfiguration_Type != null) { requestEndpointConfiguration_endpointConfiguration_Type = cmdletContext.EndpointConfiguration_Type; } if (requestEndpointConfiguration_endpointConfiguration_Type != null) { request.EndpointConfiguration.Types = requestEndpointConfiguration_endpointConfiguration_Type; requestEndpointConfigurationIsNull = false; } List <System.String> requestEndpointConfiguration_endpointConfiguration_VpcEndpointId = null; if (cmdletContext.EndpointConfiguration_VpcEndpointId != null) { requestEndpointConfiguration_endpointConfiguration_VpcEndpointId = cmdletContext.EndpointConfiguration_VpcEndpointId; } if (requestEndpointConfiguration_endpointConfiguration_VpcEndpointId != null) { request.EndpointConfiguration.VpcEndpointIds = requestEndpointConfiguration_endpointConfiguration_VpcEndpointId; requestEndpointConfigurationIsNull = false; } // determine if request.EndpointConfiguration should be set to null if (requestEndpointConfigurationIsNull) { request.EndpointConfiguration = null; } if (cmdletContext.MinimumCompressionSize != null) { request.MinimumCompressionSize = cmdletContext.MinimumCompressionSize.Value; } if (cmdletContext.Name != null) { request.Name = cmdletContext.Name; } if (cmdletContext.Policy != null) { request.Policy = cmdletContext.Policy; } if (cmdletContext.Tag != null) { request.Tags = cmdletContext.Tag; } if (cmdletContext.Version != null) { request.Version = cmdletContext.Version; } 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); }