/// <summary> /// Initiates the asynchronous execution of the DeleteCustomerGateway operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteCustomerGateway 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<DeleteCustomerGatewayResponse> DeleteCustomerGatewayAsync(DeleteCustomerGatewayRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DeleteCustomerGatewayRequestMarshaller(); var unmarshaller = DeleteCustomerGatewayResponseUnmarshaller.Instance; return InvokeAsync<DeleteCustomerGatewayRequest,DeleteCustomerGatewayResponse>(request, marshaller, unmarshaller, cancellationToken); }
public void DeleteCustomerGatewayMarshallTest() { var operation = service_model.FindOperation("DeleteCustomerGateway"); var request = InstantiateClassGenerator.Execute<DeleteCustomerGatewayRequest>(); var marshaller = new DeleteCustomerGatewayRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var validator = new AWSQueryValidator(internalRequest.Parameters, request, service_model, operation); validator.Validate(); }
/// <summary> /// Deletes the specified customer gateway. You must delete the VPN connection before /// you can delete the customer gateway. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteCustomerGateway service method.</param> /// /// <returns>The response from the DeleteCustomerGateway service method, as returned by EC2.</returns> public DeleteCustomerGatewayResponse DeleteCustomerGateway(DeleteCustomerGatewayRequest request) { var marshaller = new DeleteCustomerGatewayRequestMarshaller(); var unmarshaller = DeleteCustomerGatewayResponseUnmarshaller.Instance; return Invoke<DeleteCustomerGatewayRequest,DeleteCustomerGatewayResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the DeleteCustomerGateway operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteCustomerGateway operation on AmazonEC2Client.</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 EndDeleteCustomerGateway /// operation.</returns> public IAsyncResult BeginDeleteCustomerGateway(DeleteCustomerGatewayRequest request, AsyncCallback callback, object state) { var marshaller = new DeleteCustomerGatewayRequestMarshaller(); var unmarshaller = DeleteCustomerGatewayResponseUnmarshaller.Instance; return BeginInvoke<DeleteCustomerGatewayRequest>(request, marshaller, unmarshaller, callback, state); }
IAsyncResult invokeDeleteCustomerGateway(DeleteCustomerGatewayRequest deleteCustomerGatewayRequest, AsyncCallback callback, object state, bool synchronized) { IRequest irequest = new DeleteCustomerGatewayRequestMarshaller().Marshall(deleteCustomerGatewayRequest); var unmarshaller = DeleteCustomerGatewayResponseUnmarshaller.GetInstance(); AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller); Invoke(result); return result; }
/// <summary> /// <para>Deletes the specified customer gateway. You must delete the VPN connection before you can delete the customer gateway.</para> /// </summary> /// /// <param name="deleteCustomerGatewayRequest">Container for the necessary parameters to execute the DeleteCustomerGateway service method on /// AmazonEC2.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> public Task<DeleteCustomerGatewayResponse> DeleteCustomerGatewayAsync(DeleteCustomerGatewayRequest deleteCustomerGatewayRequest, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DeleteCustomerGatewayRequestMarshaller(); var unmarshaller = DeleteCustomerGatewayResponseUnmarshaller.GetInstance(); return Invoke<IRequest, DeleteCustomerGatewayRequest, DeleteCustomerGatewayResponse>(deleteCustomerGatewayRequest, marshaller, unmarshaller, signer, cancellationToken); }
/// <summary> /// Initiates the asynchronous execution of the DeleteCustomerGateway operation. /// <seealso cref="Amazon.EC2.IAmazonEC2.DeleteCustomerGateway"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteCustomerGateway 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 async Task<DeleteCustomerGatewayResponse> DeleteCustomerGatewayAsync(DeleteCustomerGatewayRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DeleteCustomerGatewayRequestMarshaller(); var unmarshaller = DeleteCustomerGatewayResponseUnmarshaller.GetInstance(); var response = await Invoke<IRequest, DeleteCustomerGatewayRequest, DeleteCustomerGatewayResponse>(request, marshaller, unmarshaller, signer, cancellationToken) .ConfigureAwait(continueOnCapturedContext: false); return response; }