public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.EC2.Model.AttachNetworkInterfaceRequest(); if (cmdletContext.DeviceIndex != null) { request.DeviceIndex = cmdletContext.DeviceIndex.Value; } if (cmdletContext.InstanceId != null) { request.InstanceId = cmdletContext.InstanceId; } if (cmdletContext.NetworkCardIndex != null) { request.NetworkCardIndex = cmdletContext.NetworkCardIndex.Value; } if (cmdletContext.NetworkInterfaceId != null) { request.NetworkInterfaceId = cmdletContext.NetworkInterfaceId; } 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); }
private Amazon.EC2.Model.AttachNetworkInterfaceResponse CallAWSServiceOperation(IAmazonEC2 client, Amazon.EC2.Model.AttachNetworkInterfaceRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Elastic Compute Cloud (EC2)", "AttachNetworkInterface"); try { #if DESKTOP return(client.AttachNetworkInterface(request)); #elif CORECLR return(client.AttachNetworkInterfaceAsync(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 AttachNetworkInterface operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the AttachNetworkInterface 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<AttachNetworkInterfaceResponse> AttachNetworkInterfaceAsync(AttachNetworkInterfaceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new AttachNetworkInterfaceRequestMarshaller(); var unmarshaller = AttachNetworkInterfaceResponseUnmarshaller.Instance; return InvokeAsync<AttachNetworkInterfaceRequest,AttachNetworkInterfaceResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Attaches a network interface to an instance. /// </summary> /// <param name="request">Container for the necessary parameters to execute the AttachNetworkInterface service method.</param> /// /// <returns>The response from the AttachNetworkInterface service method, as returned by EC2.</returns> public AttachNetworkInterfaceResponse AttachNetworkInterface(AttachNetworkInterfaceRequest request) { var marshaller = new AttachNetworkInterfaceRequestMarshaller(); var unmarshaller = AttachNetworkInterfaceResponseUnmarshaller.Instance; return Invoke<AttachNetworkInterfaceRequest,AttachNetworkInterfaceResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the AttachNetworkInterface operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the AttachNetworkInterface 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 EndAttachNetworkInterface /// operation.</returns> public IAsyncResult BeginAttachNetworkInterface(AttachNetworkInterfaceRequest request, AsyncCallback callback, object state) { var marshaller = new AttachNetworkInterfaceRequestMarshaller(); var unmarshaller = AttachNetworkInterfaceResponseUnmarshaller.Instance; return BeginInvoke<AttachNetworkInterfaceRequest>(request, marshaller, unmarshaller, callback, state); }
IAsyncResult invokeAttachNetworkInterface(AttachNetworkInterfaceRequest attachNetworkInterfaceRequest, AsyncCallback callback, object state, bool synchronized) { IRequest irequest = new AttachNetworkInterfaceRequestMarshaller().Marshall(attachNetworkInterfaceRequest); var unmarshaller = AttachNetworkInterfaceResponseUnmarshaller.GetInstance(); AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller); Invoke(result); return result; }
/// <summary> /// Initiates the asynchronous execution of the AttachNetworkInterface operation. /// <seealso cref="Amazon.EC2.IAmazonEC2.AttachNetworkInterface"/> /// </summary> /// /// <param name="attachNetworkInterfaceRequest">Container for the necessary parameters to execute the AttachNetworkInterface operation on /// AmazonEC2.</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 /// EndAttachNetworkInterface operation.</returns> public IAsyncResult BeginAttachNetworkInterface(AttachNetworkInterfaceRequest attachNetworkInterfaceRequest, AsyncCallback callback, object state) { return invokeAttachNetworkInterface(attachNetworkInterfaceRequest, callback, state, false); }
/// <summary> /// <para>Attaches a network interface to an instance.</para> /// </summary> /// /// <param name="attachNetworkInterfaceRequest">Container for the necessary parameters to execute the AttachNetworkInterface service method on /// AmazonEC2.</param> /// /// <returns>The response from the AttachNetworkInterface service method, as returned by AmazonEC2.</returns> /// public AttachNetworkInterfaceResponse AttachNetworkInterface(AttachNetworkInterfaceRequest attachNetworkInterfaceRequest) { IAsyncResult asyncResult = invokeAttachNetworkInterface(attachNetworkInterfaceRequest, null, null, true); return EndAttachNetworkInterface(asyncResult); }
/// <summary> /// <para>Attaches a network interface to an instance.</para> /// </summary> /// /// <param name="attachNetworkInterfaceRequest">Container for the necessary parameters to execute the AttachNetworkInterface service method on /// AmazonEC2.</param> /// /// <returns>The response from the AttachNetworkInterface 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<AttachNetworkInterfaceResponse> AttachNetworkInterfaceAsync(AttachNetworkInterfaceRequest attachNetworkInterfaceRequest, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new AttachNetworkInterfaceRequestMarshaller(); var unmarshaller = AttachNetworkInterfaceResponseUnmarshaller.GetInstance(); return Invoke<IRequest, AttachNetworkInterfaceRequest, AttachNetworkInterfaceResponse>(attachNetworkInterfaceRequest, marshaller, unmarshaller, signer, cancellationToken); }
internal AttachNetworkInterfaceResponse AttachNetworkInterface(AttachNetworkInterfaceRequest request) { var task = AttachNetworkInterfaceAsync(request); try { return task.Result; } catch(AggregateException e) { ExceptionDispatchInfo.Capture(e.InnerException).Throw(); return null; } }
/// <summary> /// Initiates the asynchronous execution of the AttachNetworkInterface operation. /// <seealso cref="Amazon.EC2.IAmazonEC2.AttachNetworkInterface"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the AttachNetworkInterface 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<AttachNetworkInterfaceResponse> AttachNetworkInterfaceAsync(AttachNetworkInterfaceRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new AttachNetworkInterfaceRequestMarshaller(); var unmarshaller = AttachNetworkInterfaceResponseUnmarshaller.GetInstance(); var response = await Invoke<IRequest, AttachNetworkInterfaceRequest, AttachNetworkInterfaceResponse>(request, marshaller, unmarshaller, signer, cancellationToken) .ConfigureAwait(continueOnCapturedContext: false); return response; }
/// <summary> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the AttachNetworkInterface service method on /// AmazonEC2.</param> /// /// <returns>The response from the AttachNetworkInterface service method, as returned by AmazonEC2.</returns> public AttachNetworkInterfaceResponse AttachNetworkInterface(AttachNetworkInterfaceRequest request) { var task = AttachNetworkInterfaceAsync(request); try { return task.Result; } catch(AggregateException e) { throw e.InnerException; } }