public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.DeviceFarm.Model.GetTestRequest(); if (cmdletContext.Arn != null) { request.Arn = cmdletContext.Arn; } 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); }
/// <summary> /// Initiates the asynchronous execution of the GetTest operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetTest operation on AmazonDeviceFarmClient.</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 EndGetTest /// operation.</returns> public IAsyncResult BeginGetTest(GetTestRequest request, AsyncCallback callback, object state) { var marshaller = new GetTestRequestMarshaller(); var unmarshaller = GetTestResponseUnmarshaller.Instance; return BeginInvoke<GetTestRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Gets information about a test. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetTest service method.</param> /// /// <returns>The response from the GetTest service method, as returned by DeviceFarm.</returns> /// <exception cref="Amazon.DeviceFarm.Model.ArgumentException"> /// An invalid argument was specified. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.LimitExceededException"> /// A limit was exceeded. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.NotFoundException"> /// The specified entity was not found. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.ServiceAccountException"> /// There was a problem with the service account. /// </exception> public GetTestResponse GetTest(GetTestRequest request) { var marshaller = new GetTestRequestMarshaller(); var unmarshaller = GetTestResponseUnmarshaller.Instance; return Invoke<GetTestRequest,GetTestResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Gets information about a test. /// </summary> /// <param name="arn">The test's ARN.</param> /// /// <returns>The response from the GetTest service method, as returned by DeviceFarm.</returns> /// <exception cref="Amazon.DeviceFarm.Model.ArgumentException"> /// An invalid argument was specified. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.LimitExceededException"> /// A limit was exceeded. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.NotFoundException"> /// The specified entity was not found. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.ServiceAccountException"> /// There was a problem with the service account. /// </exception> public GetTestResponse GetTest(string arn) { var request = new GetTestRequest(); request.Arn = arn; return GetTest(request); }
private Amazon.DeviceFarm.Model.GetTestResponse CallAWSServiceOperation(IAmazonDeviceFarm client, Amazon.DeviceFarm.Model.GetTestRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Device Farm", "GetTest"); try { #if DESKTOP return(client.GetTest(request)); #elif CORECLR return(client.GetTestAsync(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 GetTest operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetTest 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<GetTestResponse> GetTestAsync(GetTestRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new GetTestRequestMarshaller(); var unmarshaller = GetTestResponseUnmarshaller.Instance; return InvokeAsync<GetTestRequest,GetTestResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Gets information about a test. /// </summary> /// <param name="arn">The test's ARN.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the GetTest service method, as returned by DeviceFarm.</returns> /// <exception cref="Amazon.DeviceFarm.Model.ArgumentException"> /// An invalid argument was specified. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.LimitExceededException"> /// A limit was exceeded. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.NotFoundException"> /// The specified entity was not found. /// </exception> /// <exception cref="Amazon.DeviceFarm.Model.ServiceAccountException"> /// There was a problem with the service account. /// </exception> public Task<GetTestResponse> GetTestAsync(string arn, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var request = new GetTestRequest(); request.Arn = arn; return GetTestAsync(request, cancellationToken); }