/// <summary> /// Initiates the asynchronous execution of the DescribeKeyPairs operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DescribeKeyPairs 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<DescribeKeyPairsResponse> DescribeKeyPairsAsync(DescribeKeyPairsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DescribeKeyPairsRequestMarshaller(); var unmarshaller = DescribeKeyPairsResponseUnmarshaller.Instance; return InvokeAsync<DescribeKeyPairsRequest,DescribeKeyPairsResponse>(request, marshaller, unmarshaller, cancellationToken); }
public void DescribeKeyPairsMarshallTest() { var operation = service_model.FindOperation("DescribeKeyPairs"); var request = InstantiateClassGenerator.Execute<DescribeKeyPairsRequest>(); var marshaller = new DescribeKeyPairsRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var validator = new AWSQueryValidator(internalRequest.Parameters, request, service_model, operation); validator.Validate(); var payloadResponse = new XmlSampleGenerator(service_model, operation).Execute(); UnmarshallerContext context = new EC2UnmarshallerContext(Utils.CreateStreamFromString(payloadResponse), false, new WebResponseData()); var response = DescribeKeyPairsResponseUnmarshaller.Instance.Unmarshall(context) as DescribeKeyPairsResponse; InstantiateClassGenerator.ValidateObjectFullyInstantiated(response); }
/// <summary> /// Describes one or more of your key pairs. /// /// /// <para> /// For more information about key pairs, see <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Key /// Pairs</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeKeyPairs service method.</param> /// /// <returns>The response from the DescribeKeyPairs service method, as returned by EC2.</returns> public DescribeKeyPairsResponse DescribeKeyPairs(DescribeKeyPairsRequest request) { var marshaller = new DescribeKeyPairsRequestMarshaller(); var unmarshaller = DescribeKeyPairsResponseUnmarshaller.Instance; return Invoke<DescribeKeyPairsRequest,DescribeKeyPairsResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the DescribeKeyPairs operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DescribeKeyPairs 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 EndDescribeKeyPairs /// operation.</returns> public IAsyncResult BeginDescribeKeyPairs(DescribeKeyPairsRequest request, AsyncCallback callback, object state) { var marshaller = new DescribeKeyPairsRequestMarshaller(); var unmarshaller = DescribeKeyPairsResponseUnmarshaller.Instance; return BeginInvoke<DescribeKeyPairsRequest>(request, marshaller, unmarshaller, callback, state); }
IAsyncResult invokeDescribeKeyPairs(DescribeKeyPairsRequest describeKeyPairsRequest, AsyncCallback callback, object state, bool synchronized) { IRequest irequest = new DescribeKeyPairsRequestMarshaller().Marshall(describeKeyPairsRequest); var unmarshaller = DescribeKeyPairsResponseUnmarshaller.GetInstance(); AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller); Invoke(result); return result; }
/// <summary> /// <para>Describes one or more of your key pairs.</para> <para>For more information about key pairs, see <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Key Pairs</a> in the <i>Amazon Elastic Compute Cloud User /// Guide</i> .</para> /// </summary> /// /// <param name="describeKeyPairsRequest">Container for the necessary parameters to execute the DescribeKeyPairs service method on /// AmazonEC2.</param> /// /// <returns>The response from the DescribeKeyPairs service method, as returned by AmazonEC2.</returns> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> public Task<DescribeKeyPairsResponse> DescribeKeyPairsAsync(DescribeKeyPairsRequest describeKeyPairsRequest, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DescribeKeyPairsRequestMarshaller(); var unmarshaller = DescribeKeyPairsResponseUnmarshaller.GetInstance(); return Invoke<IRequest, DescribeKeyPairsRequest, DescribeKeyPairsResponse>(describeKeyPairsRequest, marshaller, unmarshaller, signer, cancellationToken); }
/// <summary> /// Initiates the asynchronous execution of the DescribeKeyPairs operation. /// <seealso cref="Amazon.EC2.IAmazonEC2.DescribeKeyPairs"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DescribeKeyPairs 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<DescribeKeyPairsResponse> DescribeKeyPairsAsync(DescribeKeyPairsRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DescribeKeyPairsRequestMarshaller(); var unmarshaller = DescribeKeyPairsResponseUnmarshaller.GetInstance(); var response = await Invoke<IRequest, DescribeKeyPairsRequest, DescribeKeyPairsResponse>(request, marshaller, unmarshaller, signer, cancellationToken) .ConfigureAwait(continueOnCapturedContext: false); return response; }